Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for Trailing (0.13 sec)

  1. pkg/apis/certificates/validation/validation_test.go

    MnVCuBwfwDXCAiEAw/1TA+CjPq9JC5ek1ifR0FybTURjeQqYkKpve1d?????????
    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	invalidCertificateEmptyPEM = []byte(`
    Leading non-PEM content
    -----BEGIN CERTIFICATE-----
    -----END CERTIFICATE-----
    Trailing non-PEM content
    `)
    
    	// first character is invalid
    	invalidCertificateNonASN1Data = []byte(`
    Leading non-PEM content
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  2. src/time/format.go

    	stdNumColonSecondsTZ                           // "-07:00:00"
    	stdFracSecond0                                 // ".0", ".00", ... , trailing zeros included
    	stdFracSecond9                                 // ".9", ".99", ..., trailing zeros omitted
    
    	stdNeedDate       = 1 << 8             // need month, day, year
    	stdNeedClock      = 2 << 8             // need hour, minute, second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    			Objects: []ObjectInfo{
    				{Name: "temporary/0/"},
    			},
    		},
    		// ListObjectsResult-34:
    		//    * Listing with marker > last object should return empty
    		//    * Listing an object with a trailing slash and '/' delimiter
    		34: {
    			IsTruncated: false,
    			Objects:     []ObjectInfo{},
    		},
    		// ListObjectsResult-35 list with custom uncommon delimiter
    		35: {
    			IsTruncated: false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    			return nil, errors.New("x509: failed to parse public key (use ParsePKCS1PublicKey instead for this key format)")
    		}
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, errors.New("x509: trailing data after ASN.1 of public-key")
    	}
    	return parsePublicKey(&pki)
    }
    
    func marshalPublicKey(pub any) (publicKeyBytes []byte, publicKeyAlgorithm pkix.AlgorithmIdentifier, err error) {
    	switch pub := pub.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	}
    	return "gcc"
    }
    
    // rmworkdir deletes the work directory.
    func rmworkdir() {
    	if vflag > 1 {
    		errprintf("rm -rf %s\n", workdir)
    	}
    	xremoveall(workdir)
    }
    
    // Remove trailing spaces.
    func chomp(s string) string {
    	return strings.TrimRight(s, " \t\r\n")
    }
    
    // findgoversion determines the Go version to use in the version string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    		"fe80:tail:scal:e::",
    		// IPv6 with a zone delimiter but no zone.
    		"fe80::1%",
    		// IPv6 (without ellipsis) with too many fields for trailing embedded IPv4.
    		"ffff:ffff:ffff:ffff:ffff:ffff:ffff:192.168.140.255",
    		// IPv6 (with ellipsis) with too many fields for trailing embedded IPv4.
    		"ffff::ffff:ffff:ffff:ffff:ffff:ffff:192.168.140.255",
    		// IPv6 with invalid embedded IPv4.
    		"::ffff:192.168.140.bad",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. src/go/parser/parser.go

    		if p.tok == token.ELLIPSIS {
    			len = &ast.Ellipsis{Ellipsis: p.pos}
    			p.next()
    		} else if p.tok != token.RBRACK {
    			len = p.parseRhs()
    		}
    		p.exprLev--
    	}
    	if p.tok == token.COMMA {
    		// Trailing commas are accepted in type parameter
    		// lists but not in array type declarations.
    		// Accept for better error handling but complain.
    		p.error(p.pos, "unexpected comma; expecting ]")
    		p.next()
    	}
    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. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name:      "discovery url same as issuer url, with trailing slash",
    			issuerURL: "https://issuer-url",
    			in:        "https://issuer-url/",
    			want:      `issuer.discoveryURL: Invalid value: "https://issuer-url/": discoveryURL must be different from URL`,
    		},
    		{
    			name:      "discovery url same as issuer url, with multiple trailing slashes",
    			issuerURL: "https://issuer-url",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  9. cmd/bucket-handlers.go

    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    	if checksum != nil && checksum.Type.Trailing() {
    		// Not officially supported in POST requests.
    		apiErr := errorCodes.ToAPIErr(ErrMalformedPOSTRequest)
    		apiErr.Description = fmt.Sprintf("%s (%v)", apiErr.Description, errors.New("Trailing checksums not available for POST operations"))
    		writeErrorResponse(ctx, w, apiErr, r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * These two URLs are semantically identical, but `java.net.URI` disagrees:
     *
     *  * http://host:80/
     *
     *  * http://host
     *
     * Both the unnecessary port specification (`:80`) and the absent trailing slash (`/`) cause URI to
     * bucket the two URLs separately. This harms URI's usefulness in collections. Any application that
     * stores information-per-URL will need to either canonicalize manually, or suffer unnecessary
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top