Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,466 for JOIN (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractCommandLineOrderTaskIntegrationTest.groovy

                        ${dependencies.collect {'dependsOn ' + dependencyFor(it) }.join('\n\t\t\t\t')}
                        ${finalizers.collect { 'finalizedBy ' + dependencyFor(it) }.join('\n\t\t\t\t')}
                        ${mustRunAfter.collect { 'mustRunAfter ' + dependencyFor(it) }.join('\n\t\t\t\t')}
                        ${shouldRunAfter.collect { 'shouldRunAfter ' + dependencyFor(it) }.join('\n\t\t\t\t')}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/pgo_inl_test.go

    	if err != nil {
    		t.Fatalf("error getting wd: %v", err)
    	}
    	srcDir := filepath.Join(wd, "testdata/pgo/inline")
    
    	// Copy the module to a scratch location so we can add a go.mod.
    	dir := t.TempDir()
    
    	for _, file := range []string{"inline_hot.go", "inline_hot_test.go", profFile} {
    		if err := copyFile(filepath.Join(dir, file), filepath.Join(srcDir, file)); err != nil {
    			t.Fatalf("error copying %s: %v", file, err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/showjoincommand.go

    func NewShowJoinCommandPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:         "show-join-command",
    		Short:        "Show the join command for control-plane and worker node",
    		Run:          showJoinCommand,
    		Dependencies: []string{"bootstrap-token", "upload-certs"},
    	}
    }
    
    // showJoinCommand prints the join command after all the phases in init have finished
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/test/cmd/join_test.go

    	}
    
    	kubeadmPath := getKubeadmPath()
    	for _, rt := range initTest {
    		t.Run(rt.name, func(t *testing.T) {
    			_, _, _, actual := RunCmd(kubeadmPath, "join", rt.args, "--ignore-preflight-errors=all")
    			if (actual == nil) != rt.expected {
    				t.Errorf(
    					"failed CmdJoinConfig running 'kubeadm join %s' with an error: %v\n\texpected: %t\n\t  actual: %t",
    					rt.args,
    					actual,
    					rt.expected,
    					(actual == nil),
    				)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 08 21:47:16 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  5. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/AbstractPropertyUpgradesBinaryCompatibilityCrossVersionSpec.groovy

            """
    
            file("producer/src/main/groovy/SomePlugin.groovy") << """
                ${getDefaultImports().collect { "import " + it }.join("\n")}
                ${additionalImportedClasses().collect { "import " + it.name }.join("\n")}
                ${additionalImports().collect { "import " + it }.join("\n")}
    
                class SomePlugin implements Plugin<Project> {
                    void apply(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/runlit.site.cfg.py

    # tests and intended to only persist temporarily (b/136126535).
    # pylint: disable=undefined-variable
    config.llvm_tools_dir = os.path.join(external_srcdir, 'llvm-project', 'llvm')
    config.mlir_obj_root = os.path.join(real_test_srcdir)
    config.mlir_tools_dir = os.path.join(external_srcdir, 'llvm-project', 'mlir')
    # TODO(jpienaar): Replace with suffices in build rule.
    config.suffixes = ['.td', '.mlir', '.pbtxt']
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/path/example_test.go

    	fmt.Println(path.IsAbs("/dev/null"))
    	// Output: true
    }
    
    func ExampleJoin() {
    	fmt.Println(path.Join("a", "b", "c"))
    	fmt.Println(path.Join("a", "b/c"))
    	fmt.Println(path.Join("a/b", "c"))
    
    	fmt.Println(path.Join("a/b", "../../../xyz"))
    
    	fmt.Println(path.Join("", ""))
    	fmt.Println(path.Join("a", ""))
    	fmt.Println(path.Join("", "a"))
    
    	// Output:
    	// a/b/c
    	// a/b/c
    	// a/b/c
    	// ../xyz
    	//
    	// a
    	// a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 19 00:10:22 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/cover/cfg_test.go

    	tpath := filepath.Join("testdata", "pkgcfg")
    	pkgfiles := []string{filepath.Join(tpath, "noFuncsNoTests", "nfnt.go")}
    	pname := "noFuncsNoTests"
    	mode := "count"
    	gran := "perblock"
    	ppath := "cfg/" + pname
    	tag := mode + "_" + gran
    	instdir := filepath.Join(dir, "inst2")
    	if err := os.Mkdir(instdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mdir := filepath.Join(dir, "meta2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent_test.go

    			a.ProxyConfig.ProxyMetadata = map[string]string{}
    			a.ProxyConfig.ProxyMetadata[MetadataClientCertChain] = filepath.Join(dir, "cert-chain.pem")
    			a.ProxyConfig.ProxyMetadata[MetadataClientCertKey] = filepath.Join(dir, "key.pem")
    			a.ProxyConfig.ProxyMetadata[MetadataClientRootCert] = filepath.Join(dir, "root-cert.pem")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. src/cmd/cover/cover_test.go

    	testenv.MustHaveGoRun(t)
    	dir := tempDir(t)
    
    	t.Parallel()
    
    	htmlUDir := filepath.Join(dir, "htmlunformatted")
    	htmlU := filepath.Join(htmlUDir, "htmlunformatted.go")
    	htmlUTest := filepath.Join(htmlUDir, "htmlunformatted_test.go")
    	htmlUProfile := filepath.Join(htmlUDir, "htmlunformatted.cov")
    	htmlUHTML := filepath.Join(htmlUDir, "htmlunformatted.html")
    
    	if err := os.Mkdir(htmlUDir, 0777); err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top