Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,576 for IMPLEMENTATION (0.34 sec)

  1. guava/src/com/google/common/collect/ForwardingList.java

       * #listIterator(int)}. If you override {@link #listIterator(int)}, you may wish to override
       * {@link #lastIndexOf} to forward to this implementation.
       *
       * @since 7.0
       */
      protected int standardLastIndexOf(@CheckForNull Object element) {
        return Lists.lastIndexOfImpl(this, element);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. build-logic/root-build/build.gradle.kts

    description = "Provides plugins that configures the root Gradle project"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(project(":idea"))
        implementation(project(":profiling"))
    
        implementation(project(":cleanup")) {
            because("The CachesCleaner service is shared and needs to be on the root classpath")
        }
    
        implementation("com.autonomousapps:dependency-analysis-gradle-plugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 502 bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

                @Override
                public void visitImplementation(Class<?> implementation) {
                    workClass.set(GeneratedSubclasses.unpack(implementation));
                }
    
                @Override
                public void visitImplementation(ImplementationSnapshot implementation) {
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/groovy/build.gradle

    // tag::exclude-transitive-dependencies-1[]
    dependencies {
        implementation('commons-beanutils:commons-beanutils:1.9.4') {
            exclude group: 'commons-collections', module: 'commons-collections'
        }
    }
    // end::exclude-transitive-dependencies-1[]
    } else if (project.hasProperty('sample2')) {
    // tag::exclude-transitive-dependencies-2[]
        dependencies {
            implementation('commons-beanutils:commons-beanutils:1.9.4') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            e.message == "No implementation class specified for plugin 'noImpl' in $url."
    
            when:
            pluginRegistry.lookup(DefaultPluginId.of("noImpl"))
    
            then:
            e = thrown()
            e.message == "No implementation class specified for plugin 'noImpl' in $url."
        }
    
        def "can locate a plugin implementation that is neither imperative or rule source"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultNativeBinaryTest.groovy

        Configuration implementation = Stub(ConfigurationInternal)
    
        def "has implementation dependencies"() {
            given:
            def binary = new TestBinary("binary", project.objects, implementation)
    
            expect:
            binary.implementationDependencies == project.configurations.binaryImplementation
            binary.implementationDependencies.extendsFrom == [implementation] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/typeregistration/BaseInstanceFactoryTest.groovy

            then:
            def ex = thrown IllegalStateException
            ex.message == "Cannot register implementation for type '${fullyQualifiedNameOf(ThingSpec)}' because an implementation for this type was already registered by test rule"
        }
    
        def "fails when asking for implementation info for a non-managed type"() {
            when:
            instanceFactory.getManagedSubtypeImplementationInfo(ModelType.of(ThingSpec))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cadvisor/testing/cadvisor_fake.go

    }
    
    // RootFsInfo is a fake implementation of Interface.RootFsInfo.
    func (c *Fake) RootFsInfo() (cadvisorapiv2.FsInfo, error) {
    	return cadvisorapiv2.FsInfo{}, nil
    }
    
    // ContainerFsInfo is a fake implementation of Interface.ContainerFsInfo.
    func (c *Fake) ContainerFsInfo() (cadvisorapiv2.FsInfo, error) {
    	return cadvisorapiv2.FsInfo{}, nil
    }
    
    // GetDirFsInfo is a fake implementation of Interface.GetDirFsInfo.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 22:07:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/build.gradle.kts

    dependencies {
        api(project(":declarative-dsl-tooling-models"))
    
        api(libs.kotlinCompilerEmbeddable)
        api(libs.kotlinStdlib)
    
        implementation(project(":declarative-dsl-api"))
        implementation(libs.kotlinReflect)
        implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.6.2")
        implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
    
        testImplementation(libs.futureKotlin("test-junit5"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. test/fixedbugs/bug324.dir/p.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type Exported interface {
    	private()
    }
    
    type Implementation struct{}
    
    func (p *Implementation) private() { println("p.Implementation.private()") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 21 12:14:50 UTC 2011
    - 347 bytes
    - Viewed (0)
Back to top