Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,555 for specifiedFn (0.17 sec)

  1. cmd/kube-controller-manager/app/certificates_test.go

    			specifiedFn:       areKubeletServingSignerFilesSpecified,
    			expectedSpecified: true,
    			filesFn:           getKubeletServingSignerFiles,
    			expectedCert:      "/cluster-signing-kubelet-serving/cert-file",
    			expectedKey:       "/cluster-signing-kubelet-serving/key-file",
    		},
    		{
    			name:              "halfASpecified-KubeletServingSignerFilesSpecified",
    			config:            halfASpecified,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 09 12:14:55 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  2. cmd/httprange.go

    	case h == nil:
    		rangeLength = resourceSize
    
    	case h.IsSuffixLength:
    		specifiedLen := -h.Start
    		rangeLength = specifiedLen
    		if specifiedLen > resourceSize {
    			rangeLength = resourceSize
    		}
    
    	case h.Start >= resourceSize:
    		return 0, InvalidRange{
    			OffsetBegin:  h.Start,
    			OffsetEnd:    h.End,
    			ResourceSize: resourceSize,
    		}
    
    	case h.End > -1:
    		end := h.End
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiContext.java

         *
         * @param style the style to use
         * @param action the action to execute on ANSI with the specified style
         * @return the current context
         */
        AnsiContext withStyle(Style style, Action<? super AnsiContext> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. cmd/typed-errors.go

    var errGroupDisabled = errors.New("Specified group is disabled")
    
    // error returned in IAM subsystem when policy doesn't exist.
    var errNoSuchPolicy = errors.New("Specified canned policy does not exist")
    
    // error returned when policy to be deleted is in use.
    var errPolicyInUse = errors.New("Specified policy is in use and cannot be deleted.")
    
    // error returned when more than a single policy is specified when only one is
    // expected.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pkg/controller/job/success_policy_test.go

    		},
    		"rules.succeededIndexes is specified; succeededIndexes didn't match rules": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 2}},
    			successPolicy: &batch.SuccessPolicy{
    				Rules: []batch.SuccessPolicyRule{{
    					SucceededIndexes: ptr.To("3"),
    				}},
    			},
    		},
    		"rules.succeededCount is specified; succeededIndexes matched rules": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/util/ipvs.go

    	GetRealServers(*VirtualServer) ([]*RealServer, error)
    	// DeleteRealServer deletes the specified real server from the specified virtual server.
    	DeleteRealServer(*VirtualServer, *RealServer) error
    	// UpdateRealServer updates the specified real server from the specified virtual server.
    	UpdateRealServer(*VirtualServer, *RealServer) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/csrsigningcontroller.go

    	fs.StringVar(&o.KubeletServingSignerConfiguration.CertFile, "cluster-signing-kubelet-serving-cert-file", o.KubeletServingSignerConfiguration.CertFile, "Filename containing a PEM-encoded X509 CA certificate used to issue certificates for the kubernetes.io/kubelet-serving signer.  If specified, --cluster-signing-{cert,key}-file must not be set.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 03 06:47:49 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PolymorphicDomainObjectContainerExtensions.kt

     *
     * @param name the name of the domain object to be created
     * @param <U> the type of the domain object to be created
     * @return the created domain object
     * @throws [InvalidUserDataException] if a domain object with the specified name already
     * exists or the container does not support creating a domain object with the specified
     * type
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/NodeVisitor.java

     */
    @Experimental
    @Consumer
    public interface NodeVisitor {
        /**
         * Starts the visit to the specified dependency node.
         *
         * @param node the dependency node to visit
         * @return <code>true</code> to visit the specified dependency node's children, <code>false</code> to skip the
         *         specified dependency node's children and proceed to its next sibling
         */
        boolean enter(@Nonnull Node node);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Creates a matcher that matches if the examined object matches ALL of the specified matchers. allOf(Matcher<? super T>...) - Static method in class org.hamcrest.core.AllOf Creates a matcher that matches if the examined object matches ALL of the specified matchers. allOf(Matcher<? super T>, Matcher<? super T>) - Static method in class org.hamcrest.core.AllOf Creates a matcher that matches if the examined object matches ALL of the specified matchers. allOf(Matcher<? super T>, Matcher<? super T>, Matcher<?...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
Back to top