Quantcast
Channel: Active questions tagged crash - Stack Overflow
Viewing all 7147 articles
Browse latest View live

Java 6 Update 25 VM crash: insufficient memory

$
0
0

For an update of this question - see below.

I experience a (reproducible, at least for me) JVM crash (not an OutOfMemoryError)(The application which crashes is eclipse 3.6.2).However, looking at the crash log makes me wonder:

## There is insufficient memory for the Java Runtime Environment to continue.# Native memory allocation (malloc) failed to allocate 65544 bytes for Chunk::new# Possible reasons:#   The system is out of physical RAM or swap space#   In 32-bit mode, the process size limit was hit# Possible solutions:#   Reduce memory load on the system#   Increase physical memory or swap space#   Check if swap backing store is full#   Use 64 bit Java on a 64 bit OS#   Decrease Java heap size (-Xmx/-Xms)#   Decrease number of Java threads#   Decrease Java thread stack sizes (-Xss)#   Set larger code cache with -XX:ReservedCodeCacheSize=# This output file may be truncated or incomplete.Current thread (0x531d6000):  JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=7812, stack(0x53af0000,0x53bf0000)]Stack: [0x53af0000,0x53bf0000],  sp=0x53bee860,  free space=1018kNative frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)V  [jvm.dll+0x1484aa]V  [jvm.dll+0x1434fc]V  [jvm.dll+0x5e6fc]V  [jvm.dll+0x5e993]V  [jvm.dll+0x27a571]V  [jvm.dll+0x258672]V  [jvm.dll+0x25ed93]V  [jvm.dll+0x260072]V  [jvm.dll+0x24e59a]V  [jvm.dll+0x47edd]V  [jvm.dll+0x48a6f]V  [jvm.dll+0x12dcd4]V  [jvm.dll+0x155a0c]C  [MSVCR71.dll+0xb381]C  [kernel32.dll+0xb729]

I am using Windows XP 32-bit SP3. I have 4GB RAM.Before starting the application I had 2 GB free according to the task manager (+ 1 GB system cache which might be freed as well.). I am definitely having enough free RAM.

From the start till the crash I logged the JVM memory statistics using visualvm and jconsole.I acquired the memory consumption statistics until the last moments before the crash.

The statistics shows the following allocated memory sizes:

  • HeapSize: 751 MB (used 248 MB)
  • Non-HeapSize(PermGen & CodeCache): 150 MB (used 95 MB)
  • Size of memory management areas (Edenspace, Old-gen etc.): 350 MB
  • Thread stack sizes: 17 MB (according to oracle and due the fact that 51 threads are running)

I am running the application (jre 6 update 25, server vm) using the parameters:

-XX:PermSize=128m-XX:MaxPermSize=192m-XX:ReservedCodeCacheSize=96m-Xms500m-Xmx1124m

Question:

  • Why does the JVM crash when there's obviously enough memory on the VM and OS?
    With the above settings I think that I cannot hit the 2GB 32-bit limit (1124MB+192MB+96MB+thread stacks < 2GB). In any other case (too much heap allocation), I would rather expect an OutOfMemoryError than a JVM crash

Who can help me to figure out what is going wrong here?

(Note: I upgraded recently to Eclipse 3.6.2 from Eclipse 3.4.2 and from Java 5 to Java 6. I suspect that there's a connection between the crashes and these changes because I haven't seen these before)

UPDATE

It seems to be a JVM bug introduced in Java 6 Update 25 and has something to do with the new jit compiler. See also this blog entry.According to the blog, the fix of this bug should be part of the next java 6 updates.In the meanwhile, I got a native stack trace during a crash. I've updated the above crash log.

The proposed workaround, using the VM argument -XX:-DoEscapeAnalysis works (at least it notably lowers the probability of a crash)


Tkinter program crashes with pywinauto

$
0
0

I am very new to python. We have the need to login to multiple servers on a daily basis using RDP. So I created a program using pywinauto to automate the process. This program works fine. Then I added a tkinter UI to display the list of servers in a dropdown. This is when the problem started.

I use pycharm. As soon as I added tkinter code to the program, pycharm started throwing a non-zero exit code. The pywinauto code still worked but the code exited with the message - Process finished with exit code -1073740771 (0xC000041D) in pycharm. I used cx_freeze to freeze this code as an executable. The exe program crashes after it finishes running. Event viewer has the below message -

Log Name: Application

Source: Application Error

Date: 7/4/2020 10:51:40 AM

Event ID: 1000

Task Category: (100)

Level: Error

Keywords: Classic

User: N/A

Description:

Faulting application name: ServerLogin.exe, version: 0.0.0.0, time stamp: 0x5e111c3a

Faulting module name: python38.dll, version: 3.8.2150.1013, time stamp: 0x5e55a7c4

Exception code: 0xc0000005

Fault offset: 0x000000000001cb2d

Faulting process id: 0x2f0c

Faulting application start time: 0x01d651c2f128f713

Faulting application path: C:\Users\username\PycharmProjects\ServerLogin\build\exe.win-amd64-3.8\ServerLogin.exe

Faulting module path: C:\Users\username\PycharmProjects\ServerLogin\build\exe.win-amd64-3.8\python38.dll

Report Id: ff281b07-5ad9-4150-8722-49cc3bf7d0a3

After a lot of research I found that using tkinter with pywinauto - 0.6.8 causes crashes. So I downgraded pywinauto to the version 0.6.5. After this I was getting zero exit code in pycharm but when this was frozen with cx_freeze I saw the same behavior as before with the same message logged in event viewer.

I have tested this on windows 10 and windows 7 64-bit machines using python 3.8.2.

I dont think my code is the problem since it runs fine on pycharm so I dont think there is a need to post the code here. But if you require it please let me know, I will post it.

I am wondering why the frozen application crashes even though pycharm gives me a clean exit. Any help on this appreciated. Please let me know if you need any more information. Thank you!

Page which posts picture is crashing

$
0
0

I am following a course on youtube to create an app and I followed it exactly. However, the app is still crashing. I updated all the implementations to the latest version. I also checked other posts and couldn't find anything. I am attaching my logcat and PostActivity.java below. Thanks!

Post Activity:

package com.example.simplysnap;import androidx.annotation.NonNull;import androidx.annotation.Nullable;import androidx.appcompat.app.AppCompatActivity;import android.app.ProgressDialog;import android.content.ContentResolver;import android.content.Intent;import android.net.Uri;import android.os.Bundle;import android.view.View;import android.webkit.MimeTypeMap;import android.widget.EditText;import android.widget.ImageView;import android.widget.TextView;import android.widget.Toast;import com.google.android.gms.tasks.Continuation;import com.google.android.gms.tasks.OnCompleteListener;import com.google.android.gms.tasks.OnFailureListener;import com.google.android.gms.tasks.Task;import com.google.firebase.auth.FirebaseAuth;import com.google.firebase.database.DatabaseReference;import com.google.firebase.database.FirebaseDatabase;import com.google.firebase.storage.FirebaseStorage;import com.google.firebase.storage.StorageReference;import com.google.firebase.storage.StorageTask;import com.theartofdev.edmodo.cropper.CropImage;import java.util.HashMap;public class PostActivity extends AppCompatActivity {    Uri imageUri;    String myUri = "";    StorageTask uploadTask;    StorageReference storageReference;    ImageView close, image_added;    TextView post;    EditText description;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_post);        close = findViewById(R.id.close);        image_added = findViewById(R.id.image_added);        post = findViewById(R.id.post);        description = findViewById(R.id.description);        storageReference = FirebaseStorage.getInstance().getReference("posts");        close.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                startActivity(new Intent(PostActivity.this, MainActivity.class));                finish();            }        });        post.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                uploadImage();            }        });        CropImage.activity()                .setAspectRatio(1, 1)                .start(PostActivity.this);    }    private String getFileExtension(Uri uri){        ContentResolver contentResolver = getContentResolver();        MimeTypeMap mime = MimeTypeMap.getSingleton();        return mime.getExtensionFromMimeType(contentResolver.getType(uri));    }    private void uploadImage(){        final ProgressDialog progressDialog = new ProgressDialog(this);        progressDialog.setMessage("Posting...");        progressDialog.show();        if (imageUri != null){            final StorageReference filereference = storageReference.child(System.currentTimeMillis()+"." + getFileExtension(imageUri));            uploadTask = filereference.putFile(imageUri);            uploadTask.continueWithTask(new Continuation() {                @Override                public Object then(@NonNull Task task) throws Exception {                    if (!task.isSuccessful()) {                        throw task.getException();                    }                    return filereference.getDownloadUrl();                }            }).addOnCompleteListener(new OnCompleteListener<Uri>() {                @Override                public void onComplete(@NonNull Task task) {                    if (task.isSuccessful()) {                        Uri downloadUri = (Uri) task.getResult();                        myUri = downloadUri.toString();                        DatabaseReference reference = FirebaseDatabase.getInstance().getReference("Posts");                        String postid = reference.push().getKey();                        HashMap<String, Object> hashMap = new HashMap<>();                        hashMap.put("postid", postid);                        hashMap.put("postimage", myUri);                        hashMap.put("description", description.getText().toString());                        hashMap.put("publisher", FirebaseAuth.getInstance().getCurrentUser().getUid());                        reference.child(postid).setValue(hashMap);                        progressDialog.dismiss();                        startActivity(new Intent(PostActivity.this, MainActivity.class));                        finish();                    } else {                        Toast.makeText(PostActivity.this, "", Toast.LENGTH_SHORT).show();                    }                }            }).addOnFailureListener(new OnFailureListener() {                @Override                public void onFailure(@NonNull Exception e) {                    Toast.makeText(PostActivity.this, ""+e.getMessage(), Toast.LENGTH_SHORT).show();                }            });        } else {            Toast.makeText(this, "No Image Selected!", Toast.LENGTH_SHORT).show();        }    }    @Override    protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {        super.onActivityResult(requestCode, resultCode, data);        if (requestCode == CropImage.CROP_IMAGE_ACTIVITY_REQUEST_CODE && resultCode == RESULT_OK) {            CropImage.ActivityResult result = CropImage.getActivityResult(data);            imageUri = result.getUri();            image_added.setImageURI(imageUri);        } else {            Toast.makeText(this, "Something went wrong!", Toast.LENGTH_SHORT).show();            startActivity(new Intent(PostActivity.this, MainActivity.class));            finish();        }    }}

