Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 738 for impl_2 (0.51 sec)

  1. test/typeparam/issue44688.go

    func test1[T any](arg T) {
    	// calling embedded methods
    	var b1 B1[T]
    	b1.A1 = &A1[T]{}
    	b1.A2 = &ImpA2[T]{}
    
    	b1.A1.m1(arg)
    	b1.m1(arg)
    
    	b1.A2.m2(arg)
    	b1.m2(arg)
    
    	var b2 B2[T]
    	b2 = &ImpA2[T]{}
    	b2.m2(arg)
    
    	// a deeper nesting
    	var d D[T]
    	d.C.B1.A1 = &A1[T]{}
    	d.C.B1.A2 = &ImpA2[T]{}
    	d.m1(arg)
    	d.m2(arg)
    
    	// calling method expressions
    	m1x := B1[T].m1
    	m1x(b1, arg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/util/runtime/runtime.go

    	return &CRIRuntime{
    		impl:      &defaultImpl{},
    		criSocket: criSocket,
    	}
    }
    
    // SetImpl can be used to set the internal implementation for testing purposes.
    func (runtime *CRIRuntime) SetImpl(impl impl) {
    	runtime.impl = impl
    }
    
    // Connect establishes a connection with the CRI runtime.
    func (runtime *CRIRuntime) Connect() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpJavaEarSingleProjectIntegrationTest.groovy

            // Classpath
            def classpath = classpath
            classpath.assertHasLibs('lib2-impl-2.0.jar', 'lib1-impl-1.0.jar', 'lib1-api-1.0.jar')
            classpath.lib('lib1-api-1.0.jar').assertIsDeployedTo('/lib')
            classpath.lib('lib1-impl-1.0.jar').assertIsDeployedTo('/lib')
            classpath.lib('lib2-impl-2.0.jar').assertIsDeployedTo('/')
    
            // Facets
            def facets = wtpFacets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

    // - StorageClass "standard" has "1234 GiB" available in "topology.kubernetes.io/zone=us-east1"
    // - StorageClass "localssd" has "10 GiB" available in "kubernetes.io/hostname=knode-abc123"
    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl.inputs.process
    
    import org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.Snippets
    import org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.SnippetsFactory
    import org.gradle.internal.cc.impl.fixtures.TransformFixture
    import org.gradle.process.ExecOperations
    
    import javax.inject.Inject
    
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.exec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. pkg/kubelet/checkpointmanager/checkpoint_manager.go

    	RemoveCheckpoint(checkpointKey string) error
    	// ListCheckpoint returns the list of existing checkpoints.
    	ListCheckpoints() ([]string, error)
    }
    
    // impl is an implementation of CheckpointManager. It persists checkpoint in CheckpointStore
    type impl struct {
    	path  string
    	store utilstore.Store
    	mutex sync.Mutex
    }
    
    // NewCheckpointManager returns a new instance of a checkpoint manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 24 13:51:34 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top