Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for tfsplits (0.39 sec)

  1. src/os/exec_windows.go

    }
    
    // appendBSBytes appends n '\\' bytes to b and returns the resulting slice.
    func appendBSBytes(b []byte, n int) []byte {
    	for ; n > 0; n-- {
    		b = append(b, '\\')
    	}
    	return b
    }
    
    // readNextArg splits command line string cmd into next
    // argument and command line remainder.
    func readNextArg(cmd string) (arg []byte, rest string) {
    	var b []byte
    	var inquote bool
    	var nslash int
    	for ; len(cmd) > 0; cmd = cmd[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

        // Note that all tests use a relative path to the script because its absolute path may contain
        // spaces and it breaks logic String.execute which splits the given string at spaces without
        // any options to escape the space.
        ShellScript baseScript = ShellScript.builder().printEnvironmentVariable('FOOBAR').printWorkingDir().writeTo(testDirectory, "test")
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/links.go

    // The logic is the same as the go/doc/comment package.
    func isLinkAdjacentRune(r rune) bool {
    	return unicode.IsPunct(r) || r == ' ' || r == '\t' || r == '\n'
    }
    
    // splitRef splits s into a package and possibly a symbol.
    // Examples:
    //
    //	splitRef("math.Max") => ("math", "Max", true)
    //	splitRef("bytes.Buffer.String") => ("bytes", "Buffer.String", true)
    //	splitRef("math") => ("math", "", true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. cmd/s3-zip-handlers.go

    	archiveInfoMetadataKey = ReservedMetadataPrefixLower + "archive-info" // "x-minio-internal-archive-info"
    
    	// Peek into a zip archive
    	xMinIOExtract = "x-minio-extract"
    )
    
    // splitZipExtensionPath splits the S3 path to the zip file and the path inside the zip:
    //
    //	e.g  /path/to/archive.zip/backup-2021/myimage.png => /path/to/archive.zip, backup/myimage.png
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            return callable.call()
        }
    }
    
    
    private
    fun Project.loadScenariosFromFile(testProject: String): List<String> {
        val scenarioFile = repoRoot().file("performance-test-splits/include-$testProject-performance-scenarios.csv").asFile
        return if (scenarioFile.isFile)
            scenarioFile.readLines(StandardCharsets.UTF_8)
                .filter { it.isNotEmpty() }
                .map {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. cmd/test-utils_test.go

    	encodedResource := req.URL.RawPath
    	encodedQuery := req.URL.RawQuery
    	if encodedResource == "" {
    		splits := strings.SplitN(req.URL.Path, "?", 2)
    		encodedResource = splits[0]
    		if len(splits) == 2 {
    			encodedQuery = splits[1]
    		}
    	}
    
    	unescapedQueries, err := unescapeQueries(encodedQuery)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. cmd/iam-object-store.go

    	policyDBPrefix          = "policydb/"
    	policyDBUsersListKey    = "policydb/users/"
    	policyDBSTSUsersListKey = "policydb/sts-users/"
    	policyDBGroupsListKey   = "policydb/groups/"
    )
    
    // splitPath splits a path into a top-level directory and a child item. The
    // parent directory retains the trailing slash.
    func splitPath(s string, lastIndex bool) (string, string) {
    	var i int
    	if lastIndex {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. src/net/netip/netip.go

    // Addr returns p's IP address.
    func (p AddrPort) Addr() Addr { return p.ip }
    
    // Port returns p's port.
    func (p AddrPort) Port() uint16 { return p.port }
    
    // splitAddrPort splits s into an IP address string and a port
    // string. It splits strings shaped like "foo:bar" or "[foo]:bar",
    // without further validating the substrings. v6 indicates whether the
    // ip string should parse as an IPv6 address or an IPv4 address, in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        SameOperandsAndResultsScale]> {
      let summary = "Splits a tensor into `num_split` tensors along one dimension.";
    
      let description = [{
        Splits the `value` tensor along `split_dim` into a number of sub-tensors
        with same shape as the original one, except for `split_dim`. The grouping
        of the resultant sub-tensors is decided by `size-splits`. Same as tf.SplitV.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Computes and applies all necessary control dependencies based on side effect analysis.";
      let description = [{
        This pass is intended to run after the split_into_island_per_op
        pass. That pass splits up multi-op islands into multiple individual islands
        wrapping a single op without applying any control deps between the new
        islands. So, this pass is needed in order to make preservation of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top