Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 650 for RequestId (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn_test.go

    			requested: nil,
    			expected:  "",
    		},
    		{
    			supported: map[string]bool{"": binary, "raw": binary, "base64": base64},
    			requested: []string{"v1.raw"},
    			error:     true,
    		},
    		{
    			supported: map[string]bool{"": binary, "raw": binary, "base64": base64},
    			requested: []string{"v1.raw", "v1.base64"},
    			error:     true,
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/certificates/v1/generated.proto

      //   2. Signer whose configured maximum is shorter than the requested duration
      //   3. Signer whose configured minimum is longer than the requested duration
      //
      // The minimum valid value for expirationSeconds is 600, i.e. 10 minutes.
      //
      // +optional
      optional int32 expirationSeconds = 8;
    
      // usages specifies a set of key usages requested in the issued certificate.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    A daemon is considered compatible if its classpath contains all the classpath entries requested. +
    Note that a daemon is considered compatible only if the classpath exactly matches the requested classpath.
    
    heap settings::
    A daemon is considered compatible if it has at least the same heap size settings as requested. +
    In other words, a daemon that has higher heap settings than requested would be considered compatible.
    
    jvm arguments::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_static.go

    	if e.AvailablePhysicalCPUs > 0 {
    		return fmt.Sprintf("SMT Alignment Error: not enough free physical CPUs: available physical CPUs = %d, requested CPUs = %d, CPUs per core = %d", e.AvailablePhysicalCPUs, e.RequestedCPUs, e.CpusPerCore)
    	}
    	return fmt.Sprintf("SMT Alignment Error: requested %d cpus not multiple cpus per core = %d", e.RequestedCPUs, e.CpusPerCore)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/generated.proto

      //   2. Signer whose configured maximum is shorter than the requested duration
      //   3. Signer whose configured minimum is longer than the requested duration
      //
      // The minimum valid value for expirationSeconds is 600, i.e. 10 minutes.
      //
      // +optional
      optional int32 expirationSeconds = 8;
    
      // usages specifies a set of key usages requested in the issued certificate.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

                        dependencySubstitution.all {
                            def selector = VERSION_SCHEME.parseSelector("[2.1, 2.2]")
                            if (it.requested.group.startsWith("org") && it.requested.module.startsWith("foo") && selector.accept(it.requested.version)) {
                                it.useTarget("org:foo:2.3", "bad version")
                            }
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    			expectedList: []framework.NodeScore{{Name: "node1", Score: framework.MaxNodeScore}, {Name: "node2", Score: framework.MaxNodeScore}},
    			name:         "nothing scheduled, nothing requested",
    			args:         config.NodeResourcesBalancedAllocationArgs{Resources: defaultResourceBalancedAllocationSet},
    			runPreScore:  true,
    		},
    		{
    			// Node1 scores on 0-MaxNodeScore scale
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyResultSorterSpec.groovy

            sorted == [d2, d1]
        }
    
        private newDependency(ComponentSelector requested, ComponentIdentifier selected, ComponentIdentifier from = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId("org", "a"), "1.0")) {
            return Stub(DependencyEdge) {
                toString() >> "$requested -> $selected"
                getRequested() >> requested
                getActual() >> selected
                getFrom() >> from
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 18.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyResultSorter.java

                    throw new IllegalArgumentException("Dependency edge or the requested component selector may not be null");
                }
    
                ComponentSelector requested = dependencyEdge.getRequested();
    
                if(!isExpectedComponentSelector(requested)) {
                    throw new IllegalArgumentException("Unexpected component selector type for dependency edge: " + requested.getClass());
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  10. pkg/apis/certificates/types.go

    	//  2. Permitted subjects: and behavior when a disallowed subject is requested.
    	//  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
    	//  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top