Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for werde (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/kubelet_test.go

    	// within a goroutine so a two second delay should be enough time to
    	// mark the pod as killed (within this test case).
    
    	kubelet.HandlePodCleanups(ctx)
    
    	// assert that unwanted pods were killed
    	if actual, expected := kubelet.podWorkers.(*fakePodWorkers).triggeredDeletion, []types.UID{"12345678"}; !reflect.DeepEqual(actual, expected) {
    		t.Fatalf("expected %v to be deleted, got %v", expected, actual)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <tt>
     * String username = f.getPrincipal().getName();
     * </tt>
     * The <tt>Principal</tt> object returned will never be <tt>null</tt>
     * however the username can be <tt>null</tt> indication anonymous
     * credentials were used (e.g. some IPC$ services).
     */
    
        public Principal getPrincipal() {
            return auth;
        }
    
    /**
     * Returns the last component of the target URL. This will
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      }
    
      /**
       * An object that holds the final result of an asynchronous {@link ClosingFuture} operation and
       * allows the user to close all the closeable objects that were captured during it for later
       * closing.
       *
       * <p>The asynchronous operation will have completed before this object is created.
       *
       * @param <V> the type of the value of a successful operation
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top