Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for circuit (0.21 sec)

  1. src/main/java/jcifs/Configuration.java

         * 
         * @return socket timeout for netbios connections, in milliseconds
         */
        int getNetbiosSoTimeout ();
    
    
        /**
         * 
         * 
         * @return virtual circuit number to use
         */
        int getVcNumber ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.capabilities</tt> (int)
         * 
         * @return custom capabilities
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. pkg/kubelet/certificate/bootstrap/bootstrap.go

    // The certificate and key file are stored in certDir.
    func LoadClientCert(ctx context.Context, kubeconfigPath, bootstrapPath, certDir string, nodeName types.NodeName) error {
    	// Short-circuit if the kubeconfig file exists and is valid.
    	ok, err := isClientConfigStillValid(kubeconfigPath)
    	if err != nil {
    		return err
    	}
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/policy_static.go

    		return nil
    	}
    
    	for _, ctn := range append(pod.Spec.InitContainers, pod.Spec.Containers...) {
    		containerBlocks := s.GetMemoryBlocks(string(pod.UID), ctn.Name)
    		// Short circuit to regenerate the same hints if there are already
    		// memory allocated for the container. This might happen after a
    		// kubelet restart, for example.
    		if containerBlocks != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  4. misc/go_android_exec/main.go

    	// However, if the os.Stderr (or os.Stdout) file descriptors are
    	// passed on, the hanging adb subprocess will hold them open and
    	// go test will hang forever.
    	//
    	// Avoid that by wrapping stderr, breaking the short circuit and
    	// forcing cmd.Run to use another pipe and goroutine to pass
    	// along stderr from adb.
    	cmd.Stderr = struct{ io.Writer }{os.Stderr}
    	err := cmd.Run()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/graph.go

    	nodeVertex := g.getOrCreateVertex_locked(nodeVertexType, "", pod.Spec.NodeName)
    	g.graph.SetEdge(newDestinationEdge(podVertex, nodeVertex, nodeVertex))
    
    	// Short-circuit adding edges to other resources for mirror pods.
    	// A node must never be able to create a pod that grants them permissions on other API objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

                      \"c\" \thas(label_name)  -> True if that label is present \t! expr
                      -> negation of expr \texpr && expr  -> Short-circuit and \texpr
                      || expr  -> Short-circuit or \t( expr ) -> parens for grouping \tall()
                      or the empty selector -> matches all endpoints. \n Label names are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeRangeMap.java

          remove(range);
          entriesByLowerBound.put(range.lowerBound, new RangeMapEntry<K, V>(range, value));
        }
      }
    
      @Override
      public void putCoalescing(Range<K> range, V value) {
        // don't short-circuit if the range is empty - it may be between two ranges we can coalesce.
        if (entriesByLowerBound.isEmpty()) {
          put(range, value);
          return;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    	var result []metav1.OwnerReference
    	var duplicates []string
    	seen := make(map[types.UID]struct{})
    	for _, ref := range refs {
    		_, ok := seen[ref.UID]
    		// Short-circuit if we haven't seen the UID before. Otherwise
    		// check the entire list we have so far.
    		if !ok || !hasOwnerReference(result, ref) {
    			seen[ref.UID] = struct{}{}
    			result = append(result, ref)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  9. pkg/controller/tainteviction/taint_eviction.go

    	pods, err := tc.getPodsAssignedToNode(node.Name)
    	if err != nil {
    		logger.Error(err, "Failed to get pods assigned to node", "node", klog.KObj(node))
    		return
    	}
    	if len(pods) == 0 {
    		return
    	}
    	// Short circuit, to make this controller a bit faster.
    	if len(taints) == 0 {
    		logger.V(4).Info("All taints were removed from the node. Cancelling all evictions...", "node", klog.KObj(node))
    		for i := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. src/text/template/exec.go

    	}
    
    	unwrap := func(v reflect.Value) reflect.Value {
    		if v.Type() == reflectValueType {
    			v = v.Interface().(reflect.Value)
    		}
    		return v
    	}
    
    	// Special case for builtin and/or, which short-circuit.
    	if isBuiltin && (name == "and" || name == "or") {
    		argType := typ.In(0)
    		var v reflect.Value
    		for _, arg := range args {
    			v = s.evalArg(dot, argType, arg).Interface().(reflect.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top