Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for persists (0.12 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/HealthExpirationStrategyTest.groovy

            result.reason == "since the JVM garbage collector is thrashing and after running out of JVM Metaspace"
        }
    
        def "logs are not spammed if checkExpiration is called multiple times while an unhealthy condition persists"() {
            given:
            Logger logger = Mock(Logger)
            DaemonHealthStats stats = Mock(DaemonHealthStats)
            stats.getNonHeapStats() >> belowThreshold
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_restore_op.mlir

    // Check that an argument ("__tf_file_prefix") is created.
    // CHECK-SAME: %[[ARG_0:.*]]: tensor<!tf_type.string> {tf_saved_model.index_path = ["__tf_file_prefix"]}
    
    // Original `AssignVariableOp(VarHandleOp, Const)` pattern persists.
    // CHECK-DAG: %[[CST_0:.*]] = "tf.Const"() {{.*value = dense<1.000000e\+00> : tensor<2xf32>.*}}
    // CHECK-DAG: %[[VAR_HANDLE:.*]] = "tf.VarHandleOp"() {{.*shared_name = "var_0".*}} : () -> tensor<!tf_type.resource<tensor<2xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.h

    // Tensor with AsyncValueTensor; 3. Tensor with raw device mem pointer.
    // For case 3, we need to create a PjRtBuffer from the raw device mem pointer,
    // and we need to ensure the PjRtBuffer persists till XLA computation is
    // complete. Therefore we put the newly created PjRtBuffer into `owned_args`.
    // Caller is responsible to ensure `owned_args` lives till the end of XLA
    // computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_executable_persistor.h

          DeviceCompilerClient<ExecutableType, ClientType>* client) const;
    
      // Tries to serialize an already built `executable` and persist it on disk. If
      // unable to do so, tries to build a serialized executable using the AOT
      // pipeline and persists that to disk.
      // TODO(b/255826209): Take in Signature instead hash and string once cache
      // is refactored.
      virtual Status TryToPersistExecutable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    You can verify the problem with Gradle scripts by running `gradle help`, which executes configuration scripts but no Gradle tasks.
    If the error persists, it means the build configuration is problematic.
    If not, the problem exists when executing one or more requested tasks (Gradle executes configuration scripts first, followed by build steps).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top