LogCat w/ FATAL ERROR:

2020-07-04 10:26:58.643 22864-22864/com.example.simplysnap E/AndroidRuntime: FATAL EXCEPTION: main    Process: com.example.simplysnap, PID: 22864    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.simplysnap/com.example.simplysnap.PostActivity}: android.view.InflateException: Binary XML file line #34 in com.example.simplysnap:layout/activity_post: androidx.appcompat.widget.AppCompatImageView cannot be cast to android.view.ViewGroup        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3448)        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3595)        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2147)        at android.os.Handler.dispatchMessage(Handler.java:107)        at android.os.Looper.loop(Looper.java:237)        at android.app.ActivityThread.main(ActivityThread.java:7811)        at java.lang.reflect.Method.invoke(Native Method)        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1076)     Caused by: android.view.InflateException: Binary XML file line #34 in com.example.simplysnap:layout/activity_post: androidx.appcompat.widget.AppCompatImageView cannot be cast to android.view.ViewGroup     Caused by: java.lang.ClassCastException: androidx.appcompat.widget.AppCompatImageView cannot be cast to android.view.ViewGroup        at android.view.LayoutInflater.rInflate(LayoutInflater.java:1124)        at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:1084)        at android.view.LayoutInflater.rInflate(LayoutInflater.java:1126)        at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:1084)        at android.view.LayoutInflater.rInflate(LayoutInflater.java:1126)        at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:1084)        at android.view.LayoutInflater.rInflate(LayoutInflater.java:1126)        at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:1084)        at android.view.LayoutInflater.rInflate(LayoutInflater.java:1126)        at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:1084)        at android.view.LayoutInflater.inflate(LayoutInflater.java:682)        at android.view.LayoutInflater.inflate(LayoutInflater.java:534)        at android.view.LayoutInflater.inflate(LayoutInflater.java:481)        at androidx.appcompat.app.AppCompatDelegateImpl.setContentView(AppCompatDelegateImpl.java:555)        at androidx.appcompat.app.AppCompatActivity.setContentView(AppCompatActivity.java:161)        at com.example.simplysnap.PostActivity.onCreate(PostActivity.java:47)        at android.app.Activity.performCreate(Activity.java:7955)        at android.app.Activity.performCreate(Activity.java:7944)        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1307)        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3423)        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3595)        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2147)        at android.os.Handler.dispatchMessage(Handler.java:107)        at android.os.Looper.loop(Looper.java:237)        at android.app.ActivityThread.main(ActivityThread.java:7811)        at java.lang.reflect.Method.invoke(Native Method)        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1076)

Android app stops unfortunately on running a specific activity

$
0
0

Hey guys I am building an application in which I have added spinner.No error is shown in my activity but when I run my app,it crashes with message "Unfortunately your app has stopped".I checked my logcat and I found following errors there.Redis baseband write connect error: Connection refusedE/network_profile_handler: Error. network interface data NULLE/dalvikvm: Could not find class 'android.graphics.drawable.AnimatedVectorDrawable', referenced from method androidx.vectordrawable.graphics.drawable.AnimatedVectorDrawableCompat.startI don't know the exact reason why my app crashed.As far as my code is concerned,I don't think I made any mistake but if you want I can post my code and logcat so you guys can help me figure out the actual mistake.I'm a beginner to android studio having less experience.I am not sure whether something is wrong with my emulator or code.Can anyone help me with this issue?

package com.example.oneclickscanner;import androidx.appcompat.app.AppCompatActivity;import android.content.Intent;import android.graphics.Color;import android.os.Bundle;import android.view.View;import android.view.ViewGroup;import android.widget.Adapter;import android.widget.AdapterView;import android.widget.ArrayAdapter;import android.widget.Button;import android.widget.EditText;import android.widget.Spinner;import android.widget.TextView;import android.widget.Toast;import java.lang.reflect.Array;import java.util.ArrayList;import java.util.Arrays;import java.util.List;public abstract class ModelAndLicenseInfo extends AppCompatActivity implements AdapterView.OnItemSelectedListener {    Spinner carModelSpinner;    TextView aboutPageText;    Button nextButton, prevButton;    EditText edtLicensePlateNumber;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_model_and_license_info);        // Spinner element        carModelSpinner = findViewById(R.id.carModelSpinner);        aboutPageText = findViewById(R.id.aboutPageText);        nextButton = findViewById(R.id.nextButton);        prevButton = findViewById(R.id.prevButton);        edtLicensePlateNumber = findViewById(R.id.edtLicensePlateNumber);  carModelSpinner.setOnItemSelectedListener(this);        List<String> carModels = new ArrayList<>();        carModels.add("Tesla S60");        carModels.add("Tesla S70");        carModels.add("Tesla S75");        carModels.add("Tesla S80");        //Creating adapter for spinner        ArrayAdapter<String> spinnerAdapter = new ArrayAdapter<String>(this,android.R.layout.simple_spinner_dropdown_item,carModels);        // Drop down layout style - list view with radio button        spinnerAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);        //attaching spinnerArrayAdapter to spinner        carModelSpinner.setAdapter(spinnerAdapter);

Forge MDK 1.15.2 crashes when executing runClient.launch [duplicate]

$
0
0

i'm using Forge MDK 1.15.2, and Eclipse as IDE for modding. I currently have Java 8, and when i try to run the file runClient.launch, i just see an initialization window (just like a forge starting screen you know), but then it crashes. I tried to reinstall Java, to clear the build cache...

Here's the crash report :

---- Minecraft Crash Report ----// Who set us up the TNT?Time: 14/05/20 12:42Description: Initializing gamejava.lang.NoSuchMethodError: java.nio.ByteBuffer.rewind()Ljava/nio/ByteBuffer;    at net.minecraft.client.MainWindow.loadIcon(MainWindow.java:188) ~[forge-1.15.2-31.1.0_mapped_snapshot_20190719-1.14.3-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}    at net.minecraft.client.MainWindow.setWindowIcon(MainWindow.java:152) ~[forge-1.15.2-31.1.0_mapped_snapshot_20190719-1.14.3-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}    at net.minecraft.client.Minecraft.<init>(Minecraft.java:380) ~[forge-1.15.2-31.1.0_mapped_snapshot_20190719-1.14.3-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}    at net.minecraft.client.main.Main.main(Main.java:141) ~[forge-1.15.2-31.1.0_mapped_snapshot_20190719-1.14.3-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_251] {}    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_251] {}    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_251] {}    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_251] {}    at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:55) ~[forge-1.15.2-31.1.0_mapped_snapshot_20190719-1.14.3-recomp.jar:?] {}    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-5.0.0-milestone.4.jar:?] {}    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-5.0.0-milestone.4.jar:?] {}    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-5.0.0-milestone.4.jar:?] {}    at cpw.mods.modlauncher.Launcher.run(Launcher.java:81) [modlauncher-5.0.0-milestone.4.jar:?] {}    at cpw.mods.modlauncher.Launcher.main(Launcher.java:65) [modlauncher-5.0.0-milestone.4.jar:?] {}    at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:102) [forge-1.15.2-31.1.0_mapped_snapshot_20190719-1.14.3-recomp.jar:?] {}A detailed walkthrough of the error, its code path and all known details is as follows:----------------------------------------------------------------------------------------- Head --Thread: Render threadStacktrace:    at net.minecraft.client.MainWindow.loadIcon(MainWindow.java:188)    at net.minecraft.client.MainWindow.setWindowIcon(MainWindow.java:152)    at net.minecraft.client.Minecraft.<init>(Minecraft.java:380)-- Initialization --Details:Stacktrace:    at net.minecraft.client.main.Main.main(Main.java:141)    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)    at java.lang.reflect.Method.invoke(Method.java:498)    at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:55)    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37)    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54)    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72)    at cpw.mods.modlauncher.Launcher.run(Launcher.java:81)    at cpw.mods.modlauncher.Launcher.main(Launcher.java:65)    at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:102)-- System Details --Details:    Minecraft Version: 1.15.2    Minecraft Version ID: 1.15.2    Operating System: Windows 10 (amd64) version 10.0    Java Version: 1.8.0_251, Oracle Corporation    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation    Memory: 1013149720 bytes (966 MB) / 3235381248 bytes (3085 MB) up to 7618953216 bytes (7266 MB)    CPUs: 8    JVM Flags: 1 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump    Launched Version: MOD_DEV    Backend library: LWJGL version 3.2.2 build 10    Backend API: GeForce GTX 1060 6GB/PCIe/SSE2 GL version 4.6.0 NVIDIA 445.87, NVIDIA Corporation    GL Caps:     Using VBOs: Yes    Is Modded: Definitely; Client brand changed to 'forge'    Type: Client (map_client.txt)    CPU: <unknown>

Hope you can help me !

xamarin.forms ios app starts crashing randomly

$
0
0

after last update our app start crashing randomly on some user devices . i can't get this crash on my ipad in release version, so may be it is device specific or ios version specific.crash seems to be google ads related.

while i am trying to find a reason , may be somebody has an idea where to dig

thanks in advance. below info from appcentre.ms . it's from app main crash ,but crash happens in different places

