Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 676 for EXISTS (0.13 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                    classpath(sourceSets.main.output.classesDirs)
                    mainClass = 'org.gradle.TestMain'
                    args projectDir, testFile
                    doLast {
                        assert testFile.exists()
                    }
                    assert delegate instanceof ExtensionAware
                }
    
                task javaexecProjectMethod() {
                    def testFile = file("${'$'}buildDir/${'$'}name")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            then:
            targetDir.file(dsl.settingsFileName).exists()
            conventionPluginScript.exists()
            conventionPluginBuildFile.exists()
            warSubprojectBuildFile.exists()
            implSubprojectBuildFile.exists()
            apiSubprojectBuildFile.exists()
    
            when:
            run 'clean', 'build'
    
            then: //smoke test the build artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

                dependency("org.test:foo:1.0") {
                    exists()
                }
                noMoreDependencies()
            }
            javaLibrary.parsedModuleMetadata.variant("runtimeElements") {
                dependency("org.test:foo:1.0") {
                    exists()
                }
                dependency("org.test:bar:1.1") {
                    exists()
                }
                noMoreDependencies()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        // Exists to test that our framework doesn't run it:
        @SuppressWarnings("unused")
        @ExampleDerivedFeature.Require({
          ExampleDerivedFeature.DERIVED_FEATURE_1,
          ExampleDerivedFeature.DERIVED_FEATURE_2
        })
        public void testRequiringTwoExplicitDerivedFeatures() throws Exception {
          doNotActuallyRunThis();
        }
    
        // Exists to test that our framework doesn't run it:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. testing/integ-test/src/integTest/groovy/org/gradle/integtests/SyncTaskIntegrationTest.groovy

            file('dest').assertHasDescendants(
                'file1.txt',
                'dir1/file2.txt',
            )
            !file('ignore/file3.txt').exists()
            !file('dest/extra1.txt').exists()
            !file('dest/dir1/extra2.txt').exists()
            !file('dest/dir2/extra3.txt').exists()
        }
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "sync from file collection"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            then:
            installedJdk.exists()
            installedJdk.getParentFile().getName() == "jdks"
            installedJdk.getName() == "ibm-11-arch-${os()}.2"
            new File(installedJdk, DefaultJdkCacheDirectory.LEGACY_MARKER_FILE).exists()
            new File(installedJdk, DefaultJdkCacheDirectory.MARKER_FILE).exists()
            new File(installedJdk, "jdk/file").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            then:
            file("build/repo/org/gradle/test/1.0/test-1.0.jar").exists()
            file("build/repo/org/gradle/test/1.0/test-1.0.jar.md5").exists()
            file("build/repo/org/gradle/test/1.0/test-1.0.jar.sha1").exists()
            file("build/repo/org/gradle/test/1.0/test-1.0.jar.sha256").exists()
            file("build/repo/org/gradle/test/1.0/test-1.0.jar.sha512").exists()
    
            when:
            fails "publish", "-PjarEnabled=false"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

                inputFile.text = "input"
            }
    
            void outputsHaveBeenRemoved() {
                assert !outputFile.exists()
                assert !file(outputDir).exists()
            }
    
            void onlyOutputFileHasBeenRemoved() {
                assert !outputFile.exists()
                assert file(outputDir).exists()
            }
        }
    
        @ToBeImplemented("We don't currently clean up local state")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        // Exists to test that our framework doesn't run it:
        @SuppressWarnings("unused")
        @ExampleDerivedFeature.Require({
          ExampleDerivedFeature.DERIVED_FEATURE_1,
          ExampleDerivedFeature.DERIVED_FEATURE_2
        })
        public void testRequiringTwoExplicitDerivedFeatures() throws Exception {
          doNotActuallyRunThis();
        }
    
        // Exists to test that our framework doesn't run it:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    		return err
    	}
    
    	// The kubeconfig already exists, let's check if it has got the same CA and server URL
    	currentConfig, err := clientcmd.LoadFromFile(kubeConfigFilePath)
    	if err != nil {
    		return errors.Wrapf(err, "failed to load kubeconfig file %s that already exists on disk", kubeConfigFilePath)
    	}
    
    	expectedCtx, exists := config.Contexts[config.CurrentContext]
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top