Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,399 for _impl (0.04 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

            if findex != -1:
                break
        if findex == -1:
            fail("%s does not contain any of %s" % (fname, _PREFIXES))
        return ".".join(toks[findex:]) + ".class"
    
    def _impl(ctx):
        classes = ",".join(
            [_AsClassName(x) for x in ctx.attr.srcs],
        )
        ctx.actions.write(output = ctx.outputs.out, content = _OUTPUT % (
            classes,
            ctx.attr.outname,
        ))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGenerator.java

         * </ul>
         */
        public Class<?> generate(Class<?> implClass, Class<?> publicContractType) {
            AsmClassGenerator classGenerator = new AsmClassGenerator(publicContractType, "_Impl");
            ClassWriter visitor = classGenerator.getVisitor();
    
            Type generatedType = classGenerator.getGeneratedType();
    
            Type superclassType = Type.getType(implClass);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/image/internal/imageutil/impl.go

    Mark Rushakoff <******@****.***> 1520661463 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses('X')
    
            when:
            // non-abi change
            impl.snapshot()
            source api: ["class B { final static int x = 2; int method() { return 3; } }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            createDirs("api", "impl", "util")
            settingsFile << "include 'api', 'impl', 'util'"
            buildFile << "allprojects { apply plugin: 'java-library' } "
    
            file("impl/build.gradle") << "dependencies { api project(':api') } "
            file("util/build.gradle") << "dependencies { implementation project(':impl') } "
            //util -> impl -> api
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top