Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 122 for doesnotexit (0.14 sec)

  1. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.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: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyIntegrationTest.groovy

        def 'produces reasonable message when injected plugin does not exist'() {
            mappingFor(repo, "org.test:dep", 'plugins { id ("com.example.DoesNotExist") }')
    
            expect:
            fails('assemble')
            assertRepoCheckedOut()
            failure.assertHasDescription("Plugin [id: 'com.example.DoesNotExist'] was not found in any of the following sources:")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingResourceHasherTest.groovy

            when:
            hasher.hash(zipContext)
    
            then:
            1 * delegate.hash(zipContext)
        }
    
        def "throws IOException generated from hasher"() {
            def file = file('doesNotExist').tap { it.text = "" }
            def delegate = Mock(ResourceHasher)
            def hasher = LineEndingNormalizingResourceHasher.wrap(delegate, LineEndingSensitivity.NORMALIZE_LINE_ENDINGS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

                operator: DoesNotExist
      - name: slctr-expr-dne-no
        hostname: "*.slctr-expr-dne-no.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchExpressions:
              - key: istio.io/test-name-part
                operator: DoesNotExist
      - name: slctr-combined-yes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    		case LabelSelectorOpIn:
    			op = selection.In
    		case LabelSelectorOpNotIn:
    			op = selection.NotIn
    		case LabelSelectorOpExists:
    			op = selection.Exists
    		case LabelSelectorOpDoesNotExist:
    			op = selection.DoesNotExist
    		default:
    			return nil, fmt.Errorf("%q is not a valid label selector operator", expr.Operator)
    		}
    		r, err := labels.NewRequirement(expr.Key, op, append([]string(nil), expr.Values...))
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/CancellationContinuousIntegrationTest.groovy

        }
    
        def "should cancel build when System.in contains some other characters, then closes"() {
            when:
            succeeds("build")
            stdinPipe << 'abc'
    
            then:
            doesntExit()
    
            when:
            gradle.stdinPipe.close()
    
            then:
            cancelsAndExits()
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pkg/monitoring/monitortest/test.go

    		kvs = append(kvs, attribute.String(*lv.Name, *lv.Value))
    	}
    	key := metricKey{
    		name:  *metric.Name,
    		attrs: attribute.NewSet(kvs...),
    	}
    	return key
    }
    
    type Compare func(any) error
    
    func DoesNotExist(any) error {
    	// special case logic in the Assert
    	return nil
    }
    
    func Exactly(v float64) func(any) error {
    	return func(f any) error {
    		if v != toFloat(f) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryFileTreeTest.groovy

            def excludedFile = rootDir.file("subdir1/a/b/c.html").createFile()
            def notUnderRoot = temporaryFolder.createDir("root2").file("a.txt").createFile()
            def doesNotExist = rootDir.file("b.txt")
    
            when:
            def patterns = new PatternSet()
            patterns.include("**/*.txt")
            patterns.exclude("subdir1/**")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top