Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 624 for JOIN (4.59 sec)

  1. src/cmd/go/main.go

    			telemetry.Inc("go/subcommand:" + strings.ReplaceAll(cfg.CmdName, " ", "-") + "-" + strings.Join(args[used:], "-"))
    			help.Help(os.Stdout, append(slices.Clip(args[:used]), args[used+1:]...))
    			base.Exit()
    		}
    		helpArg := ""
    		if used > 0 {
    			helpArg += " " + strings.Join(args[:used], " ")
    		}
    		cmdName := cfg.CmdName
    		if cmdName == "" {
    			cmdName = args[0]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest_shared_test.go

    		out[cmd] = objs
    	}
    
    	return out, nil
    }
    
    // fakeApplyManifest runs istioctl install.
    func fakeApplyManifest(inFile, flags string, chartSource chartSourceType) (*ObjectSet, error) {
    	inPath := filepath.Join(testDataDir, "input", inFile+".yaml")
    	manifest, err := runManifestCommand("install", []string{inPath}, flags, chartSource, nil)
    	if err != nil {
    		return nil, fmt.Errorf("error %s: %s", err, manifest)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/syscall/mksyscall.pl

    		# growth is forbidden.
    		$text .= "//go:nosplit\n"
    	}
    
    	# Go function header.
    	my $out_decl = @out ? sprintf(" (%s)", join(', ', @out)) : "";
    	$text .= sprintf "func %s(%s)%s {\n", $func, join(', ', @in), $out_decl;
    
    	# Disable ptrace on iOS.
    	if ($darwin && $func =~ /^ptrace(Ptr)?$/) {
    		$text .= "\tif runtime.GOOS == \"ios\" {\n";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    			}
    
    			file := fmt.Sprintf("%s.key", test.certName)
    			if _, err := os.Stat(filepath.Join(outdir, file)); os.IsNotExist(err) {
    				t.Errorf("Expected file %s does not exist", file)
    			}
    
    			file = fmt.Sprintf("%s.csr", test.certName)
    			if _, err := os.Stat(filepath.Join(outdir, file)); os.IsNotExist(err) {
    				t.Errorf("Expected file %s does not exist", file)
    			}
    		})
    	}
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/token_test.go

    			token:         "abcdef.1234567890123456",
    			usages:        []string{"foo", "bar"},
    			extraGroups:   []string{"system:bootstrappers:foo"},
    			expectedError: true,
    		},
    		{
    			name:          "invalid: print join command",
    			token:         "",
    			usages:        []string{"signing", "authentication"},
    			extraGroups:   []string{"system:bootstrappers:foo"},
    			printJoin:     true,
    			expectedError: true,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_test.go

    		MetadataClientCertChain: path.Join(env.IstioSrc, "tests/testdata/certs/pilot/cert-chain.pem"),
    		MetadataClientCertKey:   path.Join(env.IstioSrc, "tests/testdata/certs/pilot/key.pem"),
    		MetadataClientRootCert:  path.Join(env.IstioSrc, "tests/testdata/certs/pilot/root-cert.pem"),
    	}
    	dir := t.TempDir()
    	ia := NewAgent(proxyConfig, &AgentOptions{
    		XdsUdsPath:            filepath.Join(dir, "XDS"),
    		DownstreamGrpcOptions: opts,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    	// Start the reconciler to fill ASW.
    	stopChan := make(chan struct{})
    	defer close(stopChan)
    	go reconciler.Run(stopChan)
    	socketPath := filepath.Join(socketDir, "plugin.sock")
    	pluginName := fmt.Sprintf("example-plugin")
    	p := pluginwatcher.NewTestExamplePlugin(pluginName, registerapi.DevicePlugin, socketPath, supportedVersions...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. pkg/volume/util/atomic_writer_test.go

    		if strings.HasPrefix(info.Name(), "..") {
    			continue
    		}
    		if info.Type()&os.ModeSymlink != 0 {
    			p := filepath.Join(targetDir, info.Name())
    			actual, err := os.Readlink(p)
    			if err != nil {
    				t.Errorf("Unable to read symlink %v: %v", p, err)
    				continue
    			}
    			if err := filepath.Walk(filepath.Join(targetDir, actual), visitor); err != nil {
    				t.Errorf("%v: unexpected error walking directory: %v", tcName, err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. src/net/net_windows_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	want := make([]string, 0)
    	for name, isup := range ifaces {
    		want = append(want, toString(name, isup))
    	}
    	slices.Sort(want)
    
    	if strings.Join(want, "/") != strings.Join(have, "/") {
    		t.Fatalf("unexpected interface list %q, want %q", have, want)
    	}
    }
    
    func netshInterfaceIPv4ShowAddress(name string, netshOutput []byte) []string {
    	// Address information is listed like:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    			"Preferred values: "+strings.Join(tlsCipherPreferredValues, ", ")+". \n"+
    			"Insecure values: "+strings.Join(tlsCipherInsecureValues, ", ")+".")
    
    	tlsPossibleVersions := cliflag.TLSPossibleVersions()
    	fs.StringVar(&s.MinTLSVersion, "tls-min-version", s.MinTLSVersion,
    		"Minimum TLS version supported. "+
    			"Possible values: "+strings.Join(tlsPossibleVersions, ", "))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
Back to top