Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for touches (0.12 sec)

  1. 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)
  2. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/plugins/GroovyJarFileTest.groovy

        }
    
        def "parse symlinked Jar"(String symlinkName, String fileName, String version, String dependencyNotation) {
            def actualFile = tmpDir.file(fileName).touch()
            def symlinkFile = tmpDir.file(symlinkName).createLink(actualFile)
    
            def jar = GroovyJarFile.parse(symlinkFile)
    
            expect:
            jar != null
            jar.file == actualFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 20:09:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/net/http/cgi/host.go

    	}
    
    	if statusCode == 0 {
    		statusCode = http.StatusOK
    	}
    
    	// Copy headers to rw's headers, after we've decided not to
    	// go into handleInternalRedirect, which won't want its rw
    	// headers to have been touched.
    	for k, vv := range headers {
    		for _, v := range vv {
    			rw.Header().Add(k, v)
    		}
    	}
    
    	rw.WriteHeader(statusCode)
    
    	_, err = io.Copy(rw, linebody)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent_test.go

    		})
    		sds := a.Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    
    		// Ensure we output the certs
    		checkCertsWritten(t, dir)
    
    		// The provisioning certificates should not be touched
    		go sds[security.WorkloadKeyCertResourceName].DrainResponses()
    		expectFileChanged(t, filepath.Join(dir, "cert-chain.pem"), filepath.Join(dir, "key.pem"))
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/DefaultVersionControlRepositoryFactory.java

                            GFileUtils.mkdirs(workingDir);
                            // Update timestamp so that working directory is not garbage collected
                            GFileUtils.touch(baseDir);
                            delegate.populate(workingDir, ref, spec);
                            return workingDir;
                        } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheCleanupAction.java

                lastCleanupTime = Instant.ofEpochMilli(gcFile.lastModified());
            }
    
            return cleanupFrequency.requiresCleanup(lastCleanupTime);
        }
    
        private void markCleanedUp() {
            GFileUtils.touch(getGcFile());
        }
    
        private File getGcFile() {
            File currentVersionCacheDir = versionSpecificCacheDirectoryScanner.getDirectory(GradleVersion.current());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in dependency resolution results with #display"() {
            repo.file("a/.gitkeepdir").touch()
            repo.file("settings.gradle") << """
                ${settings}
                include 'a'
            """
            repo.file("build.gradle") << """
                allprojects { apply plugin: 'java-library' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in dependency resolution results with #display"() {
            repoC.file("a/.gitkeepdir").touch()
            repoC.file("settings.gradle") << """
                ${settings}
                include 'a'
            """
            repoC.file("build.gradle") << """
                allprojects { apply plugin: 'java-library' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	group           singleflight.Group
    	liveTTL         time.Duration
    	// updatedQuotas holds a cache of quotas that we've updated.  This is used to pull the "really latest" during back to
    	// back quota evaluations that touch the same quota doc.  This only works because we can compare etcd resourceVersions
    	// for the same resource as integers.  Before this change: 22 updates with 12 conflicts.  after this change: 15 updates with 0 conflicts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            try {
                cache.open()
                dir.file("some-file").touch()
            } finally {
                cache.close()
            }
    
            return dir
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top