Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,466 for JOIN (0.03 sec)

  1. src/cmd/compile/internal/test/ssa_test.go

    	var stdout, stderr bytes.Buffer
    	cmd := testenv.Command(t, gotool, "run", filepath.Join("testdata", filename))
    	cmd.Stdout = &stdout
    	cmd.Stderr = &stderr
    	if err := cmd.Run(); err != nil {
    		t.Fatalf("Failed: %v:\nOut: %s\nStderr: %s\n", err, &stdout, &stderr)
    	}
    	// Write stdout into a temporary file
    	rungo := filepath.Join(t.TempDir(), "run.go")
    	ok := os.WriteFile(rungo, stdout.Bytes(), 0600)
    	if ok != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/os/stat_test.go

    	if err := os.WriteFile(file, []byte(""), 0644); err != nil {
    		t.Fatal(err)
    	}
    	testFileStats(t, file)
    
    	filelink := filepath.Join(tmpdir, "link")
    	if err := os.Symlink(file, filelink); err != nil {
    		t.Fatal(err)
    	}
    	testSymlinkStats(t, filelink, false)
    	testSymlinkSameFile(t, file, filelink)
    	testSymlinkSameFileOpen(t, filelink)
    
    	linklink := filepath.Join(tmpdir, "linklink")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_join_subpkg_v1.1.0.txt

    Written by hand.
    Test case for package moved into a parent module.
    
    -- .mod --
    module example.com/join/subpkg
    
    require example.com/join v1.1.0
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 177 bytes
    - Viewed (0)
  4. src/io/ioutil/tempfile_test.go

    			wantRePat := "^" + regexp.QuoteMeta(filepath.Join(dir, tt.wantPrefix)) + "[0-9]+" + regexp.QuoteMeta(tt.wantSuffix) + "$"
    			runTestTempDir(t, tt.pattern, wantRePat)
    		})
    	}
    
    	// Separately testing "*xyz" (which has no prefix). That is when constructing the
    	// pattern to assert on, as in the previous loop, using filepath.Join for an empty
    	// prefix filepath.Join(dir, ""), produces the pattern:
    	//     ^<DIR>[0-9]+xyz$
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 18 00:47:29 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/samples/templates/groovy-utilities-library/src/main/groovy/org/gradle/sample/utilities/StringUtils.groovy

    package org.gradle.sample.utilities
    
    import org.gradle.sample.list.LinkedList
    
    class StringUtils {
        static String join(LinkedList source) {
            return JoinUtils.join(source)
        }
    
        static LinkedList split(String source) {
            return SplitUtils.split(source)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 281 bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/kotlinapplication/multi/utilities/StringUtils.kt.template

    ${fileComment.multilineComment}${packageDecl.statement}
    import ${basePackagePrefix.raw}list.LinkedList
    
    class StringUtils {
        companion object {
            fun join(source: LinkedList): String {
                return JoinUtils.join(source)
            }
    
            fun split(source: String): LinkedList {
                return SplitUtils.split(source)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 357 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/config.yml

    blank_issues_enabled: false
    contact_links:
      - name: MinIO Community Support
        url: https://slack.min.io
        about: Join here for Community Support
      - name: MinIO SUBNET Support
        url: https://min.io/pricing
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 08 15:44:43 UTC 2020
    - 257 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/vendor_list_issue11977.txt

    go list -f '{{join .TestImports "\n"}}' github.com/rsc/go-get-issue-11864/t
    stdout 'go-get-issue-11864/vendor/vendor.org/p'
    
    go list -f '{{join .XTestImports "\n"}}' github.com/rsc/go-get-issue-11864/tx
    stdout 'go-get-issue-11864/vendor/vendor.org/p'
    
    go list -f '{{join .XTestImports "\n"}}' github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx2
    stdout 'go-get-issue-11864/vendor/vendor.org/tx2'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/runtime/signal_windows_test.go

    	dir := t.TempDir()
    
    	// build c program
    	dll := filepath.Join(dir, "veh.dll")
    	cmd := exec.Command("gcc", "-shared", "-o", dll, "testdata/testwinlibthrow/veh.c")
    	out, err := testenv.CleanCmdEnv(cmd).CombinedOutput()
    	if err != nil {
    		t.Fatalf("failed to build c exe: %s\n%s", err, out)
    	}
    
    	// build go exe
    	exe := filepath.Join(dir, "test.exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top