Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for untouched (0.18 sec)

  1. tensorflow/c/tf_tensor.h

                                                       int num_dims, size_t len);
    
    // Deletes `tensor` and returns a new TF_Tensor with the same content if
    // possible. Returns nullptr and leaves `tensor` untouched if not.
    TF_CAPI_EXPORT extern TF_Tensor* TF_TensorMaybeMove(TF_Tensor* tensor);
    
    // Destroy a tensor.
    TF_CAPI_EXPORT extern void TF_DeleteTensor(TF_Tensor*);
    
    // Return the type of a tensor element.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 16:40:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/api/service/testing/make.go

    	return func(svc *api.Service) {
    		svc.Spec.IPFamilyPolicy = &policy
    	}
    }
    
    // SetNodePorts sets the values for each node port, in order.  If less values
    // are specified than there are ports, the rest are untouched.
    func SetNodePorts(values ...int) Tweak {
    	return func(svc *api.Service) {
    		for i := range svc.Spec.Ports {
    			if i >= len(values) {
    				break
    			}
    			svc.Spec.Ports[i].NodePort = int32(values[i])
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/prop.go

    // always returns size==1 for an illegal UTF-8 byte (instead of the length
    // of the maximum invalid subsequence). Most Transformers, like unicode/norm,
    // leave invalid UTF-8 untouched, in which case it has performance benefits to
    // do so (without changing the semantics). Bidi requires the semantics used here
    // for the bidirule implementation to be compatible with the Go semantics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

            createMetadataFile {
                addChecksum("org:foo:1.0", "md5", "abc")
                addChecksum("org:foo:1.0", "sha1", "1234")
                addChecksum("org:bar:1.0", "sha1", "untouched")
                trust("dummy", "artifact")
                trust("other", "artifact", "with", "file.jar", true)
            }
    
            given:
            javaLibrary()
            def foo = uncheckedModule("org", "foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  5. src/math/big/arith_arm64.s

    // if 'x' and 'z' happen to share the same underlying storage.
    // The overhead of the checking and branching is visible when 'z' are small (~5%),
    // so set a threshold of 32, and remain the small-sized part entirely untouched.
    TEXT ·addVW(SB),NOSPLIT,$0
    	MOVD	z+0(FP), R3
    	MOVD	z_len+8(FP), R0
    	MOVD	x+24(FP), R1
    	MOVD	y+48(FP), R2
    	CMP	$32, R0
    	BGE	large		// large-sized 'z' and 'x'
    	CBZ	R0, len0	// the length of z is 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            content.assertDoesNotExist()
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "recreates target directory when symlink is found, leaving linked content untouched"() {
            def linked = tmpDir.createDir("linked")
            def content = linked.createFile("content.txt")
            def target = tmpDir.file("target").tap { Files.createSymbolicLink(it.toPath(), linked.toPath()) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/tests/duplicate_shape_determining_constants.mlir

    // CHECK-DAG: %[[CST_0:.*]] = "tf.Const"
    // CHECK-SAME: dense<1>
    // Check that there are no extra "tf.Const"s existing in this function.
    // CHECK-NOT: "tf.Const"
    
    // Check that the usages of %[[CST]] and %[[CST_0]] are untouched.
    // CHECK: %[[ADD:.*]] = "tf.AddV2"(%[[CST]], %[[CST_0]])
    // CHECK: "tf.Max"({{.*}}, %[[ADD]])
    
    // -----
    
    // CHECK-LABEL: @recursively_duplicate_constants
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 07:44:46 UTC 2022
    - 11K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    ----
    
    Your logger can implement any of the listener interfaces listed below.
    When you register a logger, only the logging for the interfaces it implements is replaced.
    Logging for the other interfaces is left untouched.
    You can find out more about the listener interfaces in <<build_lifecycle.adoc#sec:build_phases,Build lifecycle events>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/volume/util/resize_util.go

    		return nil, fmt.Errorf("error marshalling json patch: %v", err)
    	}
    	return versionBytes, nil
    }
    
    // MergeResizeConditionOnPVC updates pvc with requested resize conditions
    // leaving other conditions untouched.
    func MergeResizeConditionOnPVC(
    	pvc *v1.PersistentVolumeClaim,
    	resizeConditions []v1.PersistentVolumeClaimCondition) *v1.PersistentVolumeClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

       *   <li>Any {@link InterruptedException} is wrapped in an {@code X} (after restoring the
       *       interrupt).
       *   <li>Any {@link CancellationException} is propagated untouched, as is any other {@link
       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top