Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 994 for impl_2 (0.22 sec)

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

      return %2 : tensor<1x1x1x4xf32>
    }
    func.func private @XlaCallModule_aten.avg_pool2d.default.impl_2(%arg0: tensor<1x1x1x8xf32>) -> tensor<1x1x1x4xf32>
    
    // CHECK-LABEL: avg_pool2d_3
    // 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/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)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGeneratorTest.groovy

            impl1 != impl2
            SpecializedType.isAssignableFrom(impl1)
            SpecializedType2.isAssignableFrom(impl2)
        }
    
        SomeType newInstance(Class<? extends SomeType> implType, Class<? extends SomeType> publicType, SomeType target) {
            def generated = generate(implType, publicType)
            return generated.newInstance(target)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/text/template/testdata/tmpl2.tmpl

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 50 bytes
    - Viewed (0)
  7. src/html/template/testdata/tmpl2.tmpl

    Russ Cox <******@****.***> 1594052821 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 14 16:54:25 UTC 2020
    - 50 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/runtime/impl.go

    package runtime
    
    import (
    	"context"
    	"time"
    
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	criclient "k8s.io/cri-client/pkg"
    )
    
    type defaultImpl struct{}
    
    type impl interface {
    	NewRemoteRuntimeService(endpoint string, connectionTimeout time.Duration) (criapi.RuntimeService, error)
    	NewRemoteImageService(endpoint string, connectionTimeout time.Duration) (criapi.ImageManagerService, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskConstantChangesIncrementalCompilationIntegrationTest.groovy

            source api: ["class A { final static int x = 1; }", "class B extends A {}"], impl: ["class ImplA extends A {}", "class ImplB extends B {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { /* change */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('ImplB')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top