Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 964 for crashes (0.34 sec)

  1. docs/changelogs/changelog_4x.md

     *  Fix: Don't crash in `HttpUrl.topPrivateDomain()` when the hostname is malformed.
    
     *  Fix: Don't attempt Brotli decompression if the response body is empty.
    
    
    ## Version 4.7.2
    
    _2020-05-20_
    
     *  Fix: Don't crash inspecting whether the host platform is JVM or Android. With 4.7.0 and 4.7.1 we
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #endif  // GTEST_HAS_PTHREAD
    
    // Returns the number of threads running in the process, or 0 to indicate that
    // we cannot detect it.
    GTEST_API_ size_t GetThreadCount();
    
    // Passing non-POD classes through ellipsis (...) crashes the ARM
    // compiler and generates a warning in Sun Studio.  The Nokia Symbian
    // and the IBM XL C/C++ compiler try to instantiate a copy constructor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    					if c.crashMinimizing != nil {
    						// This crash is not minimized, and another crash is being minimized.
    						// Ignore this one and wait for the other one to finish.
    						if shouldPrintDebugInfo() {
    							c.debugLogf("found unminimized crasher, skipping in favor of minimizable crasher")
    						}
    						break
    					}
    					// Found a crasher but haven't yet attempted to minimize it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        // be deleted when those files are closed.
        if (!civilizedFileSystem) {
          if (entry.lockingSourceCount > 0) {
            // Mark this entry as 'DIRTY' so that if the process crashes this entry won't be used.
            journalWriter?.let {
              it.writeUtf8(DIRTY)
              it.writeByte(' '.code)
              it.writeUtf8(entry.key)
              it.writeByte('\n'.code)
              it.flush()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. src/os/file.go

    // Stdin, Stdout, and Stderr are open Files pointing to the standard input,
    // standard output, and standard error file descriptors.
    //
    // Note that the Go runtime writes to standard error for panics and crashes;
    // closing Stderr may cause those messages to go elsewhere, perhaps
    // to a file opened later.
    var (
    	Stdin  = NewFile(uintptr(syscall.Stdin), "/dev/stdin")
    	Stdout = NewFile(uintptr(syscall.Stdout), "/dev/stdout")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // care to use.
    typedef FloatingPoint<float> Float;
    typedef FloatingPoint<double> Double;
    
    // In order to catch the mistake of putting tests that use different
    // test fixture classes in the same test case, we need to assign
    // unique IDs to fixture classes and compare them.  The TypeId type is
    // used to hold such IDs.  The user should treat TypeId as an opaque
    // type: the only operation allowed on TypeId values is to compare
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/runtime/mgcsweep.go

    			// the mspan structures or in the garbage collection bitmap.
    			// Using sysFault here means that the program will run out of
    			// memory fairly quickly in efence mode, but at least it won't
    			// have mysterious crashes due to confused memory reuse.
    			// It should be possible to switch back to sysFree if we also
    			// implement and then call some kind of mheap.deleteSpan.
    			if debug.efence > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. src/internal/poll/fd_windows.go

    // This package uses the SetFileCompletionNotificationModes Windows
    // API to skip calling GetQueuedCompletionStatus if an IO operation
    // completes synchronously. There is a known bug where
    // SetFileCompletionNotificationModes crashes on some systems (see
    // https://support.microsoft.com/kb/2568167 for details).
    
    var useSetFileCompletionNotificationModes bool // determines is SetFileCompletionNotificationModes is present and safe to use
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/net/lookup_test.go

    		t.Errorf("unexpected error from canceled, blocked LookupIPAddr: %v", err)
    	}
    	close(unblockLookup)
    }
    
    // Issue 24330: treat the nil *Resolver like a zero value. Verify nothing
    // crashes if nil is used.
    func TestNilResolverLookup(t *testing.T) {
    	mustHaveExternalNetwork(t)
    	var r *Resolver = nil
    	ctx := context.Background()
    
    	// Don't care about the results, just that nothing panics:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			// --- in a way that works no matter what servers crash
    			// and restart when. If this handler reacts only to
    			// changes in Spec then we have a scenario in which the
    			// rollout leaves the old Status in place. The scenario
    			// ends with this subsequence: deploy the last new server
    			// before deleting the last old server, and in between
    			// those two operations the last old server crashes and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
Back to top