Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 599 for IsSame (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        }
      };
    
      // If `tf.resource_arg_unique_id` argument attributes are present for
      // resource-type arguments, use those to decide which arguments correspond to
      // the same resource (and thus need the same ID). Otherwise, they must not
      // alias.
      const bool has_arg_unique_id_attrs =
          llvm::any_of(func_op.getArguments(), [&](const BlockArgument& arg) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/sds.go

    		return res
    	}
    
    	// There are 4 cases of secret reference
    	// Verified cross namespace (by ReferencePolicy). No Authz needed.
    	// Verified same namespace (implicit). No Authz needed.
    	// Unverified cross namespace. Never allowed.
    	// Unverified same namespace. Allowed if authorized.
    	allowedResources := make([]SecretResource, 0, len(resources))
    	deniedResources := make([]string, 0)
    	for _, r := range resources {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         *
         * NOTE: For a particular Gradle version, artifact ordering will be consistent. Multiple resolves for the same inputs will result in the
         * same outputs in the same order.
         *
         * @since 3.5
         */
        void sortArtifacts(SortOrder sortOrder);
    
        /**
         * Configures the capabilities resolution strategy.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

        }
    
        // Because we happen to use the same formula. If that changes, just don't override this.
        @Override
        public int hashCode() {
          return parent.hashCode();
        }
    
        @Override
        public String toString() {
          return parent.toString();
        }
      }
    
      /**
       * Returns {@code true} if {@code object} is an {@code ImmutableLongArray} containing the same
       * values as this one, in the same order.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  5. operator/README.md

    ```
    
    The K8s settings are defined in detail in the
    [operator API](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto).
    The settings are the same for all components, so a user can configure pilot K8s settings in exactly the same, consistent
    way as galley settings. Supported K8s settings currently include:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // Specify this trait if the op requires all outputs to have the same type and
    // the inputs either have the same type as result or a ref type corresponding to
    // the result type.
    def TF_OperandsSameAsResultsTypeOrRef : NativeOpTrait<
      "TF::OperandsSameAsResultsTypeOrRef">;
    
    // Op has the same operand and result element types (or type itself, if scalar)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/ImmutableIntArray.java

        }
    
        // Because we happen to use the same formula. If that changes, just don't override this.
        @Override
        public int hashCode() {
          return parent.hashCode();
        }
    
        @Override
        public String toString() {
          return parent.toString();
        }
      }
    
      /**
       * Returns {@code true} if {@code object} is an {@code ImmutableIntArray} containing the same
       * values as this one, in the same order.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    So configuration cache instrumentation and API upgrades are using the same infrastructure now, called bytecode interception infrastructure.
    
    
    ## Functional design
    
    Let's look at how bytecode interception works on an example of upgrading a JavaBean property to a lazy one.
    Configuration cache instrumentation works in the same way.
    
    Imagine we have in Gradle core a task:
    ```java
    abstract class JavaCompile {
        
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    It is possible for different repositories to provide a different binary artifact in response to the same artifact identifier.
    This is often the case with Maven SNAPSHOT artifacts, but can also be true for any artifact which is republished without changing its identifier.
    By caching artifacts based on their SHA1 checksum, Gradle is able to maintain multiple versions of the same artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  10. src/encoding/xml/marshal.go

    	// but fall back to _.
    	prefix := strings.TrimRight(url, "/")
    	if i := strings.LastIndex(prefix, "/"); i >= 0 {
    		prefix = prefix[i+1:]
    	}
    	if prefix == "" || !isName([]byte(prefix)) || strings.Contains(prefix, ":") {
    		prefix = "_"
    	}
    	// xmlanything is reserved and any variant of it regardless of
    	// case should be matched, so:
    	//    (('X'|'x') ('M'|'m') ('L'|'l'))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top