Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 566 for persistent (0.29 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ObjectHolder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.cache;
    
    /**
     * A persistent store containing an object of type T.
     */
    public interface ObjectHolder<T> {
        /**
         * Fetches the value from this cache. A shared or exclusive lock is held while fetching the value, depending on implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. testing/integ-test/build.gradle.kts

        integTestImplementation(project(":process-services"))
        integTestImplementation(project(":core-api"))
        integTestImplementation(project(":resources"))
        integTestImplementation(project(":persistent-cache"))
        integTestImplementation(project(":dependency-management"))
        integTestImplementation(project(":gradle-cli-main"))
        integTestImplementation(project(":launcher"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/build.gradle.kts

        api(project(":enterprise-operations"))
        api(project(":enterprise-logging"))
        api(project(":file-collections"))
        api(project(":jvm-services"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":resources"))
        api(project(":toolchains-jvm-shared"))
    
        api(libs.kotlinStdlib)
        api(libs.inject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. test/tinyfin.go

    				panic("already finalized")
    			}
    			done[x] = true
    			count++
    			if count > N/10*9 {
    				// Some of the finalizers may not be executed,
    				// if the outermost allocations are combined with something persistent.
    				// Currently 4 int32's are combined into a 16-byte block,
    				// ensure that most of them are finalized.
    				return
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 18:57:18 UTC 2015
    - 1.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/build.gradle.kts

        api(project(":files"))
        api(project(":file-collections"))
        api(project(":file-temp"))
        api(project(":hashing"))
        api(project(":stdlib-java-extensions"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":serialization"))
        api(project(":snapshots"))
    
        api(libs.guava)
        api(libs.jsr305)
        api(libs.inject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_platform_info.h

    // Returns information about the platform from kernel context.
    XlaPlatformInfo XlaPlatformInfoFromDevice(DeviceBase* device);
    
    // Obtains persistent cache directory for executables that target a given device
    // based off xla flags. If you shouldn't use persistent caching, returns "".
    std::string GetPersistentCacheDirectory(
        const DeviceType& compilation_device_type);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. testing/soak/src/integTest/groovy/org/gradle/workers/internal/WorkerPruningSoakTest.groovy

            expect:
            10.times {
                println("Run $it")
                succeeds("runAllInWorkers", "-Pcounter=" + it)
            }
        }
    
        // TODO add a version with persistent workers when we re-enable them in public API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. internal/http/close.go

    func DrainBody(respBody io.ReadCloser) {
    	// Callers should close resp.Body when done reading from it.
    	// If resp.Body is not closed, the Client's underlying RoundTripper
    	// (typically Transport) may not be able to reuse a persistent TCP
    	// connection to the server for a subsequent "keep-alive" request.
    	if respBody != nil {
    		// Drain any remaining Body and then close the connection.
    		// Without this closing connection would disallow re-using
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/build.gradle.kts

        api(project(":core-api"))
        api(project(":internal-integ-testing"))
        api(project(":internal-testing"))
        api(project(":stdlib-java-extensions"))
        api(project(":logging"))
        api(project(":persistent-cache"))
        api(project(":time"))
        api(project(":tooling-api"))
    
        api(libs.gradleProfiler) {
            because("Consumers need to instantiate BuildMutators")
        }
        api(libs.guava)
        api(libs.groovy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. cmd/grid.go

    	lookupHost := globalDNSCache.LookupHost
    	g, err := grid.NewManager(ctx, grid.ManagerOptions{
    		// Pass Dialer for websocket grid, make sure we do not
    		// provide any DriveOPTimeout() function, as that is not
    		// useful over persistent connections.
    		Dialer:       grid.ContextDialer(xhttp.DialContextWithLookupHost(lookupHost, xhttp.NewInternodeDialContext(rest.DefaultTimeout, globalTCPOptions.ForWebsocket()))),
    		Local:        local,
    		Hosts:        hosts,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top