Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for nonexistent1 (0.25 sec)

  1. src/cmd/go/testdata/script/mod_insecure_issue63845.txt

    # (vcs-test.golang.org), because the hook for redirecting to that
    # server bypasses the "ping to determine protocol" logic
    # in cmd/go/internal/vcs.
    
    [!net:golang.org] skip
    [!git] skip
    [short] skip 'tries to access a nonexistent external Git repo'
    
    env GOPRIVATE=golang.org
    env CURLOPT_TIMEOUT_MS=100
    env GIT_SSH_COMMAND=false
    
    ! go get -x golang.org/nonexist.git@latest
    stderr '^git ls-remote https://golang.org/nonexist$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 21:10:03 UTC 2023
    - 908 bytes
    - Viewed (0)
  2. guava-gwt/src/com/google/common/annotations/Annotations.gwt.xml

        Our workaround is to tell GWT that util.concurrent and all other packages
        have prod supersource, even if they have none. GWT is happy to ignore us
        when we specify a nonexistent path.
    
        (I hope that this workaround does not cause its own problems in the future.)
    -->
    <super-source path="super"/>
    
    <inherits name="com.google.gwt.core.Core" />
    <inherits name="com.google.gwt.user.User" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/web/file_test.go

    	}
    	if string(b) != content {
    		t.Fatalf("after writing %q to %s, GetBytes(%v) read %q", content, f.Name(), u, b)
    	}
    }
    
    func TestGetNonexistentFile(t *testing.T) {
    	path, err := filepath.Abs("nonexistent")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	u, err := urlFromFilePath(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	b, err := GetBytes(u)
    	if !errors.Is(err, fs.ErrNotExist) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_ambiguous_path.txt

    ! go list ./foo.go/b.go
    stderr '^stat .*[/\\]foo\.go[/\\]b\.go: directory not found$'
    
    # Multiple patterns for Go files with a typo. This should
    # treat the wrong pattern as if it were a nonexistent file.
    ! go list ./foo.go/a.go ./foo.go/b.go
    [GOOS:plan9] stderr 'stat ./foo.go/b.go: ''./foo.go/b.go'' does not exist'
    [GOOS:windows] stderr './foo.go/b.go: The system cannot find the file specified'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. guava-gwt/src/com/google/common/net/Net.gwt.xml

        Our workaround is to tell GWT that util.concurrent and all other packages
        have prod supersource, even if they have none. GWT is happy to ignore us
        when we specify a nonexistent path.
    
        (I hope that this workaround does not cause its own problems in the future.)
    -->
    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. guava-gwt/test/com/google/common/collect/testing/Testing.gwt.xml

        Our workaround is to tell GWT that util.concurrent and all other packages
        have prod supersource, even if they have none. GWT is happy to ignore us
        when we specify a nonexistent path.
    
        (I hope that this workaround does not cause its own problems in the future.)
    -->
    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download_private_vcs.txt

    stderr 'Confirm the import path was entered correctly.'
    stderr 'If this is a private repository, see https://golang.org/doc/faq#git_https for additional information.'
    ! stdout .
    
    # Fetching a nonexistent commit should return an "unknown revision"
    # error message.
    ! go mod download github.com/golang/term@86186f3aba07ed0212cfb944f3398997d2d07c6b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/net/interface_unix_test.go

    	if testing.Short() {
    		t.Skip("avoid external network")
    	}
    	if os.Getuid() != 0 {
    		t.Skip("must be root")
    	}
    
    	// Ensure zoneCache is filled:
    	_, _ = Listen("tcp", "[fe80::1%nonexistent]:0")
    
    	ti := &testInterface{local: "fe80::1"}
    	if err := ti.setLinkLocal(0); err != nil {
    		t.Skipf("test requires external command: %v", err)
    	}
    	if err := ti.setup(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 23:51:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. guava-gwt/src/com/google/common/collect/Collect.gwt.xml

        Our workaround is to tell GWT that util.concurrent and all other packages
        have prod supersource, even if they have none. GWT is happy to ignore us
        when we specify a nonexistent path.
    
        (I hope that this workaround does not cause its own problems in the future.)
    -->
    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 24 14:08:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. guava-gwt/src/com/google/common/math/Math.gwt.xml

        Our workaround is to tell GWT that util.concurrent and all other packages
        have prod supersource, even if they have none. GWT is happy to ignore us
        when we specify a nonexistent path.
    
        (I hope that this workaround does not cause its own problems in the future.)
    -->
    <super-source path="super"/>
    
    <inherits name="com.google.common.annotations.Annotations" />
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top