Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 971 for JOIN (0.04 sec)

  1. pkg/kubelet/cm/cgroup_manager_linux.go

    	for key, val := range m.subsystems.MountPoints {
    		cgroupPaths[key] = path.Join(val, cgroupFsAdaptedName)
    	}
    	return cgroupPaths
    }
    
    // buildCgroupUnifiedPath builds a path to the specified name.
    func (m *cgroupManagerImpl) buildCgroupUnifiedPath(name CgroupName) string {
    	cgroupFsAdaptedName := m.Name(name)
    	return path.Join(cmutil.CgroupRoot, cgroupFsAdaptedName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modcmd/vendor.go

    	}
    	_, pkgs := modload.LoadPackages(ctx, loadOpts, "all")
    
    	var vdir string
    	switch {
    	case filepath.IsAbs(vendorO):
    		vdir = vendorO
    	case vendorO != "":
    		vdir = filepath.Join(base.Cwd(), vendorO)
    	default:
    		vdir = filepath.Join(modload.VendorDir())
    	}
    	if err := os.RemoveAll(vdir); err != nil {
    		base.Fatal(err)
    	}
    
    	modpkgs := make(map[module.Version][]string)
    	for _, pkg := range pkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

         *
         * <pre>
         * expect:
         * join(",", new Object[]{"a"}) == "a"
         * join(",", new Object[]{"a", "b", "c"}) == "a,b,c"
         * join(",", new Object[]{}) == ""
         * </pre>
         *
         * The {@code separator} must not be null and {@code objects} must not be null.
         *
         * @param separator The string by which to join each string representation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers_test.go

    		if len(missing) > 0 {
    			t.Errorf("the following fields were expected, but missing from the result:\n%s", strings.Join(sets.List(missing), "\n"))
    		}
    		if len(unexpected) > 0 {
    			t.Errorf("the following fields were in the result, but unexpected:\n%s", strings.Join(sets.List(unexpected), "\n"))
    		}
    	}
    }
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/shared_test.go

    	}
    	for _, pkg := range pkgRoots {
    		gorootDirs = append(gorootDirs, filepath.Join("src", pkg))
    	}
    
    	for _, dir := range gorootDirs {
    		if testing.Verbose() {
    			fmt.Fprintf(os.Stderr, "+ cp -r %s %s\n", filepath.Join(oldGOROOT, dir), filepath.Join(goroot, dir))
    		}
    		if err := cgotest.OverlayDir(filepath.Join(goroot, dir), filepath.Join(oldGOROOT, dir)); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  6. cmd/signature-v2.go

    		if !strings.HasPrefix(lkey, "x-amz-") {
    			continue
    		}
    		keys = append(keys, lkey)
    		keyval[lkey] = strings.Join(headers[key], ",")
    	}
    	sort.Strings(keys)
    	var canonicalHeaders []string
    	for _, key := range keys {
    		canonicalHeaders = append(canonicalHeaders, key+":"+keyval[key])
    	}
    	return strings.Join(canonicalHeaders, "\n")
    }
    
    // Return canonical resource string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    			var fileNames []string
    			if m.BuildID != "" {
    				fileNames = []string{filepath.Join(path, m.BuildID, baseName)}
    				if matches, err := filepath.Glob(filepath.Join(path, m.BuildID, "*")); err == nil {
    					fileNames = append(fileNames, matches...)
    				}
    				fileNames = append(fileNames, filepath.Join(path, noVolumeFile, m.BuildID)) // perf path format
    				// Llvm buildid protocol: the first two characters of the build id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/path/filepath/path.go

    func Split(path string) (dir, file string) {
    	return filepathlite.Split(path)
    }
    
    // Join joins any number of path elements into a single path,
    // separating them with an OS specific [Separator]. Empty elements
    // are ignored. The result is Cleaned. However, if the argument
    // list is empty or all its elements are empty, Join returns
    // an empty string.
    // On Windows, the result will only be a UNC path if the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/testing/testserver.go

    		// write the key to disk
    		privateKeyPath := filepath.Join(s.SecureServing.ServerCert.CertDirectory, "misty-crt.key")
    		encodedPrivateKey, err := keyutil.MarshalPrivateKeyToPEM(signer)
    		if err != nil {
    			return result, err
    		}
    		if err := keyutil.WriteKey(privateKeyPath, encodedPrivateKey); err != nil {
    			return result, err
    		}
    
    		s.ProxyClientKeyFile = filepath.Join(s.SecureServing.ServerCert.CertDirectory, "misty-crt.key")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. cmd/data-usage_test.go

    }
    
    func createUsageTestFiles(t *testing.T, base, bucket string, files []usageTestFile) {
    	for _, f := range files {
    		err := os.MkdirAll(filepath.Dir(filepath.Join(base, bucket, f.name)), os.ModePerm)
    		if err != nil {
    			t.Fatal(err)
    		}
    		err = os.WriteFile(filepath.Join(base, bucket, f.name), make([]byte, f.size), os.ModePerm)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top