Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 122 for doesnotexit (0.17 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util_test.cc

      constexpr char failed_legalization[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
        func.func @main() -> tensor<1xi32> {
          %0 = "tf.DoesntExist"() : () -> tensor<1xi32>
          func.return %0 : tensor<1xi32>
        }
      })";
      CellReader<int64_t> count(
          "/tensorflow/core/tf2xla/v1/mlir_failed_xla_legalize_tf_pass_count");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 19:54:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/test/java/jcifs/tests/DfsTest.java

        }
    
    
        @Test
        public void resolveRootNotExist () throws CIFSException, URISyntaxException {
            DfsReferralData ref = doResolve("\\doesnotexist\\", null, false);
            assertNull(ref);
    
            ref = doResolve("\\deep\\doesnotexist\\", null, false);
            assertNull(ref);
        }
    
    
        @Test
        public void resolveNonDfs () throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 13.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorModuleExcludeResolveIntegrationTest.groovy

            addExcludeRuleToModule(moduleC, [artifact: 'e'])
            addExcludeRuleToModule(moduleC, [artifact: 'doesnotexist1', matcher: 'regexp'])
            moduleC.publish()
    
            def moduleD = ivyRepo.module('d').dependsOn('e')
            addExcludeRuleToModule(moduleD, [artifact: 'doesnotexist2', matcher: 'regexp'])
            moduleD.publish()
    
            ivyRepo.module('e').publish()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. samples/security/spire/spire-quickstart.yaml

                                and DoesNotExist.
                              type: string
                            values:
                              description: values is an array of string values. If the
                                operator is In or NotIn, the values array must be non-empty.
                                If the operator is Exists or DoesNotExist, the values
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/CachingJvmMetadataDetectorTest.groovy

            link.createLink(javaHome1)
    
            when:
            def metadata1 = detector.getMetadata(testLocation(link.absolutePath))
            link.createLink(new File("doesntExist"))
            def metadata2 = detector.getMetadata(testLocation(link.absolutePath))
    
            then:
            metadata1.javaHome.toString().contains(Jvm.current().javaHome.canonicalPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

            fileWithDollars << "Some Text"
            FileCollection files = project.getLayout().files(dirAndFile)
    
            when:
            ant.property(name: "my.property", value: "doesNotExist")
            ant.delete {
                files.addToAntBuilder(delegate, null, antType)
            }
    
            then:
            !fileWithDollars.exists()
    
            where:
    
            [filename, antType] << [[
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
Back to top