Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for SELECTION (0.53 sec)

  1. src/cmd/go/internal/modget/get.go

    //
    // The candidate modules for a given package in "all" depend only on the initial
    // build list, but we cannot follow the dependencies of a given package until we
    // know which candidate is selected — and that selection may depend on the
    // results of other queries. We need to re-evaluate the "all" queries whenever
    // the module for one or more packages in "all" are resolved.
    func (r *resolver) performPatternAllQueries(ctx context.Context) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		panic(err)
    	}
    	rootCAs := x509.NewCertPool()
    	rootCAs.AddCert(cert)
    
    	config := testConfig.Clone()
    	// Use GetClientCertificate to bypass the client certificate selection logic.
    	config.GetClientCertificate = func(*CertificateRequestInfo) (*Certificate, error) {
    		return &Certificate{
    			Certificate: [][]byte{testRSAPSSCertificate},
    			PrivateKey:  testRSAPrivateKey,
    		}, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			continue
    		}
    
    		// Must be delayed allocation with control plane controller.
    		numDelayedAllocationPending++
    
    		// Did the driver provide information that steered node
    		// selection towards a node that it can support?
    		if statusForClaim(state.podSchedulingState.schedulingCtx, pod.Spec.ResourceClaims[index].Name) != nil {
    			numClaimsWithStatusInfo++
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    		return proxy.SidecarScope.servicesByHostname[hostname]
    	}
    
    	// SidecarScope shouldn't be null here. If it is, we can't disambiguate the hostname to use for a namespace,
    	// so the selection must be undefined.
    	for _, service := range ps.ServiceIndex.HostnameAndNamespace[hostname] {
    		return service
    	}
    
    	// No service found
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top