Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,975 for impl (0.03 sec)

  1. 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)
  2. analysis/analysis-api-impl-base/resources/META-INF/analysis-api/analysis-api-impl-base.xml

            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.java.source.JavaElementSourceWithSmartPointerFactory"
        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.psi.KotlinReferenceProvidersService"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.references.HLApiReferenceProviderService"
        />
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ImplementationChangesTest.groovy

            expect:
            changesBetween(
                impl(SimpleTask), [impl(TestAction)],
                impl(SimpleTask), [impl(TestAction)]
            ).empty
        }
    
        def "not up-to-date when task name changed"() {
            expect:
            changesBetween(
                impl(PreviousTask), [impl(TestAction)],
                impl(SimpleTask), [impl(TestAction)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. maven-core/src/main/resources/META-INF/maven/org.apache.maven.api.di.Inject

    org.apache.maven.internal.impl.DefaultSettingsXmlFactory
    org.apache.maven.internal.impl.DefaultSuperPomProvider
    org.apache.maven.internal.impl.DefaultToolchainsBuilder
    org.apache.maven.internal.impl.DefaultToolchainsXmlFactory
    org.apache.maven.internal.impl.DefaultTransportProvider
    org.apache.maven.internal.impl.DefaultUrlNormalizer
    org.apache.maven.internal.impl.DefaultVersionParser
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGeneratorTest.groovy

            expect:
            def impl = newInstance(SomeTypeImpl, SpecializedType, target)
            impl instanceof SomeTypeImpl
            impl instanceof SpecializedType
            impl.value == 12
        }
    
        def "generates a proxy classes for multiple different contract types"() {
            def target = Stub(SomeType)
            target.value >> 12
    
            expect:
            def impl1 = generate(SomeTypeImpl, SpecializedType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/cc/client/client_session.cc

      TF_CHECK_OK(status) << status;
      impl_.reset(new Impl(new_session, scope.graph_as_shared_ptr()));
      CHECK_NOTNULL(impl()->session_.get());
    }
    
    // Define destructor here so we can forward declare `Impl` in client_session.h.
    // If we define a dtor in the header file or use the default dtor,
    // unique_ptr<Impl> needs the complete type.
    ClientSession::~ClientSession() {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEarProjectIntegrationTest.groovy

            MavenFileModule lib1Api = mavenRepo.module('org.example', 'lib1-api', '1.0').publish()
            mavenRepo.module('org.example', 'lib1-impl', '1.0').dependsOn(lib1Api).publish()
            MavenFileModule lib2Api = mavenRepo.module('org.example', 'lib2-api', '2.0').publish()
            mavenRepo.module('org.example', 'lib2-impl', '2.0').dependsOn(lib2Api).publish()
            localMaven = "maven { url '${mavenRepo.uri}' }"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

            def connection = Mock(ConsumerConnection)
    
            when:
            def impl = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
            def impl2 = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
    
            then:
            impl == connection
            impl2 == connection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ForcedModulesIntegrationTest.groovy

            createDirs("api", "impl", "tool")
            settingsFile << "include 'api', 'impl', 'tool'"
    
            buildFile << """
    allprojects {
    	apply plugin: 'java'
    	repositories { maven { url "${mavenRepo.uri}" } }
    }
    
    project(':api') {
    	dependencies {
    		implementation (group: 'org', name: 'foo', version:'1.4.4')
    	}
    }
    
    project(':impl') {
    	dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top