Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 247 for Touch (0.06 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveMetadata.java

     * Information about the artifacts can be accessed via the methods of {@link ComponentGraphResolveState}.</p>
     *
     * <p>Implementations must be immutable, thread safe, "fast" (ie should not run user code, or touch the file system or network etc) and "reliable" (ie should not fail)
     * Expensive operations should live on {@link ComponentGraphResolveState} instead. Note that as a transition step, not all implementations currently honor this contract.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/FilesTest.java

        assertTrue(temp.exists());
        assertTrue(temp.delete());
        assertFalse(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
    
        assertThrows(
            IOException.class,
            () ->
                Files.touch(
                    new File(temp.getPath()) {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

            assert file("foo.jar/someFile.txt").touch()
    
            run()
    
            then:
            notCached
        }
    
        @ToBeFixedForConfigurationCache(because = "test relies on static state")
        def "refreshes when buildscript when dir dependency replaced with jar"() {
            addIsCachedCheck()
            assert file("foo.jar").mkdirs()
            assert file("foo.jar/someFile.txt").touch()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  4. build/pause/Makefile

    	touch $@
    
    .container-windows-$(ARCH): $(foreach binary, ${BIN}, bin/${binary}-${OS}-${ARCH})
    	docker buildx build --provenance=false --sbom=false --pull --output=type=${OUTPUT_TYPE} --platform ${OS}/$(ARCH) \
    		-t $(IMAGE):$(TAG)-${OS}-$(ARCH)-${OSVERSION} --build-arg BASE=${BASE}-windows-${OSVERSION}-${ARCH} --build-arg ARCH=$(ARCH) -f Dockerfile_windows .
    	touch $@
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. dbflute_fess/_readme.txt

    schema     : Directory for files of schema info
    - - - - - - - - - -/
    
    The files, _project.bat, _project.sh, build.properties
    are for internal processes of DBFlute tasks so basically
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainInvalidCriteriaIntegrationTest.groovy

        def "Given empty daemon-jvm properties file When execute any task Then succeeds using the current java home"() {
            given:
            daemonJvmPropertiesFile.touch()
            captureJavaHome()
    
            expect:
            succeeds("help")
            assertDaemonUsedJvm(Jvm.current())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleBackedArtifactBuilder.java

            String archiveName = isGradleExecuterVersionLessThan("5.0") ? "archiveName" : "archiveFileName";
    
            rootDir.mkdirs();
            rootDir.file("settings.gradle").touch();
            try {
                try (PrintWriter writer = new PrintWriter(rootDir.file("build.gradle"))) {
                    writer.println("apply plugin: 'java'");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks_linux.go

    		InPathCheck{executable: "ethtool", mandatory: false, exec: execer},
    		InPathCheck{executable: "socat", mandatory: false, exec: execer},
    		InPathCheck{executable: "tc", mandatory: false, exec: execer},
    		InPathCheck{executable: "touch", mandatory: false, exec: execer})
    	return checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

        @Override
        String subprojectName() { 'app' }
    
        def "init shows up on tasks overview "() {
            given:
            targetDir.file("settings.gradle").touch()
    
            when:
            run 'tasks'
    
            then:
            outputContains "init - Initializes a new Gradle build."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-profile/src/integTest/groovy/org/gradle/profile/ProfilingIntegrationTest.groovy

                    }
                }
                beforeSettings {
                    it.plugins.apply(test.SettingsPlugin)
                }
            """
    
            settingsFile.touch()
    
            executer.usingInitScript(initScriptFile)
            executer.withArgument("--profile")
    
            when:
            succeeds 'help'
            then:
            output.contains("Hello from settings plugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top