Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 229 for crashes (0.14 sec)

  1. src/runtime/debug/garbage.go

    // the value the runtime attempts to maintain as the limit:
    //
    //	runtime.MemStats.Sys - runtime.MemStats.HeapReleased
    //
    // or in terms of the runtime/metrics package:
    //
    //	/memory/classes/total:bytes - /memory/classes/heap/released:bytes
    //
    // A zero limit or a limit that's lower than the amount of memory
    // used by the Go runtime may cause the garbage collector to run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    		// Slow path: Unwind using default unwinder. Used when frame pointer
    		// unwinding is unavailable or disabled (tracefpunwindoff), or might
    		// produce incomplete results or crashes (hasCgoOnStack). Note that no
    		// cgo callback related crashes have been observed yet. The main
    		// motivation is to take advantage of a potentially registered cgo
    		// symbolizer.
    		pcBuf[0] = logicalStackSentinel
    		if getg() == gp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

        }
    
        /**
         * Returns the ClassLoader that contains the Java platform classes only. This is different to {@link ClassLoader#getSystemClassLoader()}, which includes the application classes in addition to the
         * platform classes.
         */
        public static ClassLoader getPlatformClassLoader() {
            return ClassLoader.getSystemClassLoader().getParent();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/concepts.md

    ### Bigger Errors - Crashes
    
    Nevertheless, there might be cases where we write some code that **crashes the entire application** making Uvicorn and Python crash. 💥
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. CHANGELOG.md

        lookup for the local hostname, but we really just wanted the `Host` header.
     *  Fix: Don't crash with a `InaccessibleObjectException` when detecting the platform trust manager
        on Java 17+.
     *  Fix: Don't crash if a cookie's value is a lone double quote character.
     *  Fix: Don't crash when canceling an event source created by `EventSources.processResponse()`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. src/internal/trace/testtrace/validation.go

    		v.ms[m] = s
    		return s
    	}
    	return s
    }
    
    func checkStack(e *errAccumulator, stk trace.Stack) {
    	// Check for non-empty values, but we also check for crashes due to incorrect validation.
    	i := 0
    	stk.Frames(func(f trace.StackFrame) bool {
    		if i == 0 {
    			// Allow for one fully zero stack.
    			//
    			// TODO(mknyszek): Investigate why that happens.
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/runtime/runtime_test.go

    // the operating system and the runtime can process these faults
    // correctly. That is, we're indirectly testing that without SetPanicOnFault
    // these would manage to turn into ordinary crashes.
    // Note that these are truncated on 32-bit systems, so the bottom 32 bits
    // of the larger addresses must themselves be invalid addresses.
    // We might get unlucky and the OS might have mapped one of these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/signature.go

    					// context.
    					tpar.bound = check.subst(tpar.obj.pos, recvTPar.bound, smap, nil, check.context())
    				}
    			} else if len(tparams) < len(recvTParams) {
    				// Reporting an error here is a stop-gap measure to avoid crashes in the
    				// compiler when a type parameter/argument cannot be inferred later. It
    				// may lead to follow-on errors (see issues go.dev/issue/51339, go.dev/issue/51343).
    				// TODO(gri) find a better solution
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages_test.go

    func TestFuzz(t *testing.T) {
    	rand := rand.New(rand.NewSource(0))
    	for _, m := range tests {
    		for j := 0; j < 1000; j++ {
    			len := rand.Intn(1000)
    			bytes := randomBytes(len, rand)
    			// This just looks for crashes due to bounds errors etc.
    			m.unmarshal(bytes)
    		}
    	}
    }
    
    func randomBytes(n int, rand *rand.Rand) []byte {
    	r := make([]byte, n)
    	if _, err := rand.Read(r); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. pkg/test/kube/dump.go

    						c.Name(), pod.Namespace, pod.Name, container.Name, err)
    				}
    			}
    
    			if crashed, terminateState := containerCrashed(pod, container.Name); crashed {
    				scopes.Framework.Errorf("FAIL: cluster/pod/container: %s/%s/%s/%s crashed with status: %+v. Logs: %v",
    					c.Name(), pod.Namespace, pod.Name, container.Name, terminateState, prow.ArtifactsURL(fname))
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top