Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 440 for persists (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            public static final String LONG_OPTION = "write-locks";
    
            public DependencyLockingWriteOption() {
                super(null, CommandLineOptionConfiguration.create(LONG_OPTION, "Persists dependency resolution for locked configurations, ignoring existing locking information if it exists"));
            }
    
            @Override
            public void applyTo(StartParameterInternal settings, Origin origin) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// Assert if the content-type header set during the object upload persists.
    	c.Assert(response.Header.Get("Content-Type"), "application/json")
    
    	// Fetch the object and assert whether the Content-Type header persists.
    	request, err = newTestSignedRequest(http.MethodGet, getGetObjectURL(s.endPoint, bucketName, objectName),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. istioctl/pkg/multicluster/remote_secret.go

    	if err != nil {
    		return "", warn, err
    	}
    
    	// convert any binary data to the string equivalent for easier review. The
    	// kube-apiserver will convert this to binary before it persists it to storage.
    	remoteSecret.StringData = make(map[string]string, len(remoteSecret.Data))
    	for k, v := range remoteSecret.Data {
    		remoteSecret.StringData[k] = string(v)
    	}
    	remoteSecret.Data = nil
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Requests will be retried up to 3 times.
    If the problem persists, the cache operation will fail and the remote cache will be disabled for the remainder of the build.
    
    ==== Using SSL
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Gradle then executes the task.
    If the task completes successfully, Gradle takes a fingerprint of the outputs.
    This fingerprint contains the set of output files and a hash of the contents of each file.
    Gradle persists both fingerprints for the next time the task is executed.
    
    Each time after that, before the task is executed, Gradle takes a new fingerprint of the inputs and outputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. src/internal/fuzz/worker.go

    	args    []string // arguments for test executable
    	env     []string // environment for test executable
    
    	coordinator *coordinator
    
    	memMu chan *sharedMem // mutex guarding shared memory with worker; persists across processes.
    
    	cmd         *exec.Cmd     // current worker process
    	client      *workerClient // used to communicate with worker process
    	waitErr     error         // last error returned by wait, set before termC is closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/Permits.java

    import java.util.Collections;
    import java.util.Set;
    
    public class Permits {
        private static final Permits NONE = new Permits(Collections.emptySet());
    
        private final Set<String> allowedExtensions;
    
        public Permits(Set<String> allowedExtensions) {
            this.allowedExtensions = allowedExtensions;
        }
    
        public static Permits none() {
            return NONE;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 09 11:18:20 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. src/net/http/httputil/persist.go

    	}
    	if sc.c == nil { // connection closed by user in the meantime
    		defer sc.mu.Unlock()
    		return ErrClosed
    	}
    	c := sc.c
    	if sc.nread <= sc.nwritten {
    		defer sc.mu.Unlock()
    		return errors.New("persist server pipe count")
    	}
    	if resp.Close {
    		// After signaling a keep-alive close, any pipelined unread
    		// requests will be lost. It is up to the user to drain them
    		// before signaling.
    		sc.re = ErrPersistEOF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_executable_persistor_test.cc

                         persistor.device_type(), persistor.persistence_prefix());
      // File for key2 contains the same content as key1.
      TF_ASSERT_OK(Env::Default()->CopyFile(
          GetFilePath(key1, persistor.persistent_cache_directory()),
          GetFilePath(key2, persistor.persistent_cache_directory())));
    
      MockXlaCompilerClient mock_client;
      // Try to load an executable from file corresponding to key2 (whose file
      // content corresponds to key1).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. cluster/images/etcd/README.md

    wrapper script`).
    
    `migrate` writes a `version.txt` file to track the "current" version
    of etcd that was used to persist data to disk. A "target" version may also be provided
    by the `TARGET_STORAGE` (e.g. "etcd3") and `TARGET_VERSION` (e.g. "3.4.13" )
    environment variables. If the persisted version differs from the target version,
    `migrate-if-needed.sh` will migrate the data from the current to the target
    version.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top