Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,029 for JOIN (0.05 sec)

  1. cmd/kubeadm/app/cmd/token.go

    	createCmd.Flags().BoolVar(&printJoinCommand,
    		"print-join-command", false, "Instead of printing only the token, print the full 'kubeadm join' flag needed to join the cluster using the token.")
    	createCmd.Flags().StringVar(&certificateKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_getters.go

    	return filepath.Join(kl.getRootDir(), config.DefaultKubeletPluginsDirName)
    }
    
    // getPluginsRegistrationDir returns the full path to the directory under which
    // plugins socket should be placed to be registered.
    // More information is available about plugin registration in the pluginwatcher
    // module
    func (kl *Kubelet) getPluginsRegistrationDir() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. pkg/volume/volume_linux_test.go

    				}
    
    				// create a subdirectory with invalid permissions
    				rogueDir := filepath.Join(path, "roguedir")
    				nosgidPerm := info.Mode() &^ os.ModeSetgid
    				err = os.Mkdir(rogueDir, nosgidPerm)
    				if err != nil {
    					return err
    				}
    				return nil
    			},
    			assertFunc: func(path string) error {
    				rogueDir := filepath.Join(path, "roguedir")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/gcimporter_test.go

    	}
    	objname := basename + ".o"
    	outname := filepath.Join(outdirname, objname)
    
    	importcfgfile := os.DevNull
    	if len(packageFiles) > 0 || len(pkgImports) > 0 {
    		importcfgfile = filepath.Join(outdirname, basename) + ".importcfg"
    		testenv.WriteImportcfg(t, importcfgfile, packageFiles, pkgImports...)
    	}
    
    	pkgpath := path.Join("testdata", basename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Joiner.java

       */
      public final String join(Iterable<? extends @Nullable Object> parts) {
        return join(parts.iterator());
      }
    
      /**
       * Returns a string containing the string representation of each of {@code parts}, using the
       * previously configured separator between each.
       *
       * @since 11.0
       */
      public final String join(Iterator<? extends @Nullable Object> parts) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  6. src/cmd/covdata/tool_test.go

    	emitFile(t, src, insrc)
    	indep := filepath.Join("testdata", "dep.go")
    	dep := filepath.Join(depdir, "dep.go")
    	emitFile(t, dep, indep)
    
    	// Emit go.mod.
    	mod := filepath.Join(subdir, "go.mod")
    	modsrc := "\nmodule " + mainPkgPath + "\n\ngo 1.19\n"
    	if err := os.WriteFile(mod, []byte(modsrc), 0666); err != nil {
    		t.Fatal(err)
    	}
    	exepath := filepath.Join(subdir, prog+".exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    	}{
    		"pending-finalize": {
    			testNamespace: testNamespacePendingFinalize,
    			kubeClientActionSet: sets.NewString(
    				strings.Join([]string{"get", "namespaces", ""}, "-"),
    				strings.Join([]string{"create", "namespaces", "finalize"}, "-"),
    				strings.Join([]string{"list", "pods", ""}, "-"),
    				strings.Join([]string{"update", "namespaces", "status"}, "-"),
    			),
    			metadataClientActionSet: metadataClientActionSet,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  8. tools/docker-builder/docker.go

    		if alias != "" {
    			if err := Copy(filepath.Join(root, name+".tar.gz"), filepath.Join(root, alias+".tar.gz")); err != nil {
    				return err
    			}
    		}
    	}
    
    	return nil
    }
    
    func RunBake(args Args) error {
    	out := filepath.Join(testenv.LocalOut, "dockerx_build", "docker-bake.json")
    	_ = os.MkdirAll(filepath.Join(testenv.LocalOut, "release", "docker"), 0o755)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/cshared_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(tmpdir)
    
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "go.mod"), "go.mod")
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "libgo", "libgo.go"), filepath.Join("libgo", "libgo.go"))
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "p", "p.go"), filepath.Join("p", "p.go"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. cni/pkg/install/cniconfig_test.go

    					// Write delayed CNI config file
    					data, err := os.ReadFile(filepath.Join("testdata", c.delayedConfName))
    					if err != nil {
    						t.Fatal(err)
    					}
    					err = os.WriteFile(filepath.Join(tempDir, c.delayedConfName), data, 0o644)
    					if err != nil {
    						t.Fatal(err)
    					}
    					t.Logf("delayed write to %v", filepath.Join(tempDir, c.delayedConfName))
    				} else if len(c.expectedConfName) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top