Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for noExist (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

        }
    
        def "reports missing method from inside configure closure"() {
            buildFile << """
    configurations {
        broken {
            noExist(12)
        }
    }
    """
    
            expect:
            fails()
            failure.assertHasCause("Could not find method noExist() for arguments [12] on configuration ':broken' of type org.gradle.api.internal.artifacts.configurations.DefaultUnlockedConfiguration.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    				},
    				Spec: networkingv1alpha1.IPAddressSpec{
    					ParentRef: &networkingv1alpha1.ParentReference{
    						Group:     "",
    						Resource:  "services",
    						Name:      "noexist",
    						Namespace: "bar",
    					},
    				},
    			},
    			actions: [][]string{{"delete", "ipaddresses"}},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    		t.Errorf("Has(bar) = %t, want %t", h, e)
    	}
    	if h, e := v.Has("baz"), true; h != e {
    		t.Errorf("Has(baz) = %t, want %t", h, e)
    	}
    	if h, e := v.Has("noexist"), false; h != e {
    		t.Errorf("Has(noexist) = %t, want %t", h, e)
    	}
    	v.Del("bar")
    	if g, e := v.Get("bar"), ""; g != e {
    		t.Errorf("second Get(bar) = %q, want %q", g, e)
    	}
    }
    
    type parseTest struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/testdata/script/mod_download_issue51114.txt

    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    ! go mod download
    stderr '^go: github\.com/golang/notexist/subdir@v0.1.0: reading github\.com/golang/notexist/subdir/go\.mod at revision subdir/v0\.1\.0: '
    
    -- go.mod --
    module test
    
    go 1.18
    
    require github.com/golang/notexist/subdir v0.1.0
    
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    	email = ******@****.***
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 749 bytes
    - Viewed (0)
  9. test/linkname3.go

    // ERROR "//go:linkname must refer to declared function or variable"
    // ERROR "duplicate //go:linkname for x"
    // ERROR "//go:linkname reference of an instantiation is not allowed"
    
    //line linkname3.go:20
    //go:linkname nonexist nonexist
    //go:linkname t notvarfunc
    //go:linkname x duplicate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:27:25 UTC 2024
    - 720 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_list.txt

    # rsc.io/quote/buggy should not be listable as a module
    go list -m -e -f '{{.Error.Err}}' nonexist rsc.io/quote/buggy
    stdout '^module nonexist: not a known dependency$'
    stdout '^module rsc.io/quote/buggy: not a known dependency$'
    
    ! go list -m nonexist rsc.io/quote/buggy
    stderr '^go: module nonexist: not a known dependency'
    stderr '^go: module rsc.io/quote/buggy: not a known dependency'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top