Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 247 for Touch (0.03 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

        public String getError(Artifact artifact, ArtifactRepository repository) {
            File touchFile = getTouchfile(artifact);
            return getError(touchFile, getRepositoryKey(repository));
        }
    
        public void touch(Artifact artifact, ArtifactRepository repository, String error) {
            File file = artifact.getFile();
    
            File touchfile = getTouchfile(artifact);
    
            if (file.exists()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. docs/site-replication/run-ssec-object-replication-with-compression.sh

    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello world" >/tmp/data/plainfile
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/mpartobj.txt
    shred -s 500M /tmp/data/mpartobj.txt
    echo "done"
    
    # Enable compression for site minio1
    ./mc admin config set minio1 compression enable=on extensions=".txt" --insecure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            run "wrapper", "--gradle-version", "2.2.1", "--no-validate-url"
            def testFile = file("modtime").touch()
            def originalTime = testFile.lastModified()
            when:
            // Zip file time resolution is 2 seconds
            ConcurrentTestUtil.poll {
                testFile.touch()
                assert (testFile.lastModified() - originalTime) >= 2000L
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. docs/site-replication/run-ssec-object-replication.sh

    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello world" >/tmp/data/plainfile
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/custpartsize
    shred -s 500M /tmp/data/custpartsize
    echo "done"
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    # sleep for replication to complete
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            }
        }
    
        /**
         * Ensures that the given file (or directory) is marked as modified. If the file
         * (or directory) does not exist, a new file is created.
         */
        public static void touch(File file) {
            try {
                if (!file.createNewFile()) {
                    touchExisting(file);
                }
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedVersionIntegrationTest.groovy

        final URI distroZip = otherVersion.binDistribution.toURI()
    
        def setup() {
            toolingApi.withConnector { connector -> connector.useDistribution(distroZip) }
            settingsFile.touch()
        }
    
        def "tooling api reports an error when requesting a model using a gradle version that does not implement the tooling api"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. hack/update-generated-docs.sh

      genman "${dest}/docs/man/man1/" "kubeadm"
    
      mkdir -p "${dest}/docs/yaml/kubectl/"
      genyaml "${dest}/docs/yaml/kubectl/"
    
      # create the list of generated files
      pushd "${dest}" > /dev/null || return 1
      touch docs/.generated_docs
      find . -type f | cut -sd / -f 2- | LC_ALL=C sort > docs/.generated_docs
      popd > /dev/null || return 1
    }
    
    # Removes previously generated docs-- we don't want to check them in. $KUBE_ROOT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheTest.groovy

            1 * cacheBuilder.open() >> { cache }
            _ * cache.getBaseDir() >> cacheDir
            1 * cache.useCache(_)
            jarFile == resolvedFile
    
            when:
            FileUtils.touch(jarFile)
            resolvedFile = provider.get("api") { Assert.fail("Should not be called if file already exists") }
    
            then:
            0 * cacheBuilderFactory.createCacheBuilder(CACHE_KEY) >> cacheBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/OutputCleaningCompilerTest.groovy

        def createObjDummy(File sourceFile) {
            def objectFile = new TestFile(namingScheme.withObjectFileNameSuffix(O_EXT).
                withOutputBaseFolder(outputDir).
                map(sourceFile))
    
            objectFile.touch()
            objectFile.text = sourceFile.absolutePath
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerDaemonReuseIntegrationTest.groovy

                        options.fork = true
                    }
    
                    group = "org.test"
                    version = "1.0"
                }
            """
            child.file("settings.gradle").touch()
    
            buildFile << """
                dependencies {
                    implementation "org.test:child:1.0"
                }
            """
            settingsFile << """
                includeBuild "child"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top