pplication.Main (System.String[] args)SIGABRT: Objective-C exception thrown. Name: NSInvalidArgumentException Reason: Can't add self as subview Native stack trace: 0 CoreFoundation 0x000000019ad74604 409609CD-8410-38E1-BA5D-BDED609D2018 + 1222148 1 libobjc.A.dylib 0x000000019aa96bcc objc_exception_throw + 56 2 CoreFoundation 0x000000019ac6ab28 409609CD-8410-38E1-BA5D-BDED609D2018 + 133928 3 UIKitCore 0x000000019f2c6c54 3062FF32-2182-37A2-A5F9-B38F6FB6B8C3 + 15547476 4 MyApp.iOS 0x00000001035e1108 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 18464880 5 MyApp.iOS 0x000000010355ba94 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 17918460 6 MyApp.iOS 0x0000000103781720 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20170376 7 MyApp.iOS 0x00000001037654d8 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20055104 8 MyApp.iOS 0x0000000103764a20 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20052360 9 MyApp.iOS 0x0000000103760c60 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20036552 10 MyApp.iOS 0x0000000103760354 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20034236 11 MyApp.iOS 0x0000000103763d24 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20049036 12 MyApp.iOS 0x0000000103763a30 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20048280 13 MyApp.iOS 0x0000000103765938 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20056224 14 MyApp.iOS 0x00000001037654d8 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20055104 15 MyApp.iOS 0x0000000103764a20 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20052360 16 MyApp.iOS 0x0000000103760c60 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20036552 17 MyApp.iOS 0x0000000103760354 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20034236 18 MyApp.iOS 0x0000000103763d24 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20049036 19 MyApp.iOS 0x0000000103763a30 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20048280 20 MyApp.iOS 0x0000000103765938 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20056224 21 MyApp.iOS 0x00000001037654d8 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20055104 22 MyApp.iOS 0x0000000103764a20 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20052360 23 MyApp.iOS 0x000000010376f548 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20096176 24 MyApp.iOS 0x000000010376e4b0 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20091928 25 MyApp.iOS 0x000000010376e328 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20091536 26 MyApp.iOS 0x00000001050f8e8c GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 46874100 27 MyApp.iOS 0x000000010376a5cc GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20075828 28 MyApp.iOS 0x000000010378f6f4 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 20227676 29 MyApp.iOS 0x00000001028acc20 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 4619144 30 MyApp.iOS 0x00000001055382a8 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 51327504 31 MyApp.iOS 0x00000001055f3784 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 52094700 32 MyApp.iOS 0x00000001055f6fe8 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 52109136 33 MyApp.iOS 0x00000001024e523c GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 655780 34 MyApp.iOS 0x00000001024fb474 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 746460 35 UIKitCore 0x000000019f0138b0 3062FF32-2182-37A2-A5F9-B38F6FB6B8C3 + 12716208 36 UIKitCore 0x000000019efe1640 3062FF32-2182-37A2-A5F9-B38F6FB6B8C3 + 12510784 37 UIKitCore 0x000000019effe364 3062FF32-2182-37A2-A5F9-B38F6FB6B8C3 + 12628836 38 UIKitCore 0x000000019f2cdc7c 3062FF32-2182-37A2-A5F9-B38F6FB6B8C3 + 15576188 39 QuartzCore 0x00000001a18674ac BA9ECCEE-9F61-3BAA-B8A8-8EB3B7E0A24F + 1381548 40 QuartzCore 0x00000001a186d604 BA9ECCEE-9F61-3BAA-B8A8-8EB3B7E0A24F + 1406468 41 QuartzCore 0x00000001a1878148 BA9ECCEE-9F61-3BAA-B8A8-8EB3B7E0A24F + 1450312 42 QuartzCore 0x00000001a17c0e34 BA9ECCEE-9F61-3BAA-B8A8-8EB3B7E0A24F + 699956 43 QuartzCore 0x00000001a17ea7c4 BA9ECCEE-9F61-3BAA-B8A8-8EB3B7E0A24F + 870340 44 QuartzCore 0x00000001a17eb1d8 BA9ECCEE-9F61-3BAA-B8A8-8EB3B7E0A24F + 872920 45 CoreFoundation 0x000000019acf1fb8 409609CD-8410-38E1-BA5D-BDED609D2018 + 688056 46 CoreFoundation 0x000000019aceceac 409609CD-8410-38E1-BA5D-BDED609D2018 + 667308 47 CoreFoundation 0x000000019aced328 409609CD-8410-38E1-BA5D-BDED609D2018 + 668456 48 CoreFoundation 0x000000019acecc34 CFRunLoopRunSpecific + 424 49 GraphicsServices 0x00000001a4e3638c GSEventRunModal + 160 50 UIKitCore 0x000000019ee1f22c UIApplicationMain + 1932 51 MyApp.iOS 0x00000001035fc2c8 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 18575920 52 MyApp.iOS 0x00000001035380b0 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 17772568 53 MyApp.iOS 0x0000000103538034 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 17772444 54 MyApp.iOS 0x0000000102526ed4 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 925244 55 MyApp.iOS 0x00000001028acc20 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 4619144 56 MyApp.iOS 0x00000001055382a8 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 51327504 57 MyApp.iOS 0x00000001055f3784 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 52094700 58 MyApp.iOS 0x00000001055f99dc GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 52119876 59 MyApp.iOS 0x0000000105516860 GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 51189704 60 MyApp.iOS 0x00000001056d3664 xamarin_release_block_on_main_thread + 27000 61 MyApp.iOS 0x0000000102526a9c GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth + 924164 62 libdyld.dylib 0x000000019ab74800 876FB49A-BFBA-37BF-AD37-6FFC90F7F981 + 6144 

