Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,016 for JOIN (1.29 sec)

  1. pkg/kubelet/config/file_linux_test.go

    	}
    
    	fileName := filepath.Join(dir, name)
    	if err := writeFile(fileName, []byte(fileContents)); err != nil {
    		t.Fatalf("unable to write test file %#v", err)
    	}
    	return fileName
    }
    
    func createSymbolicLink(link, target, name string, t *testing.T) string {
    	linkName := filepath.Join(link, name)
    	linkedFile := filepath.Join(target, name)
    
    	err := os.Symlink(linkedFile, linkName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/fsys/fsys_test.go

    		t.Fatal(err)
    	}
    	cwd = filepath.Join(t.TempDir(), "root")
    	if err := os.Mkdir(cwd, 0777); err != nil {
    		t.Fatal(err)
    	}
    	if err := os.Chdir(cwd); err != nil {
    		t.Fatal(err)
    	}
    	t.Cleanup(func() {
    		if err := os.Chdir(prevwd); err != nil {
    			t.Fatal(err)
    		}
    	})
    
    	a := txtar.Parse([]byte(config))
    	for _, f := range a.Files {
    		name := filepath.Join(cwd, f.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/debug/buildinfo/buildinfo_test.go

    		gopathDir := t.TempDir()
    		pkgDir := filepath.Join(gopathDir, "src/example.com/m")
    		if err := os.MkdirAll(pkgDir, 0777); err != nil {
    			t.Fatal(err)
    		}
    		helloPath := filepath.Join(pkgDir, "hello.go")
    		helloData := []byte("package main\nfunc main() {}\n")
    		if err := os.WriteFile(helloPath, helloData, 0666); err != nil {
    			t.Fatal(err)
    		}
    		outPath := filepath.Join(gopathDir, path.Base(t.Name()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. tools/docker-builder/main.go

    	os, arch, _ := strings.Cut(a, "/")
    	return map[string]string{
    		"TARGET_OS":        os,
    		"TARGET_ARCH":      arch,
    		"TARGET_OUT":       filepath.Join(testenv.IstioSrc, "out", fmt.Sprintf("%s_%s", os, arch)),
    		"TARGET_OUT_LINUX": filepath.Join(testenv.IstioSrc, "out", fmt.Sprintf("linux_%s", arch)),
    	}
    }
    
    // RunCommand runs a command for the repo, with standard environment variables set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. pkg/api/v1/persistentvolume/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPVSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                    create("print") {
                      doLast {
                        println "containerThings: ${$.container.things.collect { it.name + ":" + it.value }.sort().join(",")}"
                        println "things: ${$.things.collect { it.name + ":" + it.value }.sort().join(",")}"
                      }
                    }
                  }
                }
            '''
    
            then:
            succeeds "print"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/envcmd/env.go

    		return nil
    	}
    	cmd := b.GccCmd(".", "")
    
    	join := func(s []string) string {
    		q, err := quoted.Join(s)
    		if err != nil {
    			return strings.Join(s, " ")
    		}
    		return q
    	}
    
    	ret := []cfg.EnvVar{
    		// Note: Update the switch in runEnv below when adding to this list.
    		{Name: "CGO_CFLAGS", Value: join(cflags)},
    		{Name: "CGO_CPPFLAGS", Value: join(cppflags)},
    		{Name: "CGO_CXXFLAGS", Value: join(cxxflags)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. pkg/controller/resourcequota/resource_quota_controller_test.go

    					v1.ResourceCPU:    resource.MustParse("0"),
    					v1.ResourceMemory: resource.MustParse("0"),
    					v1.ResourcePods:   resource.MustParse("0"),
    				},
    			},
    			expectedActionSet: sets.NewString(
    				strings.Join([]string{"update", "resourcequotas", "status"}, "-"),
    			),
    			items: newTestPods(),
    		},
    		"matching-best-effort-scoped-quota": {
    			gvr: v1.SchemeGroupVersion.WithResource("pods"),
    			quota: v1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	kind: JoinConfiguration
    //
    // To print the defaults for "init" and "join" actions use the following commands:
    //
    //	kubeadm config print init-defaults
    //	kubeadm config print join-defaults
    //
    // The list of configuration types that must be included in a configuration file depends by the action you are
    // performing (init or join) and by the configuration options you are going to use (defaults or advanced customization).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/marshal_test.go

    			name:         "FooBar",
    			fileContents: bytes.Join([][]byte{files["foo"], files["bar"]}, []byte(constants.YAMLDocumentSeparator)),
    			gvkmap: kubeadmapi.DocumentMap{
    				{Group: "foo.k8s.io", Version: "v1", Kind: "Foo"}: files["foo"],
    				{Group: "bar.k8s.io", Version: "v2", Kind: "Bar"}: files["bar"],
    			},
    		},
    		{
    			name:         "FooTwiceInvalid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top