Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for doesnotexit (0.18 sec)

  1. src/cmd/doc/doc_test.go

    		}
    	}
    	// Now try a missing symbol. We should see both packages in the error.
    	{
    		var flagSet flag.FlagSet
    		err := do(&b, &flagSet, []string{"rand.doesnotexit"})
    		if err == nil {
    			t.Errorf("expected error from rand.doesnotexit")
    		} else {
    			errStr := err.Error()
    			if !strings.Contains(errStr, "no symbol") {
    				t.Errorf("error %q should contain 'no symbol", errStr)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/dependencies/JavaConfigurationSetupIntegrationTest.groovy

        static final FORBIDDEN = "_FORBIDDEN"
        static final DOES_NOT_EXIST = "_DOES_NOT_EXIST"
    
        static forbidden(String marker) {
            marker == FORBIDDEN
        }
    
        static doesNotExist(String marker) {
            marker == DOES_NOT_EXIST
        }
    
        static valid(String marker) {
            marker == VALID
        }
    
        static deprecated(String alternatives) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    //  1. The operator can only be In, NotIn, Equals, DoubleEquals, Gt, Lt, NotEquals, Exists, or DoesNotExist.
    //  2. If the operator is In or NotIn, the values set must be non-empty.
    //  3. If the operator is Equals, DoubleEquals, or NotEquals, the values set must contain one value.
    //  4. If the operator is Exists or DoesNotExist, the value set must be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/fsys/fsys_test.go

    		{"subdir1/file1.txt", false, false},
    		{"subdir1/doesntexist.txt", false, true},
    		{"doesntexist", false, true},
    		// subdir2 is only in overlay
    		{filepath.Join(cwd, "subdir2"), true, false},
    		{"subdir2", true, false},
    		{"subdir2" + string(filepath.Separator), true, false},
    		{"subdir2/file2.txt", false, false},
    		{"subdir2/doesntexist.txt", false, true},
    		// subdir3 has files on disk and in overlay
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/SessionTest.java

                    String.format("smb://%s:%s@%s/%s/doesnotexist", getTestUser(), getTestUserPassword(), getTestServer(), getTestShare()),
                    getTestUser(),
                    getTestUserPassword(),
                    null);
    
                if ( getTestUserDomain() != null ) {
                    testCredentialUrl(
                        String.format(
                            "smb://%s;%s:%s@%s/%s/doesnotexist",
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. src/go/build/build_test.go

    		label        string
    		path, srcDir string
    		mode         ImportMode
    	}{
    		{"Import(full, 0)", "go/build/doesnotexist", "", 0},
    		{"Import(local, 0)", "./doesnotexist", filepath.Join(ctxt.GOROOT, "src/go/build"), 0},
    		{"Import(full, FindOnly)", "go/build/doesnotexist", "", FindOnly},
    		{"Import(local, FindOnly)", "./doesnotexist", filepath.Join(ctxt.GOROOT, "src/go/build"), FindOnly},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def excludedFile = rootDir.file("subdir1/a/b/c.html").createFile()
            def notUnderRoot = tmpDir.createDir("root2").file("a.txt").createFile()
            def doesNotExist = rootDir.file("b.txt")
    
            def patterns = new PatternSet()
            patterns.include("**/*.txt")
            patterns.exclude("subdir1/**")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  8. src/debug/buildinfo/buildinfo_test.go

    		name    string
    		build   func(t *testing.T, goos, goarch, buildmode string) string
    		want    string
    		wantErr string
    	}{
    		{
    			name: "doesnotexist",
    			build: func(t *testing.T, goos, goarch, buildmode string) string {
    				return "doesnotexist.txt"
    			},
    			wantErr: "doesnotexist",
    		},
    		{
    			name: "empty",
    			build: func(t *testing.T, _, _, _ string) string {
    				dir := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

            NoSuchPropertyException e = thrown()
            e.message == "Could not find getter method for property '${property}' on class JavaTestSubject."
    
            where:
            property              | _
            "doesNotExist"        | _
            "notABooleanProperty" | _
            "staticProperty"      | _
            "paramProperty"       | _
            "voidProperty"        | _
            "writeOnly"           | _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    		}, true},
    		{Set{"y": ""}, &internalSelector{
    			getRequirement("x", selection.DoesNotExist, nil, t),
    			getRequirement("y", selection.Exists, nil, t),
    		}, true},
    		{Set{"y": ""}, &internalSelector{
    			getRequirement("x", selection.NotIn, sets.NewString(""), t),
    			getRequirement("y", selection.DoesNotExist, nil, t),
    		}, false},
    		{Set{"y": "baz"}, &internalSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
Back to top