Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 650 for RequestId (0.17 sec)

  1. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

    status:
      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Failed to assign to any requested addresses: hostname "fake-service.com"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Recreating configuration cache")
        }
    
        def "does not configure build when task graph is already cached for requested tasks"() {
    
            def configurationCache = newConfigurationCacheFixture()
    
            given:
            buildFile << """
                println "running build script"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    	"currentCPUUtilizationPercentage": "currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.",
    }
    
    func (HorizontalPodAutoscalerStatus) SwaggerDoc() map[string]string {
    	return map_HorizontalPodAutoscalerStatus
    }
    
    var map_MetricSpec = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/controlplane/manifests.go

    		kubeadmconstants.ModeRBAC,
    	}
    
    	if len(authzModeExtraArgs) > 0 {
    		mode := []string{}
    		for _, requested := range strings.Split(authzModeExtraArgs, ",") {
    			if isValidAuthzMode(requested) {
    				mode = append(mode, requested)
    			} else {
    				klog.Warningf("ignoring unknown kube-apiserver authorization-mode %q", requested)
    			}
    		}
    
    		// only return the user provided mode if at least one was valid
    		if len(mode) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                this snapshot.
              jsonPath: .status.restoreSize
              name: RestoreSize
              type: string
            - description: The name of the VolumeSnapshotClass requested by the VolumeSnapshot.
              jsonPath: .spec.volumeSnapshotClassName
              name: SnapshotClass
              type: string
            - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

                if (!Objects.equal(cacheName, parameters.getCacheName())) {
                    faultMessages.add(
                        String.format(" * Requested cache name (%s) doesn't match current cache name (%s)", cacheName,
                            parameters.getCacheName()));
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            dependencyArtifacts = ImmutableList.copyOf(artifacts);
            this.excludes = ImmutableList.copyOf(excludes);
        }
    
        public IvyDependencyDescriptor(ModuleComponentSelector requested, ListMultimap<String, String> confMappings) {
            this(requested, requested.getVersion(), false, true, false, confMappings, Collections.emptyList(), Collections.emptyList());
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    |===
    | Reason    | Meaning
    
    | (Absent)
    | No reason other than a reference, direct or transitive, was present.
    
    | Was requested : <text>
    | The dependency appears in the graph, and the inclusion came with a <<declaring_dependencies#sec:documenting-dependencies, `because` text>>.
    
    | Was requested : didn't match versions <versions>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            @Override
            void execute(CompatibilityCheckDetails<String> details) {
                def requested = details.consumerValue
                def candidate = details.producerValue
                if (requested == candidate) { // simulate exact match
                    details.compatible()
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/VariantsDependencySubstitutionRulesIntegrationTest.groovy

                    conf 'org:lib:1.0'
                }
            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasCause "Unable to find a variant of org:lib:1.0 providing the requested capability org:lib-test-fixtures:"
        }
    
        def "can substitute a project dependency without capabilities with a dependency with capabilities"() {
            mavenRepo.module("org", "lib", "1.0").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top