Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for preset (0.15 sec)

  1. pkg/controller/garbagecollector/garbagecollector_test.go

    			for _, owner := range dependentNode.owners {
    				if owner.UID == myUID {
    					found = true
    					break
    				}
    			}
    			if !found {
    				t.Errorf("scenario: %s: node %s has node %s as a dependent, but it's not present in the latter node's owners list", scenario, node.identity, dependentNode.identity)
    			}
    		}
    
    		for _, owner := range node.owners {
    			ownerNode, ok := uidToNode[owner.UID]
    			if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	if timeout <= 0 {
    		return false
    	}
    	return dc.createdAt.Add(timeout).Before(nowFunc())
    }
    
    // resetSession checks if the driver connection needs the
    // session to be reset and if required, resets it.
    func (dc *driverConn) resetSession(ctx context.Context) error {
    	dc.Lock()
    	defer dc.Unlock()
    
    	if !dc.needReset {
    		return nil
    	}
    	if cr, ok := dc.ci.(driver.SessionResetter); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		// it, we skip the key from the kubelet-generated ones so we don't have duplicate
    		// env vars.
    		// TODO: remove this next line once all platforms use apiserver+Pods.
    		if _, present := tmpEnv[k]; !present {
    			result = append(result, kubecontainer.EnvVar{Name: k, Value: v})
    		}
    	}
    	return result, nil
    }
    
    // podFieldSelectorRuntimeValue returns the runtime value of the given
    // selector for a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    			if target.SourceBucket == bucket &&
    				target.TargetBucket == bucket &&
    				target.Endpoint == prevEp.Host &&
    				target.Secure == (prevEp.Scheme == "https") &&
    				target.Type == madmin.ReplicationService {
    				bucketTarget := target
    				bucketTarget.Secure = ep.Scheme == "https"
    				bucketTarget.Endpoint = ep.Host
    				if peer.DefaultBandwidth.IsSet && target.BandwidthLimit == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *
       * <p>Usage guidelines for this method:
       *
       * <ul>
       *   <li>Use this method only when calling an API that returns a {@link ListenableFuture} or a
       *       {@code ClosingFuture}. If possible, prefer calling {@link #transform(ClosingFunction,
       *       Executor)} instead, with a function that returns the next value directly.
       *   <li>Call {@link DeferredCloser#eventuallyClose(Object, Executor) closer.eventuallyClose()}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    				ImportPath: path,
    				Incomplete: true,
    			},
    		}
    		if importErr, ok := err.(ImportPathError); !ok || importErr.ImportPath() != path {
    			// Only add path to the error's import stack if it's not already present
    			// in the error.
    			//
    			// TODO(bcmills): setLoadPackageDataError itself has a similar Push / Pop
    			// sequence that empirically doesn't trigger for these errors, guarded by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework_test.go

    			wantStatus:         framework.Wait,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			metrics.Register()
    			metrics.FrameworkExtensionPointDuration.Reset()
    			metrics.PluginExecutionDuration.Reset()
    
    			plugin := &TestPlugin{name: testPlugin, inj: tt.inject}
    			r := make(Registry)
    			r.Register(testPlugin,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // Users should prefer 'go get path@version' or 'go get path@none',
    // which make other go.mod adjustments as needed to satisfy
    // constraints imposed by other modules.
    //
    // The -go=version flag sets the expected Go language version.
    // This flag is mainly for tools that understand Go version dependencies.
    // Users should prefer 'go get go@version'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	if taintutils.TaintExists(node2.Spec.Taints, NotReadyTaintTemplate) || len(node2.Spec.Taints) > 0 {
    		t.Errorf("Found taint %v in %v, which should not be present", NotReadyTaintTemplate, node2.Spec.Taints)
    	}
    
    	node3, err := fakeNodeHandler.Get(ctx, "node3", metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("Can't get current node3...")
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
Back to top