Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 264 for ResourceNames (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    			},
    		},
    		"clusterRoleEdit": {
    			Level: audit.LevelRequest,
    			Resources: []audit.GroupResources{{
    				Group:         "rbac.authorization.k8s.io",
    				Resources:     []string{"clusterroles"},
    				ResourceNames: []string{"edit"},
    			}},
    		},
    		"omit RequestReceived": {
    			Level: audit.LevelRequest,
    			OmitStages: []audit.Stage{
    				audit.StageRequestReceived,
    			},
    		},
    		"only audit panic": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy.go

    		// Convert SotW to Delta.
    		connection.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    			Node:                   req.Node,
    			TypeUrl:                req.TypeUrl,
    			ResourceNamesSubscribe: req.ResourceNames,
    		})
    	} else {
    		connection.sendRequest(req)
    	}
    
    	delay := time.NewTimer(timeout)
    	defer delay.Stop()
    
    	// Wait for expected response or timeout
    	for {
    		select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/quota/v1/evaluator/core/pods.go

    	requests := container.Resources.Requests
    	limits := container.Resources.Limits
    	containerUsage := podComputeUsageHelper(requests, limits)
    	containerSet := quota.ToSet(quota.ResourceNames(containerUsage))
    	if !containerSet.Equal(requiredSet) {
    		if difference := requiredSet.Difference(containerSet); difference.Len() != 0 {
    			for _, diff := range difference.List() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  8. 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 (1)
  9. 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)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    				return newDefaultBuilderWith(fakeClientWith(t.Name(), t, nil)).
    					NamespaceParam("foo").
    					TransformRequests(func(req *rest.Request) {
    						*got = req
    					}).
    					ResourceNames("", "services/baz").
    					RequireObject(false)
    			},
    		},
    		{
    			name: "flatten",
    			f: func(t *testing.T, got **rest.Request) *Builder {
    				pods, _ := testData()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
Back to top