Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,027 for relaxed (0.22 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	wantObjects := update(t, initialObjects, expected.changes)
    	wantObjects = append(wantObjects, expected.added...)
    	for _, remove := range expected.removed {
    		for i, obj := range wantObjects {
    			// This is a bit relaxed (no GVR comparison, no UID
    			// comparison) to simplify writing the test cases.
    			if obj.GetName() == remove.GetName() && obj.GetNamespace() == remove.GetNamespace() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"red_haired_woman":                     "\U0001f469\u200d\U0001f9b0",
    	"red_square":                           "\U0001f7e5",
    	"registered":                           "\u00ae\ufe0f",
    	"relaxed":                              "\u263a\ufe0f",
    	"relieved":                             "\U0001f60c",
    	"reminder_ribbon":                      "\U0001f397\ufe0f",
    	"repeat":                               "\U0001f501",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. src/net/http/clientserver_test.go

    		go func() {
    			defer wg.Done()
    			if mode != http2Mode {
    				// our HTTP/1 implementation intentionally
    				// doesn't permit writes during read (mostly
    				// due to it being undefined); if that is ever
    				// relaxed, change this.
    				<-didRead
    			}
    			io.WriteString(w, resBody)
    		}()
    		wg.Wait()
    	}))
    	req, _ := NewRequest("POST", cst.ts.URL, strings.NewReader(reqBody))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  4. pkg/kube/kclient/delayed.go

    	if c := s.inf.Load(); c != nil {
    		return (*c).HasSynced()
    	}
    	// If we haven't loaded the informer yet, we want to check if the delayed filter is synced.
    	// This ensures that at startup, we only return HasSynced=true if we are sure the CRD is not ready.
    	hs := s.delayed.HasSynced()
    	return hs
    }
    
    func (s *delayedClient[T]) ShutdownHandlers() {
    	if c := s.inf.Load(); c != nil {
    		(*c).ShutdownHandlers()
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 31 02:32:59 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    		track := pp.limiterEvent.start(limiterEventScavengeAssist, start)
    
    		// Scavenge, but back out if the limiter turns on.
    		released := h.pages.scavenge(bytesToScavenge, func() bool {
    			return gcCPULimiter.limiting()
    		}, forceScavenge)
    
    		mheap_.pages.scav.releasedEager.Add(released)
    
    		// Finish up accounting.
    		now = nanotime()
    		if track {
    			pp.limiterEvent.stop(limiterEventScavengeAssist, now)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/inference.go

    	// last.
    	related2(1.2, []float64{})
    	related2(1.0, []int{})
    	related2 /* ERROR "Slice (type []int) does not satisfy interface{[]Elem}" */ (float64(1.0), []int{}) // TODO(gri) better error message
    }
    
    type List[P any] []P
    
    func related3[Elem any, Slice []Elem | List[Elem]]() Slice { return nil }
    
    func _() {
    	// related3 can be instantiated explicitly
    	related3[int, []int]()
    	related3[byte, List[byte]]()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    In this context, the terms _whitebox testing_ (module boundaries are deactivated or relaxed) and _blackbox testing_ (module boundaries are in place) are often used.
    Whitebox testing is used/needed for unit testing and blackbox testing fits functional or integration test requirements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	R_RISCV_TPREL_I       R_RISCV = 49 /* TP-relative TLS LE load */
    	R_RISCV_TPREL_S       R_RISCV = 50 /* TP-relative TLS LE store */
    	R_RISCV_RELAX         R_RISCV = 51 /* Instruction pair can be relaxed */
    	R_RISCV_SUB6          R_RISCV = 52 /* Local label subtraction */
    	R_RISCV_SET6          R_RISCV = 53 /* Local label subtraction */
    	R_RISCV_SET8          R_RISCV = 54 /* Local label subtraction */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Updated distroless iptables to use released image `registry.k8s.io/build-image/distroless-iptables:v0.2.2`
      - Updated setcap to use released image `registry.k8s.io/build-image/setcap:bullseye-v1.4.2` ([#116509](https://github.com/kubernetes/kubernetes/pull/116509), [@cpanato](https://github.com/cpanato)) [SIG Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. released-versions.json

    bot-teamcity <******@****.***> 1718157076 +0000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 12 01:51:16 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top