Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 369 for notexist (0.2 sec)

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

    ! go mod tidy
    ! stderr 'package nonexist is not in std'
    stderr '^go: issue27063 imports\n\tnonexist.example.com: cannot find module providing package nonexist.example.com'
    stderr '^go: issue27063 imports\n\tissue27063/other imports\n\tother.example.com/nonexist: cannot find module providing package other.example.com/nonexist'
    
    ! go mod vendor
    ! stderr 'package nonexist is not in std'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/os/error_test.go

    	}
    	if s := checkErrorPredicate("os.IsNotExist", os.IsNotExist, err, fs.ErrNotExist); s != "" {
    		return s
    	}
    	return ""
    }
    
    func TestErrIsNotExist(t *testing.T) {
    	tmpDir := t.TempDir()
    	name := filepath.Join(tmpDir, "NotExists")
    	if s := testErrNotExist(t, name); s != "" {
    		t.Fatal(s)
    	}
    
    	name = filepath.Join(name, "NotExists2")
    	if s := testErrNotExist(t, name); s != "" {
    		t.Fatal(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 00:41:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_replace_import.txt

    -- i2/go.mod --
    module example.com/i
    -- i2/i.go --
    package i
    
    -- fail/m.go --
    package main
    
    import (
    	_ "w"
    	_ "nonexist"
    )
    
    func main() {}
    
    -- fail/go.mod --
    module localhost.fail
    
    replace w => ../w
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. pkg/kubelet/config/file_linux.go

    		}
    		return s.store.Add(pod)
    	case podDelete:
    		if objKey, keyExist := s.fileKeyMapping[e.fileName]; keyExist {
    			pod, podExist, err := s.store.GetByKey(objKey)
    			if err != nil {
    				return err
    			}
    			if !podExist {
    				return fmt.Errorf("the pod with key %s doesn't exist in cache", objKey)
    			}
    			if err = s.store.Delete(pod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 17:27:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_goroot_errors.txt

    ! go build -mod=readonly nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    ! go build nonexist
    ! stderr 'import lookup disabled'
    ! stderr 'missing dot'
    stderr '^package nonexist is not in std \('$GOROOT'[/\\]src[/\\]nonexist\)$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/govcs.txt

    env GOPRIVATE=
    env GOVCS=
    ! go get rsc.io/nonexist.svn/hello
    stderr '^go: rsc.io/nonexist.svn/hello: GOVCS disallows using svn for public rsc.io/nonexist.svn; see ''go help vcs''$'
    
    # fossil is disallowed by default
    env GOPRIVATE=
    env GOVCS=
    ! go get rsc.io/nonexist.fossil/hello
    stderr '^go: rsc.io/nonexist.fossil/hello: GOVCS disallows using fossil for public rsc.io/nonexist.fossil; see ''go help vcs''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gotoolchain_local.txt

    go mod edit -go=1.999 -toolchain=go1.998
    
    ! go install rsc.io/fortune/nonexist@v0.0.1
    stderr '^go: rsc.io/fortune@v0.0.1 requires go >= 1.21rc999; switching to go1.22.9$'
    stderr '^go: rsc.io/fortune/nonexist@v0.0.1: module rsc.io/fortune@v0.0.1 found, but does not contain package rsc.io/fortune/nonexist'
    
    ! go run rsc.io/fortune/nonexist@v0.0.1
    stderr '^go: rsc.io/fortune@v0.0.1 requires go >= 1.21rc999; switching to go1.22.9$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/chdir.txt

    go list -C ../strings
    stdout strings
    ! go list -C ../nonexist
    stderr 'chdir.*nonexist'
    
    # check for -C in subcommands with custom flag parsing
    # cmd/go/chdir_test.go handles the normal ones more directly.
    
    # go doc
    go doc -C ../strings HasPrefix
    
    # go env
    go env -C $OLD/custom GOMOD
    stdout 'custom[\\/]go.mod'
    ! go env -C ../nonexist
    stderr '^go: chdir ../nonexist: '
    
    # go test
    go test -C ../strings -n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 744 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_insecure_issue63845.txt

    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$'
    stderr '^git ls-remote git\+ssh://golang.org/nonexist'
    stderr '^git ls-remote ssh://golang.org/nonexist$'
    ! stderr 'git://'
    stderr '^go: golang.org/nonexist.git@latest: no secure protocol found for repository$'
    
    -- go.mod --
    module example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 21:10:03 UTC 2023
    - 908 bytes
    - Viewed (0)
  10. src/io/fs/sub_test.go

    	check("openOnly", sub, err)
    
    	_, err = sub.Open("nonexist")
    	if err == nil {
    		t.Fatal("Open(nonexist): succeeded")
    	}
    	pe, ok := err.(*PathError)
    	if !ok {
    		t.Fatalf("Open(nonexist): error is %T, want *PathError", err)
    	}
    	if pe.Path != "nonexist" {
    		t.Fatalf("Open(nonexist): err.Path = %q, want %q", pe.Path, "nonexist")
    	}
    
    	_, err = sub.Open("./")
    	if !errors.Is(err, ErrInvalid) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top