Stack tracesRuntime.ThrowNSException (System.IntPtr ns_exception)Runtime.throw_ns_exception (System.IntPtr exc)(wrapper native-to-managed) ObjCRuntime.Runtime.throw_ns_exception(intptr)(wrapper managed-to-native) ObjCRuntime.Messaging.objc_msgSend(intptr,intptr,intptr)UIView.AddSubview (UIKit.UIView view)FrameRenderer.OnElementChanged (Xamarin.Forms.Platform.iOS.ElementChangedEventArgs`1[TElement] e)VisualElementRenderer`1[TElement].SetElement (TElement element)IVisualElementRenderer.SetElement (Xamarin.Forms.VisualElement element)RendererPool.UpdateRenderers (Xamarin.Forms.Element newElement)RendererPool.UpdateNewElement (Xamarin.Forms.VisualElement newElement)VisualElementPackager.SetElement (Xamarin.Forms.VisualElement oldElement, Xamarin.Forms.VisualElement newElement)VisualElementPackager.OnRendererElementChanged (System.Object sender, Xamarin.Forms.Platform.iOS.VisualElementChangedEventArgs args)VisualElementRenderer`1[TElement].OnElementChanged (Xamarin.Forms.Platform.iOS.ElementChangedEventArgs`1[TElement] e)VisualElementRenderer`1[TElement].SetElement (TElement element)IVisualElementRenderer.SetElement (Xamarin.Forms.VisualElement element)RendererPool.UpdateRenderers (Xamarin.Forms.Element newElement)RendererPool.UpdateNewElement (Xamarin.Forms.VisualElement newElement)VisualElementPackager.SetElement (Xamarin.Forms.VisualElement oldElement, Xamarin.Forms.VisualElement newElement)VisualElementPackager.OnRendererElementChanged (System.Object sender, Xamarin.Forms.Platform.iOS.VisualElementChangedEventArgs args)VisualElementRenderer`1[TElement].OnElementChanged (Xamarin.Forms.Platform.iOS.ElementChangedEventArgs`1[TElement] e)VisualElementRenderer`1[TElement].SetElement (TElement element)IVisualElementRenderer.SetElement (Xamarin.Forms.VisualElement element)ViewCellRenderer+ViewTableCell.UpdateCell (Xamarin.Forms.ViewCell cell)ViewCellRenderer+ViewTableCell.set_ViewCell (Xamarin.Forms.ViewCell value)ViewCellRenderer.GetCell (Xamarin.Forms.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv)XFGlossViewCellRenderer.GetCell (Xamarin.Forms.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv)CellTableViewCell.GetNativeCell (UIKit.UITableView tableView, Xamarin.Forms.Cell cell, System.Boolean recycleCells, System.String templateId)ListViewRenderer+ListViewDataSource.GetCell (UIKit.UITableView tableView, Foundation.NSIndexPath indexPath)(wrapper managed-to-native) UIKit.UIApplication.UIApplicationMain(int,string[],intptr,intptr)UIApplication.Main (System.String[] args, System.IntPtr principal, System.IntPtr delegate)UIApplication.Main (System.String[] args, System.String principalClassName, System.String delegateClassName)Application.Main (System.String[] args)(wrapper managed-to-native) ObjCRuntime.Messaging.objc_msgSend(intptr,intptr,intptr)UIView.AddSubview (UIKit.UIView view)FrameRenderer.OnElementChanged (Xamarin.Forms.Platform.iOS.ElementChangedEventArgs`1[TElement] e)VisualElementRenderer`1[TElement].SetElement (TElement element)IVisualElementRenderer.SetElement (Xamarin.Forms.VisualElement element)RendererPool.UpdateRenderers (Xamarin.Forms.Element newElement)RendererPool.UpdateNewElement (Xamarin.Forms.VisualElement newElement)VisualElementPackager.SetElement (Xamarin.Forms.VisualElement oldElement, Xamarin.Forms.VisualElement newElement)VisualElementPackager.OnRendererElementChanged (System.Object sender, Xamarin.Forms.Platform.iOS.VisualElementChangedEventArgs args)VisualElementRenderer`1[TElement].OnElementChanged (Xamarin.Forms.Platform.iOS.ElementChangedEventArgs`1[TElement] e)VisualElementRenderer`1[TElement].SetElement (TElement element)IVisualElementRenderer.SetElement (Xamarin.Forms.VisualElement element)RendererPool.UpdateRenderers (Xamarin.Forms.Element newElement)RendererPool.UpdateNewElement (Xamarin.Forms.VisualElement newElement)VisualElementPackager.SetElement (Xamarin.Forms.VisualElement oldElement, Xamarin.Forms.VisualElement newElement)VisualElementPackager.OnRendererElementChanged (System.Object sender, Xamarin.Forms.Platform.iOS.VisualElementChangedEventArgs args)VisualElementRenderer`1[TElement].OnElementChanged (Xamarin.Forms.Platform.iOS.ElementChangedEventArgs`1[TElement] e)VisualElementRenderer`1[TElement].SetElement (TElement element)IVisualElementRenderer.SetElement (Xamarin.Forms.VisualElement element)ViewCellRenderer+ViewTableCell.UpdateCell (Xamarin.Forms.ViewCell cell)ViewCellRenderer+ViewTableCell.set_ViewCell (Xamarin.Forms.ViewCell value)ViewCellRenderer.GetCell (Xamarin.Forms.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv)XFGlossViewCellRenderer.GetCell (Xamarin.Forms.Cell item, UIKit.UITableViewCell reusableCell, UIKit.UITableView tv)CellTableViewCell.GetNativeCell (UIKit.UITableView tableView, Xamarin.Forms.Cell cell, System.Boolean recycleCells, System.String templateId)ListViewRenderer+ListViewDataSource.GetCell (UIKit.UITableView tableView, Foundation.NSIndexPath indexPath)(wrapper managed-to-native) UIKit.UIApplication.UIApplicationMain(int,string[],intptr,intptr)UIApplication.Main (System.String[] args, System.IntPtr principal, System.IntPtr delegate)UIApplication.Main (System.String[] args, System.String principalClassName, System.String delegateClassName)Application.Main (System.String[] args)

IIS Worker Process stopped working and was closed

$
0
0

I'm running iis 8 on windows server 2012.I have two web applications one is a simple asp.net web app and the other is a .net web api app running on owin.

When ever i refresh any resource twice once immediately after the other there is a delay in the response and i have 3 entries in the event viewer log, an error + two "Windows error reporting"entries.

I took a test javascript file that have only "no data" text in it and tried requesting it directly in the browser (no html just typing the js url in the browser) and I get the same results.so there is no code involved and no applicative error in the resource (the js file) .looked at the iis log found only the request to the js + favicon.co file both with result 200.

I'm at a lost ... I would appreciate any ideas

I attaching the errors from the event viewer plus event viewer Windows error reporting and the Report.wer.

thanks

Report.wer :

"Version=1 EventType=APPCRASH EventTime=131858072059648150 ReportType=2 Consent=1 ReportIdentifier=078054be-e02b-11e8-9404-000d3af802a7 IntegratorReportIdentifier=078054bd-e02b-11e8-9404-000d3af802a7 NsAppName=w3wp.exe Response.type=4 Sig0.Name=Application Name Sig0.Value=w3wp.exe Sig1.Name=Application Version Sig1.Value=8.0.9200.16384 Sig2.Name=Application Timestamp Sig2.Value=50108835 Sig3.Name=Fault Module Name Sig3.Value=msvcrt.dll Sig4.Name=Fault Module Version Sig[4].Value=7.0.9200.16384 Sig[5].Name=Fault Module Timestamp Sig[5].Value=5010ac20 Sig[6].Name=Exception Code Sig[6].Value=c0000005 Sig[7].Name=Exception Offset Sig[7].Value=000000000000128d DynamicSig1.Name=OS Version DynamicSig1.Value=6.2.9200.2.0.0.400.8 DynamicSig2.Name=Locale ID DynamicSig2.Value=1033 DynamicSig22.Name=Additional Information 1 DynamicSig22.Value=7d7c DynamicSig23.Name=Additional Information 2 DynamicSig[23].Value=7d7ce255a4f0efbe7c5576812b8e1ec7 DynamicSig[24].Name=Additional Information 3 DynamicSig[24].Value=9c9c DynamicSig[25].Name=Additional Information 4 DynamicSig[25].Value=9c9c6d565c320c0d4ed9397cda75a332 UI2=c:\windows\system32\inetsrv\w3wp.exe UI[5]=Check online for a solution (recommended) UI[6]=Check for a solution later (recommended) UI[7]=Close UI[8]=IIS Worker Process stopped working and was closed UI[9]=A problem caused the application to stop working correctly. Windows will notify you if a solution is available. UI[10]=&Close LoadedModule[0]=c:\windows\system32\inetsrv\w3wp.exe LoadedModule1=C:\Windows\SYSTEM32\ntdll.dll LoadedModule2=C:\Windows\system32\KERNEL32.DLL LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll LoadedModule[4]=C:\Windows\system32\ADVAPI32.dll LoadedModule[5]=C:\Windows\system32\msvcrt.dll LoadedModule[6]=C:\Windows\SYSTEM32\combase.dll LoadedModule[7]=c:\windows\system32\inetsrv\iisutil.dll LoadedModule[8]=C:\Windows\SYSTEM32\sechost.dll LoadedModule[9]=C:\Windows\system32\RPCRT4.dll LoadedModule[10]=C:\Windows\system32\WS2_32.dll LoadedModule[11]=C:\Windows\SYSTEM32\pcwum.DLL LoadedModule[12]=C:\Windows\system32\NSI.dll LoadedModule[13]=C:\Windows\SYSTEM32\CRYPTBASE.dll LoadedModule[14]=C:\Windows\SYSTEM32\bcryptPrimitives.dll LoadedModule[15]=C:\Windows\SYSTEM32\ntmarta.dll LoadedModule[16]=C:\Windows\SYSTEM32\user32.dll LoadedModule[17]=C:\Windows\system32\GDI32.dll LoadedModule[18]=c:\windows\system32\inetsrv\w3wphost.dll LoadedModule[19]=C:\Windows\system32\OLEAUT32.dll LoadedModule[20]=c:\windows\system32\inetsrv\nativerd.dll LoadedModule[21]=C:\Windows\SYSTEM32\XmlLite.dll LoadedModule[22]=C:\Windows\SYSTEM32\ktmw32.dll LoadedModule[23]=c:\windows\system32\inetsrv\IISRES.DLL LoadedModule[24]=C:\Windows\SYSTEM32\CRYPTSP.dll LoadedModule[25]=C:\Windows\system32\rsaenh.dll LoadedModule[26]=C:\Windows\SYSTEM32\clbcatq.dll LoadedModule[27]=C:\Windows\system32\mlang.dll LoadedModule[28]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\webengine4.dll LoadedModule[29]=C:\Windows\SYSTEM32\MSVCR120_CLR0400.dll LoadedModule[30]=C:\Windows\system32\USERENV.dll LoadedModule[31]=C:\Windows\system32\PSAPI.DLL LoadedModule[32]=C:\Windows\system32\profapi.dll LoadedModule[33]=C:\Windows\SYSTEM32\mscoree.dll LoadedModule[34]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll LoadedModule[35]=C:\Windows\system32\SHLWAPI.dll LoadedModule[36]=C:\Windows\SYSTEM32\VERSION.dll LoadedModule[37]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll LoadedModule[38]=C:\Windows\system32\inetsrv\iiscore.dll LoadedModule[39]=C:\Windows\SYSTEM32\faultrep.dll LoadedModule[40]=c:\windows\system32\inetsrv\W3TP.dll LoadedModule[41]=c:\windows\system32\inetsrv\w3dt.dll LoadedModule[42]=C:\Windows\SYSTEM32\HTTPAPI.dll LoadedModule[43]=C:\Windows\SYSTEM32\slc.dll LoadedModule[44]=C:\Windows\system32\napinsp.dll LoadedModule[45]=C:\Windows\system32\NLAapi.dll LoadedModule[46]=C:\Windows\System32\mswsock.dll LoadedModule[47]=C:\Windows\SYSTEM32\DNSAPI.dll LoadedModule[48]=C:\Windows\System32\winrnr.dll LoadedModule[49]=C:\Windows\System32\rasadhlp.dll LoadedModule[50]=C:\Windows\SYSTEM32\IPHLPAPI.DLL LoadedModule[51]=C:\Windows\SYSTEM32\WINNSI.DLL LoadedModule[52]=C:\Windows\System32\fwpuclnt.dll LoadedModule[53]=C:\Windows\System32\inetsrv\cachuri.dll LoadedModule[54]=C:\Windows\System32\inetsrv\cachfile.dll LoadedModule[55]=C:\Windows\System32\inetsrv\cachtokn.dll LoadedModule[56]=C:\Windows\System32\inetsrv\cachhttp.dll LoadedModule[57]=C:\Windows\System32\inetsrv\compstat.dll LoadedModule[58]=C:\Windows\System32\inetsrv\defdoc.dll LoadedModule[59]=C:\Windows\System32\inetsrv\dirlist.dll LoadedModule[60]=C:\Windows\System32\inetsrv\protsup.dll LoadedModule[61]=C:\Windows\System32\inetsrv\redirect.dll LoadedModule[62]=C:\Windows\System32\inetsrv\iis_ssi.dll LoadedModule[63]=C:\Windows\System32\inetsrv\static.dll LoadedModule[64]=C:\Windows\System32\inetsrv\authanon.dll LoadedModule[65]=C:\Windows\System32\inetsrv\urlauthz.dll LoadedModule[66]=C:\Windows\System32\inetsrv\authbas.dll LoadedModule[67]=C:\Windows\System32\inetsrv\authsspi.dll LoadedModule[68]=C:\Windows\SYSTEM32\SspiCli.dll LoadedModule[69]=C:\Windows\SYSTEM32\wkscli.dll LoadedModule[70]=C:\Windows\SYSTEM32\netutils.dll LoadedModule[71]=C:\Windows\System32\inetsrv\authmd5.dll LoadedModule[72]=C:\Windows\System32\inetsrv\authmap.dll LoadedModule[73]=C:\Windows\System32\inetsrv\iprestr.dll LoadedModule[74]=C:\Windows\System32\inetsrv\diprestr.dll LoadedModule[75]=C:\Windows\System32\inetsrv\modrqflt.dll LoadedModule[76]=C:\Windows\System32\inetsrv\logcust.dll LoadedModule[77]=C:\Windows\System32\inetsrv\custerr.dll LoadedModule[78]=C:\Windows\System32\inetsrv\loghttp.dll LoadedModule[79]=C:\Windows\System32\inetsrv\iisetw.dll LoadedModule[80]=C:\Windows\System32\inetsrv\iisfreb.dll LoadedModule[81]=C:\Windows\System32\inetsrv\iisreqs.dll LoadedModule[82]=C:\Windows\System32\inetsrv\isapi.dll LoadedModule[83]=C:\Windows\System32\inetsrv\filter.dll LoadedModule[84]=C:\Windows\System32\inetsrv\cgi.dll LoadedModule[85]=C:\Windows\System32\inetsrv\iisfcgi.dll LoadedModule[86]=C:\Windows\System32\inetsrv\validcfg.dll LoadedModule[87]=C:\Windows\SYSTEM32\shcore.dll LoadedModule[88]=C:\Windows\system32\ole32.dll LoadedModule[89]=C:\Windows\system32\inetsrv\rewrite.dll LoadedModule[90]=C:\Windows\System32\inetsrv\compdyn.dll LoadedModule[91]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_filter.dll LoadedModule[92]=C:\Windows\system32\CRYPT32.dll LoadedModule[93]=C:\Windows\system32\MSASN1.dll LoadedModule[94]=C:\Windows\SYSTEM32\DPAPI.DLL LoadedModule[95]=C:\Windows\system32\inetsrv\gzip.dll LoadedModule[96]=C:\Windows\system32\inetsrv\wbhst_pm.dll LoadedModule[97]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\webengine.dll LoadedModule[98]=C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\60c56b4f785f2f9bead35377666101fa\mscorlib.ni.dll LoadedModule[99]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System\54033b57c6e312b97e03fdfaa774de8a\System.ni.dll LoadedModule[100]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Core\3724522762ba46884f8af189cfc3fc88\System.Core.ni.dll LoadedModule[101]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web\4278a8648a7ac23e94ed371a54d7cf25\System.Web.ni.dll LoadedModule[102]=C:\Windows\SYSTEM32\sxs.dll LoadedModule[103]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web.8dc504e4#\cd998bf0feef6e9fc953d8da28f9a608\System.Web.ApplicationServices.ni.dll LoadedModule[104]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Configuration\552d85acc55c3d44f82e41c79a8794a5\System.Configuration.ni.dll LoadedModule[105]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml\77e517ff63541574fc9ec0c9d747672c\System.Xml.ni.dll LoadedModule[106]=C:\Windows\SYSTEM32\bcrypt.dll LoadedModule[107]=C:\Windows\SYSTEM32\api-ms-win-core-xstate-l2-1-0.dll LoadedModule[108]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll LoadedModule[109]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Runt19c51595#\e3f1d8ad7df73ec8256c56b7091f470d\System.Runtime.Caching.ni.dll LoadedModule[110]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.B83e9cb53#\d3325e0467897ce1f0f32b47b0216300\Microsoft.Build.Utilities.v4.0.ni.dll LoadedModule[111]=C:\Windows\system32\shell32.dll LoadedModule[112]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.JScript\5d71c3ae2491b3ef4e54a444a2279c0d\Microsoft.JScript.ni.dll LoadedModule[113]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web.28b9ef5a#\ca90f378b97efaa37da4d017c97bd98a\System.Web.Extensions.ni.dll LoadedModule[114]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Drawing\c5ef7c3cdcdb2a6de17d19bbed30b0a3\System.Drawing.ni.dll LoadedModule[115]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web.Mobile\6c4a7daf20c202926423c4e37dc88159\System.Web.Mobile.ni.dll LoadedModule[116]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web.82d5542b#\1bc4f3cbdde7cf0da20e28de3fd5fc04\System.Web.RegularExpressions.ni.dll LoadedModule[117]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web.Services\7f6bc0339c2089f81ddcbaefd6ded8d4\System.Web.Services.ni.dll LoadedModule[118]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Data\9d45d71eae9d1245741b0f2b171a738e\System.Data.ni.dll LoadedModule[119]=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll LoadedModule[120]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Net.Http\c1b254bd1b7d3acefb613ed942de5b48\System.Net.Http.ni.dll LoadedModule[121]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Security\6672f1331114307a79fea1e537f36a58\System.Security.ni.dll LoadedModule[122]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Transactions\e247ba7dcdd11024b5032c5e8e9958ea\System.Transactions.ni.dll LoadedModule[123]=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll LoadedModule[124]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Numerics\437cf967c9ead3d91405323a8e499a1f\System.Numerics.ni.dll LoadedModule[125]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Data86569bbf#\9d7ce9227e4c7b66f86a1db163eb38a0\System.Data.OracleClient.ni.dll LoadedModule[126]=C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data.OracleClient\v4.0_4.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll LoadedModule[127]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.CSharp\dc5ed15e3cd54a03c0cc77fd2a2ab87d\Microsoft.CSharp.ni.dll LoadedModule[128]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Ente96d83b35#\97344f5c3d81cab274b28df4dd6c6718\System.EnterpriseServices.ni.dll LoadedModule[129]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.IdentityModel\d01b299d1342b66df5c599bf5e8147ec\System.IdentityModel.ni.dll LoadedModule[130]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Runteb92aa12#\634ae69317e449509a4cc0aea99619fd\System.Runtime.Serialization.ni.dll LoadedModule[131]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.ServiceModel\a31d8078434c0053a8653aadfa459907\System.ServiceModel.ni.dll LoadedModule[132]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Serv14b62006#\2c5dd64d92dc2af5eefc6d8df55f13b1\System.ServiceModel.Activation.ni.dll LoadedModule[133]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Servf73e6522#\af68656a47b83bf104220eb49452b36f\System.ServiceModel.Web.ni.dll LoadedModule[134]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Activities\b4ed839a23f4b02b7f09a771ce33ba9c\System.Activities.ni.dll LoadedModule[135]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Serv14259fd9#\eab902a608f4267dee1a2234ba4eda38\System.ServiceModel.Activities.ni.dll LoadedModule[136]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Workd8194f73#\e5a9066add9eae70450ee3c7331301d2\System.WorkflowServices.ni.dll LoadedModule[137]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Data7706cdc8#\e513a683aaa92b5f37acc648232292b7\System.Data.DataSetExtensions.ni.dll LoadedModule[138]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml.Linq\8380738635c5d623d74298a649559660\System.Xml.Linq.ni.dll LoadedModule[139]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Comp46f2b404#\51e67d223bf1a719479131cb9aeca8b6\System.ComponentModel.DataAnnotations.ni.dll LoadedModule[140]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Web.2486c0f5#\672f03f9b3cf1fda55a50304eac476b6\System.Web.DynamicData.ni.dll LoadedModule[141]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Ente96d83b35#\97344f5c3d81cab274b28df4dd6c6718\System.EnterpriseServices.Wrapper.dll LoadedModule[142]=C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll LoadedModule[143]=C:\Windows\system32\security.dll LoadedModule[144]=C:\Windows\SYSTEM32\SECUR32.DLL LoadedModule[145]=C:\Windows\system32\schannel.DLL LoadedModule[146]=C:\Windows\SYSTEM32\ncrypt.dll LoadedModule[147]=C:\Windows\SYSTEM32\NTASN1.dll LoadedModule[148]=C:\Windows\system32\ncryptsslp.dll FriendlyEventName=Stopped working ConsentKey=APPCRASH AppName=IIS Worker Process AppPath=c:\windows\system32\inetsrv\w3wp.exe NsPartner=windows NsGroup=windows8"

Forge crashes after load

$
0
0

i don't know whats the reason for crashing and would like to know it so if sb can translate it for me, thank you. It runs on Forge 1.7.10 with many mods.

Here's my output

java.lang.IndexOutOfBoundsException    at java.nio.Buffer.checkIndex(Buffer.java:540)    at java.nio.DirectIntBufferU.get(DirectIntBufferU.java:253)    at net.minecraft.client.renderer.RenderGlobal.func_72712_a(RenderGlobal.java:350)    at net.minecraft.client.renderer.RenderGlobal.func_72732_a(RenderGlobal.java:294)    at net.minecraft.client.Minecraft.func_71353_a(Minecraft.java:2216)    at net.minecraft.client.Minecraft.func_71403_a(Minecraft.java:2146)    at net.minecraft.client.network.NetHandlerPlayClient.func_147282_a(NetHandlerPlayClient.java:240)    at net.minecraft.network.play.server.S01PacketJoinGame.func_148833_a(SourceFile:70)    at net.minecraft.network.play.server.S01PacketJoinGame.func_148833_a(SourceFile:13)    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)    at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:2061)    at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:973)    at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:898)    at net.minecraft.client.main.Main.main(SourceFile:148)    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)    at java.lang.reflect.Method.invoke(Method.java:497)    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)A detailed walkthrough of the error, its code path and all known details is as follows:----------------------------------------------------------------------------------------- Head --Stacktrace:    at java.nio.Buffer.checkIndex(Buffer.java:540)    at java.nio.DirectIntBufferU.get(DirectIntBufferU.java:253)    at net.minecraft.client.renderer.RenderGlobal.func_72712_a(RenderGlobal.java:350)    at net.minecraft.client.renderer.RenderGlobal.func_72732_a(RenderGlobal.java:294)    at net.minecraft.client.Minecraft.func_71353_a(Minecraft.java:2216)    at net.minecraft.client.Minecraft.func_71403_a(Minecraft.java:2146)    at net.minecraft.client.network.NetHandlerPlayClient.func_147282_a(NetHandlerPlayClient.java:240)    at net.minecraft.network.play.server.S01PacketJoinGame.func_148833_a(SourceFile:70)    at net.minecraft.network.play.server.S01PacketJoinGame.func_148833_a(SourceFile:13)    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:212)

