Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for forced (0.13 sec)

  1. src/regexp/syntax/parse.go

    		for _, re := range p.stack {
    			p.checkSize(re)
    		}
    	}
    
    	if p.calcSize(re, true) > maxSize {
    		panic(ErrLarge)
    	}
    }
    
    func (p *parser) calcSize(re *Regexp, force bool) int64 {
    	if !force {
    		if size, ok := p.size[re]; ok {
    			return size
    		}
    	}
    
    	var size int64
    	switch re.Op {
    	case OpLiteral:
    		size = int64(len(re.Rune))
    	case OpCapture, OpStar:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                if (org == null) {
                    org = getMd().getModuleRevisionId().getOrganisation();
                }
                boolean force = Boolean.parseBoolean(substitute(attributes.getValue("force")));
                boolean changing = Boolean.parseBoolean(substitute(attributes.getValue("changing")));
    
                String transitiveValue = substitute(attributes.getValue("transitive"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  3. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedXML: {
    		Code:           "MalformedXML",
    		Description:    "The XML you provided was not well-formed or did not validate against our published schema.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingContentLength: {
    		Code:           "MissingContentLength",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  4. src/cmd/compile/internal/syntax/parser.go

    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    // If x is just a name, the result is (name, nil). If the split succeeds,
    // the result is (name, expr). Otherwise the result is (nil, x).
    // Examples:
    //
    //	x           force    name    expr
    //	------------------------------------
    //	P*[]int     T/F      P       *[]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

         * is here to prove that coercion works properly whenever attributes are sourced from a component metadata
         * supplier.
         */
        def "user provided attributes are properly coerced to typed attributes"() {
            given:
            withSupplierWithAttributes([
                'projectA:1.2': [:],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	out.CleanupTmpDir = in.CleanupTmpDir
    	out.CertificatesDir = in.CertificatesDir
    	out.CRISocket = in.CRISocket
    	out.DryRun = in.DryRun
    	out.Force = in.Force
    	out.IgnorePreflightErrors = *(*[]string)(unsafe.Pointer(&in.IgnorePreflightErrors))
    	out.SkipPhases = *(*[]string)(unsafe.Pointer(&in.SkipPhases))
    	out.UnmountFlags = *(*[]string)(unsafe.Pointer(&in.UnmountFlags))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    // If x is just a name, the result is (name, nil). If the split succeeds,
    // the result is (name, expr). Otherwise the result is (nil, x).
    // Examples:
    //
    //	x           force    name    expr
    //	------------------------------------
    //	P*[]int     T/F      P       *[]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  8. src/crypto/x509/x509.go

    		// Force revocation times to UTC per RFC 5280.
    		revokedCerts = make([]pkix.RevokedCertificate, len(template.RevokedCertificates))
    		for i, rc := range template.RevokedCertificates {
    			rc.RevocationTime = rc.RevocationTime.UTC()
    			revokedCerts[i] = rc
    		}
    	} else {
    		// Convert the ReasonCode field to a proper extension, and force revocation
    		// times to UTC per RFC 5280.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Preconditions.java

       *
       * @param expression a boolean expression
       * @param errorMessageTemplate a template for the exception message should the check fail. The
       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	ctxt.Libdir = append(ctxt.Libdir, arg)
    }
    
    /*
     * Unix doesn't like it when we write to a running (or, sometimes,
     * recently run) binary, so remove the output file before writing it.
     * On Windows 7, remove() can force a subsequent create() to fail.
     * S_ISREG() does not exist on Plan 9.
     */
    func mayberemoveoutfile() {
    	if fi, err := os.Lstat(*flagOutfile); err == nil && !fi.Mode().IsRegular() {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top