Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 554 for resources_ (0.27 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2/types.go

    type APIResourceDiscovery struct {
    	// resource is the plural name of the resource.  This is used in the URL path and is the unique identifier
    	// for this resource across all versions in the API group.
    	// Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. tests/integration/base.yaml

        global:
          proxy:
            resources:
              requests:
                cpu: 10m
                memory: 40Mi
        gateways:
          istio-ingressgateway:
            autoscaleEnabled: false
            resources:
              requests:
                cpu: 10m
                memory: 40Mi
          istio-egressgateway:
            autoscaleEnabled: false
            resources:
              requests:
                cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomBuilderTest.java

                } else if (id.startsWith("org.sonatype.mavenbook.multi:simple-parent:")) {
                    return ModelSource.fromPath(Paths.get("src/test/resources/consumer/simple/simple-parent/pom.xml"));
                } else if (id.startsWith("org.my.group:parent:")) {
                    return ModelSource.fromPath(Paths.get("src/test/resources/consumer/trivial/pom.xml"));
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pilot/pkg/xds/delta.go

    	originalW := w
    	// 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: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. pkg/kubelet/util/util_windows_test.go

    		file             string
    		expectError      bool
    		expectedFullPath string
    	}{
    		{
    			path:             "/var/lib/kubelet/pod-resources",
    			file:             "kube.sock", // this is not the default, but it's not relevant here
    			expectError:      false,
    			expectedFullPath: `npipe://\\.\pipe\kubelet-pod-resources`,
    		},
    	}
    	for _, test := range tests {
    		fullPath, err := LocalEndpoint(test.path, test.file)
    		if test.expectError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authorization/v1/types.go

    	// Resource is one of the existing resource types.  "*" means all.
    	// +optional
    	Resource string `json:"resource,omitempty" protobuf:"bytes,5,opt,name=resource"`
    	// Subresource is one of the existing resource types.  "" means none.
    	// +optional
    	Subresource string `json:"subresource,omitempty" protobuf:"bytes,6,opt,name=subresource"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/sds/sdsservice.go

    		resources = append(resources, &discovery.Resource{
    			Name:     resourceName,
    			Resource: res,
    		})
    	}
    	return &discovery.DiscoveryResponse{
    		TypeUrl:     model.SecretType,
    		VersionInfo: time.Now().Format(time.RFC3339) + "/" + strconv.FormatUint(version.Inc(), 10),
    		Nonce:       uuid.New().String(),
    		Resources:   xds.ResourcesToAny(resources),
    	}, nil
    }
    
    // register adds the SDS handle to the grpc server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProcessResourcesIntegrationTest.groovy

                }
                sourceSets {
                    main.resources.srcDir 'src/main/java'
                    main.resources.exclude '**/*.kt' // Forces an intersection pattern set to be created behind the scenes
                }
            '''
            createDir('src/main') {
                dir('java') {
                    file('Test.java') << 'class Test {}'
                }
                dir('resources') {
                    file('data.txt') << '42'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r44/ToolingApiEclipseModelSourceDirectoryOutputCrossVersionSpec.groovy

                    entries.find { entry -> entry.path == 'src/test/java' }.output = null
                    entries.find { entry -> entry.path == 'src/test/resources' }.output = 'out/test-resources'
                }
            """
    
            file('src/test/java').mkdirs()
            file('src/test/resources').mkdirs()
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/ivy/build.gradle.kts

        testImplementation(testFixtures(project(":dependency-management")))
    
        integTestImplementation(libs.slf4jApi)
    
        integTestRuntimeOnly(project(":resources-s3"))
        integTestRuntimeOnly(project(":resources-sftp"))
        integTestRuntimeOnly(project(":api-metadata"))
    
        testFixturesApi(project(":base-services")) {
            because("Test fixtures export the Action class")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top