Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,306 for JOIN (0.04 sec)

  1. src/path/filepath/path_windows_test.go

    	// Make sure we have sufficient privilege to run mklink command.
    	testenv.MustHaveSymlink(t)
    
    	file := filepath.Join(tmpdir, "file")
    	err = os.WriteFile(file, []byte(""), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	target = filepath.Join(target, file[len(filepath.VolumeName(file)):])
    
    	filelink := filepath.Join(tmpdir, "filelink")
    	output, err = exec.Command("cmd", "/c", "mklink", filelink, target).CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

        }
    
        public String toLineString() {
            if (isUpdated()) {
                return StringUtils.join(newInputs, ",") + "=>" + newOutput;
            }
            return StringUtils.join(inputs, ",") + "=>" + output;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/path/filepath/path_unix.go

    	}
    	return strings.Split(path, string(ListSeparator))
    }
    
    func abs(path string) (string, error) {
    	return unixAbs(path)
    }
    
    func join(elem []string) string {
    	// If there's a bug here, fix the logic in ./path_plan9.go too.
    	for i, e := range elem {
    		if e != "" {
    			return Clean(strings.Join(elem[i:], string(Separator)))
    		}
    	}
    	return ""
    }
    
    func sameWord(a, b string) bool {
    	return a == b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 970 bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

      }
    
      public void testJoin() {
        assertThat(join()).isEmpty();
        assertThat(join(1)).isEqualTo("1");
        assertThat(join(1, 2)).isEqualTo("1,2");
        assertThat(join(-1, Integer.MIN_VALUE)).isEqualTo("4294967295,2147483648");
    
        assertThat(UnsignedInts.join("", 1, 2, 3)).isEqualTo("123");
      }
    
      private static String join(int... values) {
        return UnsignedInts.join(",", values);
      }
    
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testplugin/plugin_test.go

    		log.Fatal(err)
    	}
    	goroot = filepath.Join(cwd, "../../../../..")
    
    	// Copy testdata into GOPATH/src/testplugin, along with a go.mod file
    	// declaring the same path.
    
    	GOPATH, err := os.MkdirTemp("", "plugin_test")
    	if err != nil {
    		log.Panic(err)
    	}
    	defer os.RemoveAll(GOPATH)
    	tmpDir = GOPATH
    	fmt.Printf("TMPDIR=%s\n", tmpDir)
    
    	modRoot := filepath.Join(GOPATH, "src", "testplugin")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. istioctl/pkg/workload/workload_test.go

    			"ingressIP":  "fd00:10:96::2",
    		},
    	}
    	for _, dir := range files {
    		if !dir.IsDir() {
    			continue
    		}
    		testdir := path.Join("testdata/vmconfig", dir.Name())
    		t.Cleanup(func() {
    			for k := range generated {
    				os.Remove(path.Join(testdir, k))
    			}
    		})
    		t.Run(dir.Name(), func(t *testing.T) {
    			createClientFunc := func(client kube.CLIClient) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

    ${modules.toSorted().collect {"$it=$lockFileId"}.join('\n')}
    empty=
    """.denormalize()
            } else {
                lockDir.file("${lockFileId}.lockfile") << """${LockFileReaderWriter.LOCKFILE_HEADER_LIST.join('\n')}
    ${modules.toSorted().join('\n')}
    """.denormalize()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    		for _, pkg := range pkgs {
    			pkgpath := path.Join("test", strings.TrimSuffix(pkg.files[0], ".go"))
    			cfg += "\npackagefile " + pkgpath + "=" + filepath.Join(tempDir, pkgpath+".a")
    		}
    		filename := filepath.Join(tempDir, "importcfg")
    		err := os.WriteFile(filename, []byte(cfg), 0644)
    		if err != nil {
    			t.Fatal(err)
    		}
    		return filename
    	}
    
    	long := filepath.Join(t.gorootTestDir, t.goFileName())
    	switch action {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf_test.go

    	dir := t.TempDir()
    
    	const prog = `
    package main
    
    import "net"
    
    func main() {
    	net.Dial("", "")
    }
    `
    	src := filepath.Join(dir, "issue33358.go")
    	if err := os.WriteFile(src, []byte(prog), 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	binFile := filepath.Join(dir, "issue33358")
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build", "-o", binFile, src)
    	if out, err := cmd.CombinedOutput(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/GroovyPluginImplementation.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    trait GroovyPluginImplementation {
        void groovyDsl(TestFile sourceFile, BuildInputRead read) {
            sourceFile << """
                ${read.requiredImports().collect { "import $it" }.join("\n")}
    
                println("apply = " + ${read.groovyExpression})
                tasks.register("thing") {
                    doLast {
                        println("task = " + ${read.groovyExpression})
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top