Flutter Release apk crashes on using notifications, though it works on emulator

$
0
0

I am trying to build an app which sends me notification after some time, for which i am using flutter_local_notifications plugin. The problem is notifications work perfectly on virtual emulators and physical mobile emulators, but when I install a release-apk on my phone, it crashes as soon as I press the 'Remind me later button'

Would really appreciate help, I have been stuck on this thing for for a few days now

Here is my notifications plugin code (the i variable was workaround to send multiple notifications without cancelling the previous ones)

import 'package:flutter_local_notifications/flutter_local_notifications.dart';var i = -999999;class Notifications {  FlutterLocalNotificationsPlugin localNotificationsPlugin =      FlutterLocalNotificationsPlugin();  initializeNotifications() async {    var initializeAndroid = AndroidInitializationSettings('ic_launcher');    var initializeIOS = IOSInitializationSettings(      requestAlertPermission: true,      requestBadgePermission: true,      requestSoundPermission: true,    );    var initSettings = InitializationSettings(initializeAndroid, initializeIOS);    await localNotificationsPlugin.initialize(initSettings);  }  Future singleNotification(DateTime datetime, String message, String subtext,      {String sound}) async {    var androidChannel = AndroidNotificationDetails('channel-id','channel-name','channel-description',      playSound: true,      importance: Importance.Max,      priority: Priority.Max,    );    if (i == 999999) {      i = -999999;    }    var iosChannel = IOSNotificationDetails();    var platformChannel = NotificationDetails(androidChannel, iosChannel);    await localNotificationsPlugin.schedule(        i++, message, subtext, datetime, platformChannel);  }}

