Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 136 for ResourceNames (0.31 sec)

  1. pilot/pkg/networking/core/cluster.go

    	servicePortClusters := make(map[string]map[int]string)
    	// Holds subset clusters per service, keyed by hostname.
    	subsetClusters := make(map[string]sets.String)
    
    	for _, cluster := range watched.ResourceNames {
    		// WatchedResources.ResourceNames will contain the names of the clusters it is subscribed to. We can
    		// check with the name of our service (cluster names are in the format outbound|<port>|<subset>|<hostname>).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/generated.pb.go

    		i = encodeVarintGenerated(dAtA, i, uint64(size))
    	}
    	i--
    	dAtA[i] = 0x12
    	if len(m.ResourceNames) > 0 {
    		for iNdEx := len(m.ResourceNames) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ResourceNames[iNdEx])
    			copy(dAtA[i:], m.ResourceNames[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ResourceNames[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 200.5K bytes
    - Viewed (0)
  3. pkg/adsc/adsc.go

    		nonce = ex.Nonce
    	}
    	_ = a.stream.Send(&discovery.DiscoveryRequest{
    		ResponseNonce: nonce,
    		VersionInfo:   version,
    		Node:          a.node(),
    		TypeUrl:       typeurl,
    		ResourceNames: rsc,
    	})
    }
    
    func (a *ADSC) ack(msg *discovery.DiscoveryResponse) {
    	var resources []string
    
    	if strings.HasPrefix(msg.TypeUrl, v3.DebugType) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  4. pilot/pkg/xds/sds.go

    	// SDS flow. The pilotSDSCertificateErrors metric and logs handle visibility into invalid references.
    	resources := filterAuthorizedResources(s.parseResources(w.ResourceNames, proxy), proxy, proxyClusterSecrets)
    
    	var results model.Resources
    	cached, regenerated := 0, 0
    	for _, sr := range resources {
    		if updatedSecrets != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pilot/pkg/model/context.go

    	defer node.RUnlock()
    	wr := node.WatchedResources[v3.EndpointType]
    	if wr != nil {
    		return wr.ResourceNames
    	}
    	return nil
    }
    
    func (node *Proxy) NewWatchedResource(typeURL string, names []string) {
    	node.Lock()
    	defer node.Unlock()
    
    	node.WatchedResources[typeURL] = &WatchedResource{TypeUrl: typeURL, ResourceNames: names}
    	// For all EDS requests that we have already responded with in the same stream let us
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    	return map_MutatingWebhookConfigurationList
    }
    
    var map_NamedRuleWithOperations = map[string]string{
    	"":              "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.",
    	"resourceNames": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
    }
    
    func (NamedRuleWithOperations) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen_test.go

    			t.Fatal("Missing expected cookie path", sc.Cookie)
    		}
    		clusterName := "outbound|9999||echo-persistent.test.svc.cluster.local"
    		adscConn.Send(&discovery.DiscoveryRequest{
    			TypeUrl:       v3.EndpointType,
    			ResourceNames: []string{clusterName},
    		})
    		_, err = adscConn.Wait(5*time.Second, v3.EndpointType)
    		if err != nil {
    			t.Fatal("Failed to receive endpoint", err)
    		}
    		ep := adscConn.GetEndpoints()[clusterName]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/pod_devices.go

    			Name: cdiDevice.Name,
    		}
    		cdiDevices = append(cdiDevices, device)
    	}
    
    	return cdiDevices
    }
    
    // getContainerDevices returns the devices assigned to the provided container for all ResourceNames
    func (pdev *podDevices) getContainerDevices(podUID, contName string) ResourceDeviceInstances {
    	pdev.RLock()
    	defer pdev.RUnlock()
    
    	if _, podExists := pdev.devs[podUID]; !podExists {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	return map_MutatingWebhookConfigurationList
    }
    
    var map_NamedRuleWithOperations = map[string]string{
    	"":              "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.",
    	"resourceNames": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
    }
    
    func (NamedRuleWithOperations) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    }
    
    // NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.
    // +structType=atomic
    message NamedRuleWithOperations {
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +listType=atomic
      // +optional
      repeated string resourceNames = 1;
    
      // RuleWithOperations is a tuple of Operations and Resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top