Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,065 for split3 (0.21 sec)

  1. istioctl/pkg/wait/wait_test.go

    			args:             strings.Split("--generation=2 --timeout=20ms virtual-service foo.default", " "),
    			wantException:    true,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 virtual-service foo.default", " "),
    			wantException:    false,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 VirtualService foo.default", " "),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/credentials/resource.go

    		res := strings.TrimPrefix(resourceName, KubernetesSecretTypeURI)
    		split := strings.Split(res, sep)
    		namespace := proxyNamespace
    		name := split[0]
    		if len(split) > 1 {
    			namespace = split[0]
    			name = split[1]
    		}
    		return SecretResource{ResourceType: KubernetesSecretType, Name: name, Namespace: namespace, ResourceName: resourceName, Cluster: proxyCluster}, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/JvmUtil.java

            int version = 8;
            if (javaVersion != null) {
                final String[] split = javaVersion.split("[\\._]");
                if (split.length > 0) {
                    version = Integer.parseInt(split[0]);
                    if (version == 1 && split.length > 1) {
                        version = Integer.parseInt(split[1]);
                    }
                }
            }
            return version;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. pkg/version/cobra_test.go

    			args: strings.Split("version --remote=false --short=false", " "),
    			expectedRegexp: regexp.MustCompile("version.BuildInfo{Version:\"unknown\", GitRevision:\"unknown\", " +
    				"GolangVersion:\"go1.([0-9+?(\\.)?]+).*\", " +
    				"BuildStatus:\"unknown\", GitTag:\"unknown\"}"),
    		},
    		{ // case 1 client-side only, short output
    			args:           strings.Split("version -s --remote=false", " "),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. pkg/test/echo/cmd/client/main.go

    			KeyFile:            hboneClientKey,
    			CaCertFile:         hboneCaFile,
    			InsecureSkipVerify: hboneInsecureSkipVerify,
    		}
    		for _, header := range hboneHeaders {
    			parts := strings.SplitN(header, ":", 2)
    			// require name:value format
    			if len(parts) != 2 {
    				return nil, fmt.Errorf("invalid header format: %q (want name:value)", header)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_colocate_splits.cc

      getOperation().walk([&](Operation* op) {
        if (auto split = llvm::dyn_cast<TF::SplitOp>(op)) {
          if (HasDevice(split) || split->getAttrOfType<ArrayAttr>(kClassAttr))
            return WalkResult::advance();
          for (Operation* pred : IslandPredecessors(split)) {
            if (auto colocation_classes =
                    pred->getAttrOfType<ArrayAttr>(kClassAttr)) {
              split->setAttr(kClassAttr, colocation_classes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 18:44:34 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/utilities/StringUtils.java.template

    import ${basePackagePrefix.raw}list.LinkedList;
    
    public class StringUtils {
        public static String join(LinkedList source) {
            return JoinUtils.join(source);
        }
    
        public static LinkedList split(String source) {
            return SplitUtils.split(source);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 334 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/java-utilities-library/src/main/java/org/gradle/sample/utilities/StringUtils.java

    import org.gradle.sample.list.LinkedList;
    
    public class StringUtils {
        public static String join(LinkedList source) {
            return JoinUtils.join(source);
        }
    
        public static LinkedList split(String source) {
            return SplitUtils.split(source);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 306 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/authenticationconfig/metrics/metrics_test.go

    func TestRecordAuthenticationConfigAutomaticReloadFailure(t *testing.T) {
    	expectedValue := `
    	# HELP apiserver_authentication_config_controller_automatic_reloads_total [ALPHA] Total number of automatic reloads of authentication configuration split by status and apiserver identity.
        # TYPE apiserver_authentication_config_controller_automatic_reloads_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_moved.txt

    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top