Here is where I am calling the notifications

onTap: () async {                                    try{Navigator.pop(                                        context, "notification button");                                    Duration resultingDuration =                                        await showDurationPicker(                                            context: context,                                            initialTime: Duration(                                                hours: 0, minutes: 10));                                    // print(resultingDuration.inHours);                                    // print(resultingDuration.inMinutes);                                    if(resultingDuration!=null){DateTime now = DateTime.now().toUtc().add(                                          Duration(                                              hours: resultingDuration.inHours,                                              minutes:                                                  resultingDuration.inMinutes),                                        );                                    await notification.singleNotification(                                      now,"Reminder","Revise your deck '${deck.deckName}'",                                    );}}catch(e){                                      print(e);                                    }                                  },

nginx-ingress-controller - CrashLoopBackOff - kubernetes on proxmox (kvm)

$
0
0

I'm running a kubernetes cluster hostet inside 4 kvm, managed by proxmox. After installing the nginx-ingress-controller with

helm install nginx-ingress stable/nginx-ingress --set controller.publishService.enabled=true -n nginx-ingress

the controller is crashing (crashloop) . The logs don't really help (or i don't know where to look exactly)

thanks Peter

herer the cluster pods:

root@sedeka78:~# kubectl get pods --all-namespaces -o wideNAMESPACE              NAME                                             READY   STATUS             RESTARTS   AGE   IP            NODE       NOMINATED NODE   READINESS GATESkube-system            coredns-66bff467f8-jv2mx                         1/1     Running            0          83m   10.244.0.9    sedeka78   <none>           <none>kube-system            coredns-66bff467f8-vwrzb                         1/1     Running            0          83m   10.244.0.6    sedeka78   <none>           <none>kube-system            etcd-sedeka78                                    1/1     Running            2          84m   10.10.10.78   sedeka78   <none>           <none>kube-system            kube-apiserver-sedeka78                          1/1     Running            2          84m   10.10.10.78   sedeka78   <none>           <none>kube-system            kube-controller-manager-sedeka78                 1/1     Running            4          84m   10.10.10.78   sedeka78   <none>           <none>kube-system            kube-flannel-ds-amd64-fxvfh                      1/1     Running            0          83m   10.10.10.78   sedeka78   <none>           <none>kube-system            kube-flannel-ds-amd64-h6btb                      1/1     Running            1          78m   10.10.10.79   sedeka79   <none>           <none>kube-system            kube-flannel-ds-amd64-m6dw2                      1/1     Running            1          78m   10.10.10.80   sedeka80   <none>           <none>kube-system            kube-flannel-ds-amd64-wgtqb                      1/1     Running            1          78m   10.10.10.81   sedeka81   <none>           <none>kube-system            kube-proxy-5dvdg                                 1/1     Running            1          78m   10.10.10.80   sedeka80   <none>           <none>kube-system            kube-proxy-89pf7                                 1/1     Running            0          83m   10.10.10.78   sedeka78   <none>           <none>kube-system            kube-proxy-hhgtf                                 1/1     Running            1          78m   10.10.10.79   sedeka79   <none>           <none>kube-system            kube-proxy-kshnn                                 1/1     Running            1          78m   10.10.10.81   sedeka81   <none>           <none>kube-system            kube-scheduler-sedeka78                          1/1     Running            5          84m   10.10.10.78   sedeka78   <none>           <none>kubernetes-dashboard   dashboard-metrics-scraper-6b4884c9d5-4trgg       1/1     Running            0          80m   10.244.0.8    sedeka78   <none>           <none>kubernetes-dashboard   kubernetes-dashboard-7bfbb48676-q6c2t            1/1     Running            0          80m   10.244.0.7    sedeka78   <none>           <none>nginx-ingress          nginx-ingress-controller-57f4b84b5-ldkk5         0/1     CrashLoopBackOff   19         45m   10.244.1.2    sedeka81   <none>           <none>nginx-ingress          nginx-ingress-default-backend-7c868597f4-8q9n7   1/1     Running            0          45m   10.244.4.2    sedeka80   <none>           <none>root@sedeka78:~#

here the logs of the controller:

root@sedeka78:~# kubectl logs nginx-ingress-controller-57f4b84b5-ldkk5 -n nginx-ingress -v10I0705 14:31:41.152337   11692 loader.go:375] Config loaded from file:  /home/kubernetes/.kube/configI0705 14:31:41.170664   11692 cached_discovery.go:114] returning cached discovery info from /root/.kube/cache/discovery/10.10.10.78_6443/servergroups.jsonI0705 14:31:41.174651   11692 cached_discovery.go:71] returning cached discovery info from

...

I0705 14:31:41.189379   11692 cached_discovery.go:71] returning cached discovery info from /root/.kube/cache/discovery/10.10.10.78_6443/batch/v1beta1/serverresources.jsonI0705 14:31:41.189481   11692 cached_discovery.go:71] returning cached discovery info from /root/.kube/cache/discovery/10.10.10.78_6443/batch/v1/serverresources.jsonI0705 14:31:41.189560   11692 cached_discovery.go:71] returning cached discovery info from /root/.kube/cache/discovery/10.10.10.78_6443/certificates.k8s.io/v1beta1/serverresources.jsonI0705 14:31:41.192043   11692 round_trippers.go:423] curl -k -v -XGET  -H "Accept: application/json, */*" -H "User-Agent: kubectl/v1.18.5 (linux/amd64) kubernetes/e6503f8" 'https://10.10.10.78:6443/api/v1/namespaces/nginx-ingress/pods/nginx-ingress-controller-57f4b84b5-ldkk5'I0705 14:31:41.222314   11692 round_trippers.go:443] GET https://10.10.10.78:6443/api/v1/namespaces/nginx-ingress/pods/nginx-ingress-controller-57f4b84b5-ldkk5 200 OK in 30 millisecondsI0705 14:31:41.222588   11692 round_trippers.go:449] Response Headers:I0705 14:31:41.222611   11692 round_trippers.go:452]     Cache-Control: no-cache, privateI0705 14:31:41.222771   11692 round_trippers.go:452]     Content-Type: application/jsonI0705 14:31:41.222812   11692 round_trippers.go:452]     Date: Sun, 05 Jul 2020 12:31:41 GMTI0705 14:31:41.223225   11692 request.go:1068] Response Body: {"kind":"Pod","apiVersion":"v1","metadata":{"name":"nginx-ingress-controller-57f4b84b5-ldkk5","generateName":"nginx-ingress-controller-57f4b84b5-","namespace":"nginx-ingress","selfLink":"/api/v1/namespaces/nginx-ingress/pods/nginx-ingress-controller-57f4b84b5-ldkk5","uid":"778a9c24-9785-462e-9e1e-137a1aa08c87","resourceVersion":"10435","creationTimestamp":"2020-07-05T11:54:55Z","labels":{"app":"nginx-ingress","app.kubernetes.io/component":"controller","component":"controller","pod-template-hash":"57f4b84b5","release":"nginx-ingress"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"ReplicaSet","name":"nginx-ingress-controller-57f4b84b5","uid":"b9c42590-7efb-46d2-b37c-cec3a994bf4e","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2020-07-05T11:54:55Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:app":{},"f:app.kubernetes.io/component":{},"f:component":{},"f:pod-template-hash":{},"f:release":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"b9c42590-7efb-46d2-b37c-cec3a994bf4e\"}":{".":{},"f:apiVersion":{},"f:blockOwnerDeletion":{},"f:controller":{},"f:kind":{},"f:name":{},"f:uid":{}}}},"f:spec":{"f:containers":{"k:{\"name\":\"nginx-ingress-controller\"}":{".":{},"f:args":{},"f:env":{".":{},"k:{\"name\":\"POD_NAME\"}":{".":{},"f:name":{},"f:valueFrom":{".":{},"f:fieldRef":{".":{},"f:apiVersion":{},"f:fieldPath":{}}}},"k:{\"name\":\"POD_NAMESPACE\"}":{".":{},"f:name":{},"f:valueFrom":{".":{},"f:fieldRef":{".":{},"f:apiVersion":{},"f:fieldPath":{}}}}},"f:image":{},"f:imagePullPolicy":{},"f:livenessProbe":{".":{},"f:failureThreshold":{},"f:httpGet":{".":{},"f:path":{},"f:port":{},"f:scheme":{}},"f:initialDelaySeconds":{},"f:periodSeconds":{},"f:successThreshold":{},"f:timeoutSeconds":{}},"f:name":{},"f:ports":{".":{},"k:{\"containerPort\":80,\"protocol\":\"TCP\"}":{".":{},"f:containerPort":{},"f:name":{},"f:protocol":{}},"k:{\"containerPort\":443,\"protocol\":\"TCP\"}":{".":{},"f:containerPort":{},"f:name":{},"f:protocol":{}}},"f:readinessProbe":{".":{},"f:failureThreshold":{},"f:httpGet":{".":{},"f:path":{},"f:port":{},"f:scheme":{}},"f:initialDelaySeconds":{},"f:periodSeconds":{},"f:successThreshold":{},"f:timeoutSeconds":{}},"f:resources":{},"f:securityContext":{".":{},"f:allowPrivilegeEscalation":{},"f:capabilities":{".":{},"f:add":{},"f:drop":{}},"f:runAsUser":{}},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:serviceAccount":{},"f:serviceAccountName":{},"f:terminationGracePeriodSeconds":{}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2020-07-05T12:27:53Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"10.244.1.2\"}":{".":{},"f:ip":{}}},"f:startTime":{}}}}]},"spec":{"volumes":[{"name":"nginx-ingress-token-rmhf8","secret":{"secretName":"nginx-ingress-token-rmhf8","defaultMode":420}}],"containers":[{"name":"nginx-ingress-controller","image":"quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.32.0","args":["/nginx-ingress-controller","--default-backend-service=nginx-ingress/nginx-ingress-default-backend","--publish-service=nginx-ingress/nginx-ingress-controller","--election-id=ingress-controller-leader","--ingress-class=nginx","--configmap=nginx-ingress/nginx-ingress-controller"],"ports":[{"name":"http","containerPort":80,"protocol":"TCP"},{"name":"https","containerPort":443,"protocol":"TCP"}],"env":[{"name":"POD_NAME","valueFrom":{"fieldRef":{"apiVersion":"v1","fieldPath":"metadata.name"}}},{"name":"POD_NAMESPACE","valueFrom":{"fieldRef":{"apiVersion":"v1","fieldPath":"metadata.namespace"}}}],"resources":{},"volumeMounts":[{"name":"nginx-ingress-token-rmhf8","readOnly":true,"mountPath":"/var/run/secrets/kubernetes.io/serviceaccount"}],"livenessProbe":{"httpGet":{"path":"/healthz","port":10254,"scheme":"HTTP"},"initialDelaySeconds":10,"timeoutSeconds":1,"periodSeconds":10,"successThreshold":1,"failureThreshold":3},"readinessProbe":{"httpGet":{"path":"/healthz","port":10254,"scheme":"HTTP"},"initialDelaySeconds":10,"timeoutSeconds":1,"periodSeconds":10,"successThreshold":1,"failureThreshold":3},"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent","securityContext":{"capabilities":{"add":["NET_BIND_SERVICE"],"drop":["ALL"]},"runAsUser":101,"allowPrivilegeEscalation":true}}],"restartPolicy":"Always","terminationGracePeriodSeconds":60,"dnsPolicy":"ClusterFirst","serviceAccountName":"nginx-ingress","serviceAccount":"nginx-ingress","nodeName":"sedeka81","securityContext":{},"schedulerName":"default-scheduler","tolerations":[{"key":"node.kubernetes.io/not-ready","operator":"Exists","effect":"NoExecute","tolerationSeconds":300},{"key":"node.kubernetes.io/unreachable","operator":"Exists","effect":"NoExecute","tolerationSeconds":300}],"priority":0,"enableServiceLinks":true},"status":{"phase":"Running","conditions":[{"type":"Initialized","status":"True","lastProbeTime":null,"lastTransitionTime":"2020-07-05T11:54:56Z"},{"type":"Ready","status":"False","lastProbeTime":null,"lastTransitionTime":"2020-07-05T11:54:56Z","reason":"ContainersNotReady","message":"containers with unready status: [nginx-ingress-controller]"},{"type":"ContainersReady","status":"False","lastProbeTime":null,"lastTransitionTime":"2020-07-05T11:54:56Z","reason":"ContainersNotReady","message":"containers with unready status: [nginx-ingress-controller]"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2020-07-05T11:54:56Z"}],"hostIP":"10.10.10.81","podIP":"10.244.1.2","podIPs":[{"ip":"10.244.1.2"}],"startTime":"2020-07-05T11:54:56Z","containerStatuses":[{"name":"nginx-ingress-controller","state":{"waiting":{"reason":"CrashLoopBackOff","message":"back-off 5m0s restarting failed container=nginx-ingress-controller pod=nginx-ingress-controller-57f4b84b5-ldkk5_nginx-ingress(778a9c24-9785-462e-9e1e-137a1aa08c87)"}},"lastState":{"terminated":{"exitCode":143,"reason":"Error","startedAt":"2020-07-05T12:27:23Z","finishedAt":"2020-07-05T12:27:53Z","containerID":"docker://4b7d69c47884790031e665801e282dafd8ea5dfaf97d54c6659d894d88af5a7a"}},"ready":false,"restartCount":15,"image":"quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.32.0","imageID":"docker-pullable://quay.io/kubernetes-ingress-controller/nginx-ingress-controller@sha256:251e733bf41cdf726092e079d32eed51791746560fff4d59cf067508ed635287","containerID":"docker://4b7d69c47884790031e665801e282dafd8ea5dfaf97d54c6659d894d88af5a7a","started":false}],"qosClass":"BestEffort"}}I0705 14:31:41.239523   11692 round_trippers.go:423] curl -k -v -XGET  -H "Accept: application/json, */*" -H "User-Agent: kubectl/v1.18.5 (linux/amd64) kubernetes/e6503f8" 'https://10.10.10.78:6443/api/v1/namespaces/nginx-ingress/pods/nginx-ingress-controller-57f4b84b5-ldkk5/log'I0705 14:31:41.247040   11692 round_trippers.go:443] GET https://10.10.10.78:6443/api/v1/namespaces/nginx-ingress/pods/nginx-ingress-controller-57f4b84b5-ldkk5/log 200 OK in 7 millisecondsI0705 14:31:41.247125   11692 round_trippers.go:449] Response Headers:I0705 14:31:41.247146   11692 round_trippers.go:452]     Content-Type: text/plainI0705 14:31:41.247164   11692 round_trippers.go:452]     Date: Sun, 05 Jul 2020 12:31:41 GMTI0705 14:31:41.247182   11692 round_trippers.go:452]     Cache-Control: no-cache, private-------------------------------------------------------------------------------NGINX Ingress controller  Release:       0.32.0  Build:         git-446845114  Repository:    https://github.com/kubernetes/ingress-nginx  nginx version: nginx/1.17.10-------------------------------------------------------------------------------I0705 12:27:23.597622       8 flags.go:204] Watching for Ingress class: nginxW0705 12:27:23.598540       8 flags.go:249] SSL certificate chain completion is disabled (--enable-ssl-chain-completion=false)W0705 12:27:23.598663       8 client_config.go:543] Neither --kubeconfig nor --master was specified.  Using the inClusterConfig.  This might not work.I0705 12:27:23.599666       8 main.go:220] Creating API client for https://10.96.0.1:443

