Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for werde (0.08 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    			// we should have disk pressure
    			if !manager.IsUnderDiskPressure() {
    				t.Fatalf("Manager should report disk pressure since soft threshold was met")
    			}
    
    			// verify image, container or both gc were called.
    			// split filesystem can have container gc called without image.
    			// same filesystem should have both.
    			if diskGC.imageGCInvoked != tc.expectImageGcCall && diskGC.containerGCInvoked != tc.expectContainerGcCall {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

       * higher than performing just the operation without enforcing the capacity constraint.
       *
       * This implementation uses a per-segment queue to record a memento of the additions, removals,
       * and accesses that were performed on the map. The queue is drained on writes and when it exceeds
       * its capacity threshold.
       *
       * The Least Recently Used page replacement algorithm was chosen due to its simplicity, high hit
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		// The Go compiler always hides the exact value of $GOROOT
    		// when building things in GOROOT.
    		//
    		// The C compiler does not, but for packages in GOROOT we rewrite the path
    		// as though -trimpath were set. This used to be so that we did not invalidate
    		// the build cache (and especially precompiled archive files) when changing
    		// GOROOT_FINAL, but we no longer ship precompiled archive files as of Go 1.20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    	result = fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 1 {
    		t.Errorf("expected service map length 1, got %v", fp.svcPortMap)
    	}
    
    	// All services but one were deleted. While you'd expect only the ClusterIPs
    	// from the three deleted services here, we still have the ClusterIP for
    	// the not-deleted service, because one of it's ServicePorts was deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    			prenormalizedDesiredReplicas: 200,
    			expectedReplicas:             200,
    			expectedCondition:            "DesiredWithinRange",
    		},
    		{
    			name:                         "check that events were not marked 'outdated' for two different policies in the behavior for up",
    			scaleUpEvents:                generateEventsUniformDistribution([]int{8, 12, 9, 11}, 120),
    			specMinReplicas:              1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    						}),
    					},
    				},
    			}),
    			valid: []string{
    				// in this case 'kind', 'apiVersion', 'metadata.name' and 'metadata.generateName' are specified in the
    				// schema, but they would be accessible even if they were not
    				"self.embedded.kind == 'Pod'",
    				"self.embedded.apiVersion == 'v1'",
    				"self.embedded.metadata.name == 'foo'",
    				"self.embedded.metadata.generateName == 'pickItForMe'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //		module download mode to use: readonly, vendor, or mod.
    //		By default, if a vendor directory is present and the go version in go.mod
    //		is 1.14 or higher, the go command acts as if -mod=vendor were set.
    //		Otherwise, the go command acts as if -mod=readonly were set.
    //		See https://golang.org/ref/mod#build-commands for details.
    //	-modcacherw
    //		leave newly-created directories in the module cache read-write
    //		instead of making them read-only.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    _, y, _ := coord(p)   // coord() returns three values; only interested in y coordinate
    </pre>
    
    <p>
    Unlike regular variable declarations, a short variable declaration may <i>redeclare</i>
    variables provided they were originally declared earlier in the same block
    (or the parameter lists if the block is the function body) with the same type,
    and at least one of the non-<a href="#Blank_identifier">blank</a> variables is new.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	// committed to keeping it. Otherwise we cannot put the unnecessary P
    	// back in sched.pidle without performing the full set of idle
    	// transition checks.
    	//
    	// If we were to check gcBgMarkWorkerPool first, we must somehow handle
    	// the assumption in gcControllerState.findRunnableGCWorker that an
    	// empty gcBgMarkWorkerPool is only possible if gcMarkDone is running.
    	lock(&sched.lock)
    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