Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 435 for persistent (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    				nil,
    				nil,
    				nil,
    				nil,
    				framework.NewStatus(framework.UnschedulableAndUnresolvable, `node(s) didn't find available persistent volumes to bind`),
    				framework.NewStatus(framework.UnschedulableAndUnresolvable, `node(s) didn't find available persistent volumes to bind`),
    			},
    			wantScores: []int64{
    				25,
    				25,
    				50,
    				50,
    				0,
    				0,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      // resources like hash tables upon loading.
      string init_node_name = 2;
    
      // Path to the directory where checkpoint files are saved. This directoy is
      // not expected to be persistent (usually a temporary directory). When
      // fetching the restore op (see `restore_node_name`), this value is provided
      // to the "file_prefix" tensor to identify the checkpoint directory.
      string checkpoint_dir = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
      // +optional
      optional PersistentVolumeSpec spec = 2;
    
      // status represents the current information/status for the persistent volume.
      // Populated by the system.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
Back to top