And here:

root@sedeka78:~# kubectl describe pod nginx-ingress-controller-57f4b84b5-ldkk5 -n nginx-ingressName:         nginx-ingress-controller-57f4b84b5-ldkk5Namespace:    nginx-ingressPriority:     0Node:         sedeka81/10.10.10.81Start Time:   Sun, 05 Jul 2020 13:54:56 +0200Labels:       app=nginx-ingress              app.kubernetes.io/component=controller              component=controller              pod-template-hash=57f4b84b5              release=nginx-ingressAnnotations:  <none>Status:       RunningIP:           10.244.1.2IPs:  IP:           10.244.1.2Controlled By:  ReplicaSet/nginx-ingress-controller-57f4b84b5Containers:  nginx-ingress-controller:    Container ID:  docker://545ed277d1a039cd36b0d18a66d1f58c8b44f3fc5e4cacdcde84cc68e763b0e8    Image:         quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.32.0    Image ID:      docker-pullable://quay.io/kubernetes-ingress-controller/nginx-ingress-controller@sha256:251e733bf41cdf726092e079d32eed51791746560fff4d59cf067508ed635287    Ports:         80/TCP, 443/TCP    Host Ports:    0/TCP, 0/TCP    Args:      /nginx-ingress-controller      --default-backend-service=nginx-ingress/nginx-ingress-default-backend      --publish-service=nginx-ingress/nginx-ingress-controller      --election-id=ingress-controller-leader      --ingress-class=nginx      --configmap=nginx-ingress/nginx-ingress-controller    State:          Waiting      Reason:       CrashLoopBackOff    Last State:     Terminated      Reason:       Error      Exit Code:    143      Started:      Sun, 05 Jul 2020 14:33:33 +0200      Finished:     Sun, 05 Jul 2020 14:34:03 +0200    Ready:          False    Restart Count:  17    Liveness:       http-get http://:10254/healthz delay=10s timeout=1s period=10s #success=1 #failure=3    Readiness:      http-get http://:10254/healthz delay=10s timeout=1s period=10s #success=1 #failure=3    Environment:      POD_NAME:       nginx-ingress-controller-57f4b84b5-ldkk5 (v1:metadata.name)      POD_NAMESPACE:  nginx-ingress (v1:metadata.namespace)    Mounts:      /var/run/secrets/kubernetes.io/serviceaccount from nginx-ingress-token-rmhf8 (ro)Conditions:  Type              Status  Initialized       True  Ready             False  ContainersReady   False  PodScheduled      TrueVolumes:  nginx-ingress-token-rmhf8:    Type:        Secret (a volume populated by a Secret)    SecretName:  nginx-ingress-token-rmhf8    Optional:    falseQoS Class:       BestEffortNode-Selectors:  <none>Tolerations:     node.kubernetes.io/not-ready:NoExecute for 300s                 node.kubernetes.io/unreachable:NoExecute for 300sEvents:  Type     Reason     Age                  From               Message  ----     ------     ----                 ----               -------  Normal   Scheduled  <unknown>            default-scheduler  Successfully assigned nginx-ingress/nginx-ingress-controller-57f4b84b5-ldkk5 to sedeka81  Normal   Pulling    41m                  kubelet, sedeka81  Pulling image "quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.32.0"  Normal   Pulled     41m                  kubelet, sedeka81  Successfully pulled image "quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.32.0"  Normal   Created    40m (x3 over 41m)    kubelet, sedeka81  Created container nginx-ingress-controller  Normal   Started    40m (x3 over 41m)    kubelet, sedeka81  Started container nginx-ingress-controller  Normal   Killing    40m (x2 over 40m)    kubelet, sedeka81  Container nginx-ingress-controller failed liveness probe, will be restarted  Normal   Pulled     40m (x2 over 40m)    kubelet, sedeka81  Container image "quay.io/kubernetes-ingress-controller/nginx-ingress-controller:0.32.0" already present on machine  Warning  Unhealthy  40m (x6 over 41m)    kubelet, sedeka81  Readiness probe failed: Get http://10.244.1.2:10254/healthz: dial tcp 10.244.1.2:10254: connect: connection refused  Warning  Unhealthy  21m (x33 over 41m)   kubelet, sedeka81  Liveness probe failed: Get http://10.244.1.2:10254/healthz: dial tcp 10.244.1.2:10254: connect: connection refused  Warning  BackOff    97s (x148 over 38m)  kubelet, sedeka81  Back-off restarting failed container

