Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 313 for SplitV (0.13 sec)

  1. callbacks/preload.go

    		for _, join := range joins {
    			if _, ok := relationships.Relations[join]; ok && name == join {
    				joined = true
    				continue
    			}
    			joinNames := strings.SplitN(join, ".", 2)
    			if len(joinNames) == 2 {
    				if _, ok := relationships.Relations[joinNames[0]]; ok && name == joinNames[0] {
    					joined = true
    					nestedJoins = append(nestedJoins, joinNames[1])
    				}
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/net/smtp/smtp_test.go

    		actualcmds := cmdbuf.String()
    		client := strings.Join(strings.Split(basicClient, "\n"), "\r\n")
    		if client != actualcmds {
    			t.Fatalf("Got:\n%s\nExpected:\n%s", actualcmds, client)
    		}
    	})
    }
    
    func TestNewClient(t *testing.T) {
    	server := strings.Join(strings.Split(newClientServer, "\n"), "\r\n")
    	client := strings.Join(strings.Split(newClientClient, "\n"), "\r\n")
    
    	var cmdbuf strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. src/net/net_windows_test.go

    			continue
    		}
    		if len(line) == 0 {
    			break
    		}
    		if bytes.Contains(line, []byte("Subnet Prefix:")) {
    			f := bytes.Split(line, []byte{':'})
    			if len(f) == 2 {
    				f = bytes.Split(f[1], []byte{'('})
    				if len(f) == 2 {
    					f = bytes.Split(f[0], []byte{'/'})
    					if len(f) == 2 {
    						subnetprefix = string(bytes.TrimSpace(f[1]))
    						if addr != "" && subnetprefix != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pkg/security/security.go

    		filesString := strings.TrimPrefix(resource, "file-cert:")
    		split := strings.Split(filesString, ResourceSeparator)
    		if len(split) != 2 {
    			return SdsCertificateConfig{}, false
    		}
    		return SdsCertificateConfig{split[0], split[1], ""}, true
    	} else if strings.HasPrefix(resource, "file-root:") {
    		filesString := strings.TrimPrefix(resource, "file-root:")
    		split := strings.Split(filesString, ResourceSeparator)
    
    		if len(split) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. src/cmd/doc/main.go

    		if !ok {
    			return "", false
    		}
    		if d.importPath == pkg || strings.HasSuffix(d.importPath, pkgSuffix) {
    			return d.dir, true
    		}
    	}
    }
    
    var buildCtx = build.Default
    
    // splitGopath splits $GOPATH into a list of roots.
    func splitGopath() []string {
    	return filepath.SplitList(buildCtx.GOPATH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. internal/logger/logger.go

    	// Add all possible GOPATH paths into trimStrings
    	// Split GOPATH depending on the OS type
    	if runtime.GOOS == "windows" {
    		pathSeparator = ";"
    	}
    
    	goPathList = strings.Split(goPath, pathSeparator)
    	goRootList = strings.Split(goRoot, pathSeparator)
    	defaultgoPathList = strings.Split(build.Default.GOPATH, pathSeparator)
    	defaultgoRootList = strings.Split(build.Default.GOROOT, pathSeparator)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            def queryService = createQueryServiceWithInstallations(
                ["8.hs-amazon", "8.j9-international business machines corporation"],
                null,
                version -> version.split("\\.")[0],
                version -> version.split("-")[1]
            )
    
            when:
            def filter = createSpec(JavaLanguageVersion.of(8), JvmVendorSpec.IBM)
            def toolchain = queryService.findMatchingToolchain(filter)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. cmd/update.go

    		}
    	}
    
    	return string(contentBytes), nil
    }
    
    func releaseInfoToReleaseTime(releaseInfo string) (releaseTime time.Time, err error) {
    	// Split release of style minio.RELEASE.2019-08-21T19-40-07Z.<hotfix>
    	nfields := strings.SplitN(releaseInfo, ".", 2)
    	if len(nfields) != 2 {
    		err = fmt.Errorf("Unknown release information `%s`", releaseInfo)
    		return releaseTime, err
    	}
    	if nfields[0] != "minio" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-gpu.mlir

      %0:4 = "tfl.split"(%arg0, %arg1) {num_splits = 4 : i32, tac.device = "CPU"} : (tensor<i32>, tensor<1x8x8x1024xf32>) -> (tensor<*xf32>, tensor<*xf32>, tensor<*xf32>, tensor<*xf32>)
      func.return %0#0, %0#1, %0#3 : tensor<*xf32>, tensor<*xf32>, tensor<*xf32>
    }
    
    // CHECK-LABEL: @unrollSplitUnknownRankResults
    // CHECK-NOT: "tfl.slice"
    // CHECK: "tfl.split"
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    			if b64, err := base64.RawURLEncoding.DecodeString(uploadIDDir); err == nil {
    				if split := strings.Split(string(b64), "x"); len(split) == 2 {
    					t, err := strconv.ParseInt(split[1], 10, 64)
    					if err == nil {
    						modTime = time.Unix(0, t)
    					}
    				}
    			}
    			// Fallback for older uploads without time in the ID.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top