Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for other_api (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audagnostic_test.go

    			taudcfgs: []taudcfg{
    				{
    					implicitAuds: Audiences{"api", "other_api"},
    					auds:         Audiences{"api", "other_api"},
    				},
    				{
    					implicitAuds: Audiences{"api", "other_api", "other"},
    					auds:         Audiences{"api", "other_api"},
    				},
    				{
    					implicitAuds: Audiences{"api", "other_api"},
    					auds:         Audiences{"api", "other_api", "other"},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskIncrementalJavaCompilationIntegrationTest.groovy

            given:
            settingsFile << "include 'otherApi'"
            file("impl/build.gradle") << "dependencies { implementation(project(':otherApi')) }"
    
            file("api/src/main/${language.name}/module-info.${language.name}") << """
                module api {
                    exports a;
                }
            """
            file("otherApi/src/main/${language.name}/module-info.${language.name}") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      auto filter = [&](Operation* other_op) {
        return cluster_ops.contains(other_op) ||
               cluster_dependent_ops.contains(other_op);
      };
      auto other_ops =
          incoming ? side_effect_analysis.DirectControlPredecessors(op, filter)
                   : side_effect_analysis.DirectControlSuccessors(op, filter);
      if (other_ops.empty())
        return nullptr;
      else
        return *other_ops.begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestMergeSpecTest.groovy

            DefaultManifest otherManifest = new DefaultManifest(fileResolver)
            def otherMap = [key1: 'value1other', key4: 'value4other', key5: 'value5other'] as LinkedHashMap
            def otherSectionMap = [keysec1: 'value1Secother', keysec4: 'value4Secother', keysec5: 'value5Secother']
            otherManifest.attributes(otherMap)
            otherManifest.attributes(otherSectionMap, 'section')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    }
    
    // Equal returns true if the other object is the same pointer-wise.
    func (m *MapValue) Equal(other ref.Val) ref.Val {
    	otherMap, ok := other.(*MapValue)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(other)
    	}
    	return types.Bool(m == otherMap)
    }
    
    // Type returns its registered type.
    func (m *MapValue) Type() ref.Type {
    	return m.typeValue
    }
    
    // Value is not allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

    namespace mlir {
    namespace tf_executor {
    namespace {
    
    // Comparator for `OpsInReverseProgramOrder`.
    struct IsAfterInBlock {
      bool operator()(Operation* op, Operation* other_op) const {
        // This function has an average complexity of O(1).
        return other_op->isBeforeInBlock(op);
      }
    };
    
    #define GEN_PASS_DEF_EXECUTORUPDATECONTROLDEPENDENCIESPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    //
    //    <allowed>               <not allowed>
    //
    //    fakequant                 fakequant
    //        |                         |
    //    reorder_op                   / \
    //                       reorder_op   other_op
    //
    //       ||
    //       \/
    //
    //    reorder_op
    //        |
    //    fakequant
    template <typename ReorderOp>
    struct ReorderFakeQuantPattern : public RewritePattern {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

          // threshold is equal to ceilingPowerOfTwo(expectedSize). There is a separate code
          // path when the first operation on the new map is putAll(otherMap). There, prior to
          // https://github.com/openjdk/jdk/commit/3e393047e12147a81e2899784b943923fc34da8e, a bug
          // meant that sometimes a too-large threshold is calculated. However, this new threshold is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

          // threshold is equal to ceilingPowerOfTwo(expectedSize). There is a separate code
          // path when the first operation on the new map is putAll(otherMap). There, prior to
          // https://github.com/openjdk/jdk/commit/3e393047e12147a81e2899784b943923fc34da8e, a bug
          // meant that sometimes a too-large threshold is calculated. However, this new threshold is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
Back to top