Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 367 for impl_5 (0.19 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      return %0 : tensor<1x1x1x2xf32>
    }
    func.func private @XlaCallModule_aten.avg_pool2d.default.impl_5(%arg0: tensor<1x1x1x7xf32>) -> tensor<1x1x1x2xf32>
    
    // CHECK-LABEL: avg_pool2d_6
    // CHECK: %cst = arith.constant dense<[0, 2, 3, 1]> : tensor<4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceLocatorTest.groovy

            1 * classLoader.loadClass("org.gradle.Impl1") >> String
            1 * classLoader.loadClass("org.gradle.Impl2") >> StringBuilder
        }
    
        def "getAll() ignores duplicate implementation classes"() {
            def impl1 = stream("org.gradle.Impl1")
            def impl2 = stream("org.gradle.Impl2")
            def impl3 = stream("org.gradle.Impl1")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            source impl: ["class SomeImpl {}", "class ImplB extends B {}", "class ImplB2 extends ImplB {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { /* remove extends */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses("ImplB", "ImplB2")
    
            when:
            impl.snapshot()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

                impl: ["class ImplA { $constantType foo() { return B.x; }}", "class ImplB {int foo() { return 2; }}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { final static $constantType x = $newValue; }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('ImplA')
    
            where:
            constantType | constantValue   | newValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            source api: ["class A {}", "class B {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class A { String change; }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses("ImplA")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            def sameStateDifferentType = generateSimpleView(SomeTypeWithReadOnly).newInstance(state1, typeConverter)
            def impl2 = proxyClass.newInstance(state2, typeConverter)
    
            then:
            Matchers.strictlyEquals(impl1, sameState)
            Matchers.strictlyEquals(impl1, sameStateDifferentType)
            !impl1.equals(impl2)
        }
    
        def "mixes in unmanaged delegate from #managedType.simpleName"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/scope.cc

    namespace tensorflow {
    
    Scope::Scope(Impl* impl) : impl_(impl) {}
    
    Scope::Scope(const Scope& other) : impl_(new Impl(*other.impl())) {}
    
    Scope::~Scope() {}
    
    Scope& Scope::operator=(const Scope& other) {
      // We can't copy Impls because of the const members, use copy ctor instead
      impl_.reset(new Impl(*other.impl_));
      return *this;
    }
    
    namespace {
    const char kScopeSeparator[] = "/";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        }
    
        EnsureIsCopied();
        impl_->insert(resource_op);
      }
    
      Impl::const_iterator begin() const {
        return impl_ ? impl_->begin() : GetEmptyImpl()->begin();
      }
    
      Impl::const_iterator end() const {
        return impl_ ? impl_->end() : GetEmptyImpl()->end();
      }
    
      bool Contains(const ResourceOp& resource_op) const {
        return impl_ != nullptr && impl_->count(resource_op);
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}
      ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}
    
      ParamGenerator& operator=(const ParamGenerator& other) {
        impl_ = other.impl_;
        return *this;
      }
    
      iterator begin() const { return iterator(impl_->Begin()); }
      iterator end() const { return iterator(impl_->End()); }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}
      ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}
    
      ParamGenerator& operator=(const ParamGenerator& other) {
        impl_ = other.impl_;
        return *this;
      }
    
      iterator begin() const { return iterator(impl_->Begin()); }
      iterator end() const { return iterator(impl_->End()); }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top