Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,016 for JOIN (2.23 sec)

  1. pkg/volume/testing/volume_host.go

    }
    
    func (f *fakeVolumeHost) GetPluginDir(podUID string) string {
    	return filepath.Join(f.rootDir, "plugins", podUID)
    }
    
    func (f *fakeVolumeHost) GetVolumeDevicePluginDir(pluginName string) string {
    	return filepath.Join(f.rootDir, "plugins", pluginName, "volumeDevices")
    }
    
    func (f *fakeVolumeHost) GetPodsDir() string {
    	return filepath.Join(f.rootDir, "pods")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	testInstall(t, "./testp1"+exeSuffix,
    		filepath.Join(libgodir, libgoa),
    		filepath.Join(libgodir, "libgo.h"),
    		"go", "install", "-buildmode=c-archive", "./libgo")
    
    	// Test building libgo other than installing it.
    	// Header files are now present.
    	testInstall(t, "./testp2"+exeSuffix, "libgo.a", "libgo.h",
    		"go", "build", "-buildmode=c-archive", filepath.Join(".", "libgo", "libgo.go"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

            lockFileReaderWriter.writeUniqueLockfile([a: ['foo', 'bar'], b: ['foo'], c: []])
    
            then:
            tmpDir.file(LockFileReaderWriter.UNIQUE_LOCKFILE_NAME).text == """${LockFileReaderWriter.LOCKFILE_HEADER_LIST.join('\n')}
    bar=a
    foo=a,b
    empty=c
    """.denormalize()
            !lockDir.exists()
        }
    
        def 'deletes an unique lock file on empty lock state'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

      }
    
      public void testJoin() {
        assertThat(UnsignedBytes.join(",", new byte[] {})).isEmpty();
        assertThat(UnsignedBytes.join(",", new byte[] {(byte) 1})).isEqualTo("1");
        assertThat(UnsignedBytes.join(",", (byte) 1, (byte) 2)).isEqualTo("1,2");
        assertThat(UnsignedBytes.join("", (byte) 1, (byte) 2, (byte) 3)).isEqualTo("123");
        assertThat(UnsignedBytes.join(",", (byte) 128, (byte) -1)).isEqualTo("128,255");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/analyze_test.go

    			// Parse error as the yaml file itself is not valid yaml.
    			output, err = istioctlSafe(t, istioCtl, ns.Name(), false, invalidFile)
    			g.Expect(strings.Join(output, "\n")).To(ContainSubstring("Error(s) adding files"))
    			g.Expect(strings.Join(output, "\n")).To(ContainSubstring(fmt.Sprintf("errors parsing content \"%s\"", invalidFile)))
    
    			g.Expect(err).To(MatchError(analyze.FileParseError{}))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top