Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 353 for Id (0.07 sec)

  1. pilot/pkg/xds/sds.go

    	// Cache for XDS resources
    	cache         model.XdsCache
    	configCluster cluster.ID
    	meshConfig    *mesh.MeshConfig
    }
    
    var _ model.XdsResourceGenerator = &SecretGen{}
    
    func NewSecretGen(sc credscontroller.MulticlusterController, cache model.XdsCache, configCluster cluster.ID,
    	meshConfig *mesh.MeshConfig,
    ) *SecretGen {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	return srcLabels
    }
    
    func (s *Controller) convertEndpoint(service *model.Service, servicePort *networking.ServicePort,
    	wle *networking.WorkloadEntry, configKey *configKey, clusterID cluster.ID,
    ) *model.ServiceInstance {
    	var instancePort uint32
    	addr := wle.GetAddress()
    	// priority level: unixAddress > we.ports > se.port.targetPort > se.port.number
    	if strings.HasPrefix(addr, model.UnixAddressPrefix) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_manager_test.go

    		assert.Equal(t, 1, len(images), "ListImages() count")
    
    		image := images[0]
    		assert.Equal(t, "missing_image:latest", image.ID, "Image ID")
    		assert.Equal(t, "", image.Spec.RuntimeHandler, "image.Spec.RuntimeHandler not empty", "ImageID", image.ID)
    
    		expectedAnnotations := []Annotation{
    			{
    				Name:  "kubernetes.io/runtimehandler",
    				Value: "handler_name",
    			}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/object.go

    // It doesn't take into account whether the object is in a local (function) scope
    // or not.
    func (obj *object) Exported() bool { return isExported(obj.name) }
    
    // Id is a wrapper for Id(obj.Pkg(), obj.Name()).
    func (obj *object) Id() string { return Id(obj.pkg, obj.name) }
    
    func (obj *object) String() string       { panic("abstract") }
    func (obj *object) order() uint32        { return obj.order_ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/token.go

    	for _, tokenIDOrToken := range tokenIDsOrTokens {
    		// Assume this is a token id and try to parse it
    		tokenID := tokenIDOrToken
    		klog.V(1).Info("[token] parsing token")
    		if !bootstraputil.IsValidBootstrapTokenID(tokenIDOrToken) {
    			// Okay, the full token with both id and secret was probably passed. Parse it and extract the ID only
    			bts, err := bootstraptokenv1.NewBootstrapTokenString(tokenIDOrToken)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server.go

    	}
    	c.cipherSuite = hs.suite.id
    
    	if c.config.CipherSuites == nil && !needFIPS() && rsaKexCiphers[hs.suite.id] {
    		tlsrsakex.Value() // ensure godebug is initialized
    		tlsrsakex.IncNonDefault()
    	}
    	if c.config.CipherSuites == nil && !needFIPS() && tdesCiphers[hs.suite.id] {
    		tls3des.Value() // ensure godebug is initialized
    		tls3des.IncNonDefault()
    	}
    
    	for _, id := range hs.clientHello.cipherSuites {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. pkg/spiffe/spiffe.go

    	}
    	out := sets.New[string]()
    	for id := range spiffeIdentities {
    		out.Insert(id)
    		// Skip if not a SPIFFE identity - This can happen for example if the identity is a DNS name.
    		if !strings.HasPrefix(id, URIPrefix) {
    			continue
    		}
    		// Expand with aliases set.
    		m, err := ParseIdentity(id)
    		if err != nil {
    			spiffeLog.Errorf("Failed to extract SPIFFE trust domain from %v: %v", id, err)
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	}
    	registry1 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter1"),
    		DiscoveryController: discovery1,
    	}
    
    	registry2 := serviceregistry.Simple{
    		ProviderID:          provider.ID("mockAdapter2"),
    		DiscoveryController: discovery2,
    	}
    
    	ctls := NewController(Options{&mockMeshConfigHolder{}})
    	ctls.AddRegistry(registry1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. pkg/kube/krt/collection.go

    }
    
    func (h *manyCollection[I, O]) objectChanged(iKey Key[I], dependencies []*dependency, sourceCollection collectionUID, ev Event[any]) bool {
    	for _, dep := range dependencies {
    		id := dep.id
    		if id != sourceCollection {
    			continue
    		}
    		// For each input, we will check if it depends on this event.
    		// We use Items() to check both the old and new object; we will recompute if either matched
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/gc.go

    	if a.Mode == "link" {
    		// For linking, use the main package's build ID instead of
    		// the binary's build ID, so it is the same hash used in
    		// compiling and linking.
    		// When compiling, we use actionID/actionID (instead of
    		// actionID/contentID) as a temporary build ID to compute
    		// the hash. Do the same here. (See buildid.go:useCache)
    		// The build ID matters because it affects the overall hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top