Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for resourceNames (0.3 sec)

  1. security/pkg/nodeagent/cache/secretcache_test.go

    	if expectedSecret.ResourceName != gotSecret.ResourceName {
    		t.Fatalf("resource name:: expected %s but got %s", expectedSecret.ResourceName,
    			gotSecret.ResourceName)
    	}
    	cfg, ok := security.SdsCertificateConfigFromResourceName(expectedSecret.ResourceName)
    	if expectedSecret.ResourceName == security.RootCertReqResourceName || (ok && cfg.IsRootCertificate()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/extension/wasmplugin.go

    	}
    	delete(filterMap, phase)
    	return list
    }
    
    func toEnvoyHTTPFilter(wasmPlugin *model.WasmPluginWrapper) *hcm.HttpFilter {
    	return &hcm.HttpFilter{
    		Name: wasmPlugin.ResourceName,
    		ConfigType: &hcm.HttpFilter_ConfigDiscovery{
    			ConfigDiscovery: &core.ExtensionConfigSource{
    				ConfigSource: defaultConfigSource,
    				TypeUrls: []string{
    					xds.WasmHTTPFilterType,
    					xds.RBACHTTPFilterType,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status.go

    	supportedHugePageResources := sets.Set[string]{}
    
    	for resourceName := range initialNode.Status.Capacity {
    		if !v1helper.IsHugePageResourceName(resourceName) {
    			continue
    		}
    		supportedHugePageResources.Insert(string(resourceName))
    
    		initialCapacity := initialNode.Status.Capacity[resourceName]
    		initialAllocatable := initialNode.Status.Allocatable[resourceName]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

            int end = clampLocation(diagnostic.getEndPosition());
    
            // We only set the location if we have a resource to point to
            if (resourceName != null) {
                spec.fileLocation(resourceName);
                // If we know the line ...
                if (0 < line) {
                    // ... and the column ...
                    if (0 < column) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation_test.go

    							Requests: core.ResourceList{
    								core.ResourceName(core.ResourceCPU):    resource.MustParse("10"),
    								core.ResourceName(core.ResourceMemory): resource.MustParse("10G"),
    								core.ResourceName("hugepages-2Mi"):     resource.MustParse("1Gi"),
    							},
    							Limits: core.ResourceList{
    								core.ResourceName(core.ResourceCPU):    resource.MustParse("10"),
    								core.ResourceName(core.ResourceMemory): resource.MustParse("10G"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/sds/server.go

    	s.initWorkloadSdsService()
    	return s
    }
    
    func (s *Server) OnSecretUpdate(resourceName string) {
    	if s.workloadSds == nil {
    		return
    	}
    
    	sdsServiceLog.Debugf("Trigger on secret update, resource name: %s", resourceName)
    	s.workloadSds.push(resourceName)
    }
    
    // Stop closes the gRPC server and debug server.
    func (s *Server) Stop() {
    	if s == nil {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/extension/wasmplugin_test.go

    		Name:         "someAuthNFilter",
    		Namespace:    "istio-system",
    		ResourceName: "istio-system.someAuthNFilter",
    		WasmPlugin: &extensions.WasmPlugin{
    			Priority: &wrapperspb.Int32Value{Value: 1},
    		},
    	}
    	someAuthZFilter = &model.WasmPluginWrapper{
    		Name:         "someAuthZFilter",
    		Namespace:    "istio-system",
    		ResourceName: "istio-system.someAuthZFilter",
    		WasmPlugin: &extensions.WasmPlugin{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit.go

    			return true
    		}
    	}
    	return false
    }
    
    // InsufficientResource describes what kind of resource limit is hit and caused the pod to not fit the node.
    type InsufficientResource struct {
    	ResourceName v1.ResourceName
    	// We explicitly have a parameter for reason to avoid formatting a message on the fly
    	// for common resources, which is expensive for cluster autoscaler simulations.
    	Reason    string
    	Requested int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    	scName = "csi-sc"
    )
    
    // getVolumeLimitKey returns a ResourceName by filter type
    func getVolumeLimitKey(filterType string) v1.ResourceName {
    	switch filterType {
    	case ebsVolumeFilterType:
    		return v1.ResourceName(volumeutil.EBSVolumeLimitKey)
    	case gcePDVolumeFilterType:
    		return v1.ResourceName(volumeutil.GCEVolumeLimitKey)
    	case azureDiskVolumeFilterType:
    		return v1.ResourceName(volumeutil.AzureVolumeLimitKey)
    	case cinderVolumeFilterType:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta_test.go

    	s.XdsUpdater.ConfigUpdate(&model.PushRequest{
    		ConfigsUpdated: sets.New(model.ConfigKey{
    			Kind: kind.Address, Name: svcA.ResourceName(), Namespace: svcA.Namespace,
    		}),
    	})
    
    	resp = ads.ExpectResponse()
    	if len(resp.Resources) != 1 || resp.Resources[0].Name != svcA.ResourceName() {
    		t.Fatalf("received unexpected address resource %v", resp.Resources)
    	}
    	if len(resp.RemovedResources) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top