Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Consistently (1 sec)

  1. src/net/http/server.go

    	// But for now any three digits.
    	//
    	// We used to send "HTTP/1.1 000 0" on the wire in responses but there's
    	// no equivalent bogus thing we can realistically send in HTTP/2,
    	// so we'll consistently panic instead and help people find their bugs
    	// early. (We can't return an error from WriteHeader even if we wanted to.)
    	if code < 100 || code > 999 {
    		panic(fmt.Sprintf("invalid WriteHeader code %v", code))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	ctxt.UseAllFiles = true
    
    	// Synthesize fake "directory" that only shows the named files,
    	// to make it look like this is a standard package or
    	// command directory. So that local imports resolve
    	// consistently, the files must all be in the same directory.
    	var dirent []fs.FileInfo
    	var dir string
    	for _, file := range gofiles {
    		fi, err := fsys.Stat(file)
    		if err != nil {
    			base.Fatalf("%s", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    	// should have its own vector clock increased independently. Golang race detector uses pure happens-before
    	// detection, so would catch a race condition consistently, despite only spawning 2 goroutines
    	for i := 0; i < 2; i++ {
    		go func() {
    			kl.convertToAPIContainerStatuses(pod, criStatus, []v1.ContainerStatus{}, []v1.Container{}, false, false)
    		}()
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    // The need for this was made obvious by changing the
    // (deterministic) scheduling order in Go 1.5 and breaking
    // many poorly-written tests.
    // With the randomness here, as long as the tests pass
    // consistently with -race, they shouldn't have latent scheduling
    // assumptions.
    const randomizeScheduler = raceenabled
    
    // runqput tries to put g on the local runnable queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top