Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 724 for Trailing (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    // followed by arbitrary uninterpreted data (which need not be separated from the final
    // numeric field by punctuation). For convenience, leading and trailing whitespace is
    // ignored, and the version can be preceded by the letter "v". See also ParseSemantic.
    func ParseGeneric(str string) (*Version, error) {
    	return parse(str, false)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. src/encoding/csv/reader.go

    			return records, nil
    		}
    		if err != nil {
    			return nil, err
    		}
    		records = append(records, record)
    	}
    }
    
    // readLine reads the next line (with the trailing endline).
    // If EOF is hit without a trailing endline, it will be omitted.
    // If some bytes were read, then the error is never [io.EOF].
    // The result is only valid until the next call to readLine.
    func (r *Reader) readLine() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        The ExecuteOp executes an operation on the specified device.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) cost(100) device("/CPU:0") "some.op"(%arg) : 1
    
        Note that the trailing number indicates the number of results.
    
        The func attrs and op attrs are placed in two separate regions.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) device("/CPU:0") "some.op"(%arg)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. src/net/netip/fuzz_test.go

    	"fe80::1%",
    	// IPv6 with a zone specifier of zero.
    	"::ffff:0:0%0",
    	// 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: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  5. src/math/bits/bits.go

    }
    
    // TrailingZeros returns the number of trailing zero bits in x; the result is [UintSize] for x == 0.
    func TrailingZeros(x uint) int {
    	if UintSize == 32 {
    		return TrailingZeros32(uint32(x))
    	}
    	return TrailingZeros64(uint64(x))
    }
    
    // TrailingZeros8 returns the number of trailing zero bits in x; the result is 8 for x == 0.
    func TrailingZeros8(x uint8) int {
    	return int(ntz8tab[x])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                /*
                 * Samba has a tendency to return pathConsumed values so that they consume a trailing slash of the
                 * requested path. Normalize this here.
                 */
                if ( reqPath.charAt(consumed - 1) == '\\' ) {
                    if ( log.isDebugEnabled() ) {
                        log.debug("Server consumed trailing slash of request path, adjusting");
                    }
                    dr.pathConsumed--;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  7. security/pkg/pki/util/crypto_test.go

    -----END CERTIFICATE-----`
    )
    
    var (
    	certChainValid             = loadPEMFile("../testdata/cert-chain.pem")
    	certChainValidTrailingLine = loadPEMFile("../testdata/cert-chain-trailing-line.pem")
    )
    
    func TestParsePemEncodedCertificate(t *testing.T) {
    	testCases := map[string]struct {
    		errMsg        string
    		pem           string
    		publicKeyAlgo x509.PublicKeyAlgorithm
    	}{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/TreeFormatterTest.groovy

            formatter.endChildren()
    
            then:
            formatter.toString() == toPlatformLineSeparators("""${longText}:
      - ${longText}""")
        }
    
        def "formats node with trailing '.'"() {
            when:
            formatter.node("Some things.")
            formatter.startChildren()
            formatter.node("child 1.")
            formatter.endChildren()
            formatter.node("Some other things.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  9. cmd/utils_test.go

    		{
    			path:   "/bucket/object/1/",
    			bucket: "bucket",
    			object: "object/1/",
    		},
    		// Test case 5 object has many trailing separators.
    		{
    			path:   "/bucket/object/1///",
    			bucket: "bucket",
    			object: "object/1///",
    		},
    		// Test case 6 object has only trailing separators.
    		{
    			path:   "/bucket/object///////",
    			bucket: "bucket",
    			object: "object///////",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    var NamespaceSubResourcesForTest = sets.NewString(namespaceSubresources.List()...)
    
    type RequestInfoFactory struct {
    	APIPrefixes          sets.String // without leading and trailing slashes
    	GrouplessAPIPrefixes sets.String // without leading and trailing slashes
    }
    
    // TODO write an integration test against the swagger doc to test the RequestInfo and match up behavior to responses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top