tensorflow optimized_ops::Gather crash

$
0
0

when i use TfLiteStatus Interpreter::Invoke(), which call function tflite::Gather, in some machine, it crashed. is there anyone who counters the same question? and know why.it runs well in my computer but crashed in users outside, my dump file tells me crashed in tflite::Gather, i trust Google, i am not sure if this problem caused by my low programming ability.seek for any help, Thanks!

TfLiteStatus Interpreter::Invoke() {TF_LITE_ENSURE_STATUS(primary_subgraph().Invoke());

if (!allow_buffer_handle_output_) {for (int tensor_index : outputs()) {TF_LITE_ENSURE_STATUS(primary_subgraph().EnsureTensorDataIsReadable(tensor_index));}}

return kTfLiteOk;}

Crash report in TestFlight

$
0
0

I have a tvOS app that is getting a crash in what looks like Apple code (_sendButtonsForEvent:). I sent symbols to Apple with the beta release but I am not getting any symbol information for the line after this. It looks like it never really gets to my code at all.

Any ideas? This method does not seem to have any details available on it.

crash report img

enter image description here

(Android) Native crash at /system/lib/libhoudini.so on Asus Phone

$
0
0

I received crash errors very much from user at Google Play. And all those error occur on Asus phone ( Asus zenfone 4,5,6 and fonepad 7).

I don't known what those error is and how do i can fix those errors.

Hope someone can help me.

Log:

*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***Build fingerprint: 'asus/WW_ZenFone/ASUS_T00I:4.3/JSS15Q/WW_ZenFone-V4.1.0-20140428:user/release-keys'Revision: '0'pid: 6848, tid: 6958, name: fusoftware.ohtv >>> com.bfusoftware.ohtv <<<signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr dead0000eax 00000000 ebx 00000001 ecx 65441edc edx 00000000esi 00000008 edi 0000b0b8xcs 00000073 xds 0000007b xes 0000007b xfs 00000043 xss 0000007beip 651c3325 ebp 81cb6d0c esp 81cb6ce4 flags 00210246backtrace:#00 pc 00142325 /system/lib/libhoudini.so.3.4.5.44375#01 pc 00073704 /system/lib/libhoudini.so.3.4.5.44375#02 pc 00072599 /system/lib/libhoudini.so.3.4.5.44375#03 pc 0006ecb5 /system/lib/libhoudini.so.3.4.5.44375#04 pc 0006eeef /system/lib/libhoudini.so.3.4.5.44375#05 pc 0013bbc9 /system/lib/libhoudini.so.3.4.5.44375#06 pc 00139a1e /system/lib/libhoudini.so.3.4.5.44375#07 pc 000ffe5f [stack:6958]

electron project crashing when quitting the application

$
0
0

I'm not sure whether this is a bug with electron or not, but when in the dev environment and i try to exit the app, it'll crash. errors include "message": "connect ECANCELED IP address, uncaught exception Error: Object has been destroyed at BrowserWindow.get.

Let me know if you need any more info, and whether this is fixable or an electron bug*this only affects the dev environment

Crash report in TestFlight (_sendButtonsForEvent:)

$
0
0

I have a tvOS app that is getting a crash in what looks like Apple code (_sendButtonsForEvent:). I sent symbols to Apple with the beta release but I am not getting any symbol information for the line after this. It looks like it never really gets to my code at all.

Any ideas? This method does not seem to have any details available on it.

crash report img

enter image description here


Thread 1: EXC_BAD_ACCESS (code=1, address=0x30) [closed]

$
0
0

this is how is looks when my app crashesThread 1: EXC_BAD_ACCESS (code=1, address=0x30)

I have installed Xcode 11.5 on my Mac OS 11.14.6 which is not supported to my Mac OS version but I edited the info.plist file of Xcode 11.5 and set the minimum version to 11.14.6 which made the Xcode 11.5 run for my Mac OS. but while running a multifunctional app my app crash on login screen with error "Thread 1: EXC_BAD_ACCESS (code=1, address=0x30)" but I am able to run simple apps. only when I run multifunctional app my app crashes.please help me out to fix this error.

AVC denied warning leads to crash in android app

$
0
0

I have an app which is crashing from time to time and the only reason for the crash I can thing of, has to be the following LogCat content (yep, two times the same line):

07-19 18:16:16.636 W/the.app: type=1400 audit(0.0:4418): avc: denied { read } for comm=4173796E635461736B202331 name="mem" dev="debugfs" ino=81636 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:debugfs:s0 tclass=file permissive=007-19 18:16:16.636 W/the.app: type=1400 audit(0.0:4419): avc: denied { read } for comm=4173796E635461736B202331 name="mem" dev="debugfs" ino=81636 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:debugfs:s0 tclass=file permissive=0

Followed by "Force finishing activity". The biggest "surprise" here is, that it is sometimes working totally fine, but more often not. I have no idea what I can do with those messages.

Device: Zuk Z2 Pro (rooted)

OS: Android 6.0.1 (ZUI 2.0)

Is there any reason for this to crash?

$
0
0

I am receiving crashes from Apple like this:

enter image description here

The crash report is so bad, as expected for Xcode, that I have to guess where in my code this is coming from.

The crash talks about popover. The only part of my code where I have popover is this `share" stuff, when I have these "delete" and "share" trailing swipe action on a table view that shows files from the documents folder.

 override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {    let delete = ... bla bla bla    let share = UIContextualAction(style: .normal, title: "") {[weak self] (contextualAction, view, boolValue) in      let oneFile = self?.files![indexPath.section]![indexPath.row]      let activityViewController = UIActivityViewController(        activityItems: ["Check out these files.", (oneFile?.url)! as URL],        applicationActivities: nil      )      activityViewController.popoverPresentationController?.sourceView = self?.view      self?.present(activityViewController, animated: true, completion: {[weak self] in        self?.tableView.setEditing(false, animated: true)      })    }    let swipeActions = UISwipeActionsConfiguration(actions: [delete,share])    swipeActions.performsFirstActionWithFullSwipe = true    return swipeActions}

Is there anything you guys see here that can be causing the crash?

The reports show this is crashing on the iPad but I test and it is working fine.

What is LLDB RPC Server ? When does it crash in Xcode? Why it crashes?

$
0
0

I am getting a message in my debugger:

The LLDB RPC server has crashed. The crash log is located in ~/Library/Logs/DiagnosticReports and has a prefix 'lldb-rpc-server'. Please file a bug and attach the most recent crash log.

enter image description here

Qt SimpleCrypt crashes: access violation

$
0
0

I want to write a file.At first I have to encrypt the string "Banking;k1OI<]uH|V&r" using SimpleCrypt.SimpleCrypt's code:

QString SimpleCrypt::encryptToString(const QString& plaintext){    QByteArray plaintextArray = plaintext.toUtf8();    QByteArray cypher = encryptToByteArray(plaintextArray);    QString cypherString = QString::fromLatin1(cypher.toBase64());    return cypherString;}

The crash happens at m_keyParts.isEmpty() with an access violation

QByteArray SimpleCrypt::encryptToByteArray(QByteArray plaintext){    if (m_keyParts.isEmpty()) {        qWarning() << "No key set.";        m_lastError = ErrorNoKeySet;        return QByteArray();    }    // [...]    // Rest of the code}

Does somebody know what to do?

Thanks in advance

Edit

Stacktrace:

Accessibles.exe!QVector::isEmpty() Zeile 91 C++ Accessibles.exe!SimpleCrypt::encryptToByteArray(QByteArray plaintext) Zeile 55 C++ Accessibles.exe!SimpleCrypt::encryptToString(const QString & plaintext) Zeile 118 C++ Accessibles.exe!DataStream::save() Zeile 40 C++

Calling code:

textStream << p_simpleCrypt->encryptToString(QString("%1;%2\n").arg(bundle‌​->category).arg(bund‌​le->categoryId)); 
Viewing all 7147 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>