Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 388 for IsSame (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/optimize.mlir

      %bias = arith.constant dense<3.0> : tensor<16xf32>
      %value = arith.constant dense<4.0> : tensor<16xf32>
      %0 = "tf.Conv2D"(%arg, %filter) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", dilations = [1, 2, 3, 1], padding = "SAME", strides = [1, 4, 5, 1]} : (tensor<256x32x32x3xf32>, tensor<3x3x3x16xf32>) -> tensor<256x8x7x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/destination_rule.go

    			// at the same time added as a unique entry in the processedDestRules.
    			if bothWithoutSelector || (rule.GetWorkloadSelector() != nil && selectorsMatch) {
    				addRuleToProcessedDestRules = false
    			}
    
    			// Deep copy destination rule, to prevent mutate it later when merge with a new one.
    			// This can happen when there are more than one destination rule of same host in one namespace.
    			copied := mdr.rule.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/store.go

    		// if it already exist. This can happen if two Service Entries are created with same host name,
    		// resolution as DNS_ROUND_ROBIN and with same/different endpoints.
    		if instance.Service.Resolution == model.DNSRoundRobinLB &&
    			s.instancesByHostAndPort.Contains(hostPort) {
    			log.Debugf("skipping service %s from service entry %s with DnsRoundRobinLB. A service entry with the same host "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tensorflow/c/tf_tensor.h

    // data type. On success, *status is set to TF_OK and the two tensors share the
    // same data buffer.
    //
    // This call requires that the `from` tensor and the given type and shape (dims
    // and num_dims) are "compatible" (i.e. they occupy the same number of bytes).
    // Specifically, given from_type_size = TF_DataTypeSize(TF_TensorType(from)):
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 16:40:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/groovy/producer/build.gradle

        id 'java-library'
    }
    
    // tag::declare-outgoing-configuration[]
    configurations {
        instrumentedJars {
            canBeConsumed = true
            canBeResolved = false
            // If you want this configuration to share the same dependencies, otherwise omit this line
            extendsFrom implementation, runtimeOnly
        }
    }
    // end::declare-outgoing-configuration[]
    
    def instrumentedJar = tasks.register("instrumentedJar", Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 785 bytes
    - Viewed (0)
  6. src/crypto/elliptic/elliptic.go

    	// IsOnCurve reports whether the given (x,y) lies on the curve.
    	//
    	// Deprecated: this is a low-level unsafe API. For ECDH, use the crypto/ecdh
    	// package. The NewPublicKey methods of NIST curves in crypto/ecdh accept
    	// the same encoding as the Unmarshal function, and perform on-curve checks.
    	IsOnCurve(x, y *big.Int) bool
    
    	// Add returns the sum of (x1,y1) and (x2,y2).
    	//
    	// Deprecated: this is a low-level unsafe API.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. src/runtime/mksizeclasses.go

    		allocsize := pageSize
    		for allocsize%size > allocsize/8 {
    			allocsize += pageSize
    		}
    		npages := allocsize / pageSize
    
    		// If the previous sizeclass chose the same
    		// allocation size and fit the same number of
    		// objects into the page, we might as well
    		// use just this size instead of having two
    		// different sizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/VersionedPluginUseIntegrationTest.groovy

            When we resolve, we cache the results in the shared home folder. Now if another test runs, and the repository ends up looking the same (same localhost address).
            The wrong cached artifact is used.
            That's why these kind of resolution tests need requireOwnGradleUserHomeDir().
    
             */
            executer.requireOwnGradleUserHomeDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    == Accessor name clash
    
    This error indicates that your version catalog contains (at least) two aliases which are mapped to the same accessor.
    Given an alias like `some.alias`, Gradle implements a mapping strategy to a _getter_ for type-checked accessors.
    In this case, it means that two aliases are in conflict because they result in the same getter being created.
    
    To fix this problem, you must choose different aliases.
    
    [[too_many_entries]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/internal/weak/pointer.go

    // after the object referenced by the pointer used to create a weak reference
    // is reclaimed.
    //
    // If multiple weak pointers are made to different offsets within same object
    // (for example, pointers to different fields of the same struct), those pointers
    // will not compare equal.
    // If a weak pointer is created from an object that becomes reachable again due
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top