Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 135 for pouch (0.12 sec)

  1. hack/lib/init.sh

     admission.k8s.io/v1\
     admission.k8s.io/v1beta1\
    "
    export KUBE_NONSERVER_GROUP_VERSIONS
    
    # This emulates "readlink -f" which is not available on MacOS X.
    # Test:
    # T=/tmp/$$.$RANDOM
    # mkdir $T
    # touch $T/file
    # mkdir $T/dir
    # ln -s $T/file $T/linkfile
    # ln -s $T/dir $T/linkdir
    # function testone() {
    #   X=$(readlink -f $1 2>&1)
    #   Y=$(kube::readlinkdashf $1 2>&1)
    #   if [ "$X" != "$Y" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                            getLogger().debug("Exception", e);
                        } finally {
                            updateCheckManager.touch(metadata, repository, file);
                        }
                    }
    
                    // TODO should this be inside the above check?
                    // touch file so that this is not checked again until interval has passed
                    if (file.exists()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top