Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 554 for resources_ (0.24 sec)

  1. samples/addons/kiali.yaml

      resources: ["*"]
      verbs:
      - get
      - list
      - watch
      - create
      - delete
      - patch
    - apiGroups: ["apps.openshift.io"]
      resources:
      - deploymentconfigs
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: ["project.openshift.io"]
      resources:
      - projects
      verbs:
      - get
    - apiGroups: ["route.openshift.io"]
      resources:
      - routes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/noderesources.go

    	}
    
    	if loggerV := logger.V(6); loggerV.Enabled() {
    		// Dump entire resource information.
    		loggerV.Info("Syncing existing driver node resource slices with driver resources", "slices", klog.KObjSlice(slices), "resources", driverResources)
    	} else {
    		logger.V(5).Info("Syncing existing driver node resource slices with driver resources", "slices", klog.KObjSlice(slices), "numResources", len(driverResources))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pkg/volume/emptydir/empty_dir_test.go

    						{
    							Resources: v1.ResourceRequirements{
    								Limits: v1.ResourceList{
    									v1.ResourceName("memory"): resource.MustParse("10Gi"),
    								},
    							},
    						},
    					},
    				},
    			},
    			nodeAllocatableMemory: resource.MustParse("16Gi"),
    			emptyDirSizeLimit:     resource.MustParse("0"),
    			expectedResult:        resource.MustParse("10Gi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    							},
    						},
    					},
    				},
    			},
    			expectedError: "resource \"*.*\" is masked by earlier rule \"*.*\"",
    		},
    		{
    			desc: "resources masked by *. group in multiple configurations",
    			config: &apiserver.EncryptionConfiguration{
    				Resources: []apiserver.ResourceConfiguration{
    					{
    						Resources: []string{
    							"configmaps",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/integTest/groovy/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest.groovy

            }
        }
    
        /* Relies on the resources directory:
         * integTest/resources/org/gradle/api/internal/tasks/testing/loggingConfig
         */
        def loggingConfigRespected() {
            given:
            testResources.maybeCopy('JULRedirectorIntegrationTest/loggingConfig')
            buildFile << """
                test {
                    systemProperty 'java.util.logging.config.file', 'src/test/resources/logging.properties'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. operator/pkg/util/progress/progress_test.go

    	foo.ReportProgress()
    	expect(`- Processing resources for ` + cnpo + `.`)
    
    	bar := p.NewComponent(string(cnb))
    	bar.ReportProgress()
    	// string buffer won't rewrite, so we append
    	expect(`- Processing resources for ` + cnbo + `, ` + cnpo + `.`)
    	bar.ReportProgress()
    	bar.ReportProgress()
    
    	bar.ReportWaiting([]string{"deployment"})
    	expect(`- Processing resources for ` + cnbo + `, ` + cnpo + `. Waiting for deployment`)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/xdsgen.go

    	t0 := time.Now()
    
    	// If delta is set, client is requesting new resources or removing old ones. We should just generate the
    	// new resources it needs, rather than the entire set of known resources.
    	// Note: we do not need to account for unsubscribed resources as these are handled by parent removal;
    	// See https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#deleting-resources.
    	// This means if there are only removals, we will not respond.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/deltatest.go

    			}
    		}
    	}
    }
    
    func applyDelta(message model.Resources, resp *discovery.DeltaDiscoveryResponse) model.Resources {
    	deleted := sets.New(resp.RemovedResources...)
    	byName := map[string]*discovery.Resource{}
    	for _, v := range resp.Resources {
    		byName[v.Name] = v
    	}
    	res := model.Resources{}
    	for _, m := range message {
    		if deleted.Contains(m.Name) {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            module.runtimeClasspath.asFiles == [runtimeDep]
        }
    
        def "does not add wrong resources dirs to classpath of 'gradle-resources' module"() {
            given:
            def registry = new DefaultModuleRegistry(classLoaderFor(), ClassPath.EMPTY, null)
            def module = registry.getModule("gradle-resources") // module name == resources (resource folder name)
            def cpFiles = module.implementationClasspath.asFiles.sort(false)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation_test.go

    					APIGroups:   []string{"a"},
    					APIVersions: []string{"a"},
    					Resources:   []string{"*/a", "x/a"},
    				},
    			}},
    		},
    		}, true),
    		expectedError: `webhooks[0].rules[0].resources[1]: Invalid value: "x/a": if '*/a' is present, must not specify x/a`,
    	}, {
    		name: "resource */* cannot mix with other resources",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
Back to top