Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 958 for JOIN (0.07 sec)

  1. src/cmd/vet/vet_test.go

    			if pkg == "asm" {
    				cmd.Env = append(cmd.Env, "GOOS=linux", "GOARCH=amd64")
    			}
    
    			dir := filepath.Join("testdata", pkg)
    			gos, err := filepath.Glob(filepath.Join(dir, "*.go"))
    			if err != nil {
    				t.Fatal(err)
    			}
    			asms, err := filepath.Glob(filepath.Join(dir, "*.s"))
    			if err != nil {
    				t.Fatal(err)
    			}
    			var files []string
    			files = append(files, gos...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/certs.go

    			// If CA Cert existed while dryrun, copy CA Cert to dryrun dir for later use
    			if data.DryRun() {
    				err := kubeadmutil.CopyFile(filepath.Join(data.CertificateDir(), kubeadmconstants.CACertName), filepath.Join(data.CertificateWriteDir(), kubeadmconstants.CACertName))
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tests/integration/helm/upgrade/util.go

    		"kubectl apply -n %v -f %v",
    		helmtest.IstioNamespace,
    		filepath.Join(helmtest.ManifestsChartPath, helmtest.BaseChart, helmtest.CRDsFolder))
    	_, err := shell.Execute(false, execCmd)
    	if err != nil {
    		ctx.Fatalf("couldn't run kubectl apply on crds folder: %v", err)
    	}
    
    	// Upgrade base chart
    	err = h.UpgradeChart(helmtest.BaseReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.BaseChart),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/helpers.go

    	return filepath.Join(containerName, fmt.Sprintf("%d.log", restartCount))
    }
    
    // BuildContainerLogsDirectory builds absolute log directory path for a container in pod.
    func BuildContainerLogsDirectory(podLogsDir, podNamespace, podName string, podUID types.UID, containerName string) string {
    	return filepath.Join(BuildPodLogsDirectory(podLogsDir, podNamespace, podName, podUID), containerName)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/os/exec/lp_windows_test.go

    		default:
    			paths = append(paths, filepath.Join(root, d))
    		}
    	}
    	return strings.Join(paths, string(os.PathListSeparator))
    }
    
    // installProgs creates executable files (or symlinks to executable files) at
    // multiple destination paths. It uses root as prefix for all destination files.
    func installProgs(t *testing.T, root string, files []string) {
    	for _, f := range files {
    		dstPath := filepath.Join(root, f)
    
    		dir := filepath.Dir(dstPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. pkg/volume/util/atomic_writer.go

    		}
    		linkname := userVisiblePath[:slashpos]
    		_, err := os.Readlink(filepath.Join(w.targetDir, linkname))
    		if err != nil && os.IsNotExist(err) {
    			// The link into the data directory for this path doesn't exist; create it
    			visibleFile := filepath.Join(w.targetDir, linkname)
    			dataDirFile := filepath.Join(dataDirName, linkname)
    
    			err = os.Symlink(dataDirFile, visibleFile)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersIntegrationTest.groovy

        }
    
        def "can provide list property parameters with isolation mode #isolationMode"() {
            buildFile << """
                ${parameterWorkAction('ListProperty<String>', 'println parameters.testParam.get().join(",")') }
    
                task runWork(type: ParameterTask) {
                    isolationMode = ${isolationMode}
                    parameters {
                        testParam.add("foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    			continue
    		}
    		podName := podsDirInfo[i].Name()
    		podDir := filepath.Join(podDir, podName)
    
    		// Find filesystem volume information
    		// ex. filesystem volume: /pods/{podUid}/volumes/{escapeQualifiedPluginName}/{volumeName}
    		volumesDirs := map[v1.PersistentVolumeMode]string{
    			v1.PersistentVolumeFilesystem: filepath.Join(podDir, config.DefaultKubeletVolumesDirName),
    		}
    		// Find block volume information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/volume/util/volumepathhandler/volume_path_handler.go

    	return mapSymlinkDevice(v, devicePath, mapPath, linkName)
    }
    
    func mapBindMountDevice(v VolumePathHandler, devicePath string, mapPath string, linkName string) error {
    	// Check bind mount exists
    	linkPath := filepath.Join(mapPath, string(linkName))
    
    	file, err := os.Stat(linkPath)
    	if err != nil {
    		if !os.IsNotExist(err) {
    			return fmt.Errorf("failed to stat file %s: %v", linkPath, err)
    		}
    
    		// Create file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. internal/logger/logger.go

    		trimStrings = append(trimStrings, filepath.Join(goRootString, "src")+string(filepath.Separator))
    	}
    
    	for _, defaultgoPathString := range defaultgoPathList {
    		trimStrings = append(trimStrings, filepath.Join(defaultgoPathString, "src")+string(filepath.Separator))
    	}
    
    	for _, defaultgoRootString := range defaultgoRootList {
    		trimStrings = append(trimStrings, filepath.Join(defaultgoRootString, "src")+string(filepath.Separator))
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top