Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for lost (8.95 sec)

  1. src/runtime/debuglog_test.go

    		fmt.Fprintf(&want, "[] %d %s\n", i, longString)
    	}
    	log := runtime.DumpDebugLog()
    
    	// Check for "lost" message.
    	lost := regexp.MustCompile(`^>> begin log \d+; lost first \d+KB <<\n`)
    	if !lost.MatchString(log) {
    		t.Fatalf("want matching %s, got %q", lost, log)
    	}
    	idx := lost.FindStringIndex(log)
    	// Strip lost message.
    	log = dlogCanonicalize(log[idx[1]:])
    
    	// Check log.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/bcache/cache_test.go

    			for k, v := range m {
    				if cv := c.Get(k); cv != v {
    					t.Errorf("c.Get(%v) = %v, want %v", str(k), str(cv), str(v))
    					atomic.AddInt32(&lost, +1)
    				}
    			}
    		}()
    	}
    	wg.Wait()
    	if lost != 0 {
    		t.Errorf("lost %d entries", lost)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue59367.go

    package main
    
    func main() {
    	var b [8]byte
    	one := uint8(1)
    	f16(&one, b[:2])
    	if b[1] != 1 {
    		println("2-byte value lost")
    	}
    	f32(&one, b[:4])
    	if b[3] != 1 {
    		println("4-byte value lost")
    	}
    	f64(&one, b[:8])
    	if b[7] != 1 {
    		println("8-byte value lost")
    	}
    }
    
    //go:noinline
    func f16(p *uint8, b []byte) {
    	_ = b[1]            // bounds check
    	x := *p             // load a byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 21:11:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. test/fixedbugs/issue57823.go

    	one := unsafe.SliceData(s)
    
    	done := make(chan struct{})
    	runtime.SetFinalizer(one, func(*byte) { close(done) })
    
    	h := g(one)
    
    	if wait(done) {
    		panic("GC'd early")
    	}
    
    	if *h != 1 {
    		panic("lost one")
    	}
    
    	if !wait(done) {
    		panic("never GC'd")
    	}
    }
    
    var strDone = make(chan struct{})
    
    //go:noinline
    func str(x, y string) {
    	s := x + y // put in temporary on stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 01:27:21 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/net/util.go

    	if errors.As(err, &errno) {
    		return errno == syscall.ECONNRESET
    	}
    	return false
    }
    
    // Returns if the given err is "http2: client connection lost" error.
    func IsHTTP2ConnectionLost(err error) bool {
    	return err != nil && strings.Contains(err.Error(), "http2: client connection lost")
    }
    
    // Returns if the given err is "connection refused" error
    func IsConnectionRefused(err error) bool {
    	var errno syscall.Errno
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/alerts.md

        for: 5m
        labels:
          severity: critical
        annotations:
          summary: "Instance {{ $labels.server }} has lost quorum on pool {{ $labels.pool }} on set {{ $labels.set }}"
          description: "MinIO instance {{ $labels.server }} of job {{ $labels.job }} has lost quorum on pool {{ $labels.pool }} on set {{ $labels.set }} for more than 5 minutes."
    ```
    
    ## Verify the configuration and alerts
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 28 20:53:59 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_activity_listener.h

    // Broadcast `jit_compilation_activity` to all the registered listeners.
    Status BroadcastOptimizationRemark(XlaOptimizationRemark optimization_remark);
    
    // LINT.IfChange
    // Called after TensorFlow realizes possible lost performance. The parameters in
    // this should match all of the values in the XlaOptimizationRemark proto.
    Status BroadcastOptimizationRemark(
        XlaOptimizationRemark::Warning optimization_warning,
        string debug_information);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 07 11:04:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  8. releasenotes/notes/36813.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 36723
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 21 01:51:01 UTC 2022
    - 183 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

         * will not be used and a network request will be made.
         *
         * @param maxAge a non-negative duration. This is stored and transmitted with [TimeUnit.SECONDS]
         *     precision; finer precision will be lost.
         */
        fun maxAge(maxAge: Duration) =
          apply {
            val maxAgeSeconds = maxAge.inWholeSeconds
            require(maxAgeSeconds >= 0) { "maxAge < 0: $maxAgeSeconds" }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/go/doc/testdata/f.go

    // The package f is a go/doc test for functions and factory methods.
    package f
    
    // ----------------------------------------------------------------------------
    // Factory functions for non-exported types must not get lost.
    
    type private struct{}
    
    // Exported must always be visible. Was issue 2824.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 486 bytes
    - Viewed (0)
Back to top