Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,916 for anotherOk (1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/LocalComponentRegistry.java

    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * A registry of all dependency resolution state for locally produced components.
     * These components may be produced within the same project, another project in the same multi-project build,
     * or in another build within a composite.
     */
    @ThreadSafe
    public interface LocalComponentRegistry {
        /**
         * @return The component metadata for the supplied identifier.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

            @Inject
            @Named("scoped")
            BeanItf myBean;
    
            @Inject
            @Named("another")
            BeanItf2 anotherBean;
        }
    
        @Named
        static class MySingletonBean2 {
            @Inject
            @Named("scoped")
            MySessionScopedBean myBean;
    
            @Inject
            @Named("another")
            BeanItf2 anotherBean;
        }
    
        interface BeanItf {
            Session getSession();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:52:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/RelativePathParserTest.groovy

            !parser.root
            !outsideOfRoot
    
            when:
            outsideOfRoot = parser.nextPath("tree-some/another-file.txt", false, exitHandler)
            then:
            2 * exitHandler.run()
            then:
            parser.name == "another-file.txt"
            parser.relativePath == "another-file.txt"
            !parser.root
            !outsideOfRoot
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        "",
    		},
    
    		// Mirror pods bound to another node
    		{
    			name:       "forbid creating a mirror pod bound to another",
    			podsGetter: noExistingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/hg/hgrepo1.txt

    at 2018-04-17T16:00:19-04:00
    echo 'intermediate'
    cp stdout foo.txt
    git add foo.txt
    git commit -a -m 'intermediate'
    
    at 2018-04-17T16:00:32-04:00
    echo 'another'
    cp stdout another.txt
    git add another.txt
    git commit -a -m 'another'
    git tag v2.0.2
    git tag branch-v2
    
    at 2018-04-17T16:16:52-04:00
    git checkout master
    git branch v3
    git checkout v3
    mkdir v3/sub/dir
    echo 'v3/sub/dir/file'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ProjectComponentObservationListener.java

    import javax.annotation.Nullable;
    
    /**
     * A listener that is notified when one project observes the local component metadata of another.
     */
    @StatefulListener
    @EventScope(Scope.Build.class)
    public interface ProjectComponentObservationListener {
        /**
         * Called when one project observes the local component metadata of another project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DirectoryOutputArtifactIntegrationTest.groovy

        /**
         * This is not a use case we want to support at the moment. There's no need to immediately fix this.
         */
        @NotYetImplemented
        def "can attach a directory as output of a configuration generated by another task"() {
            given:
            buildFile << '''
    
           configurations {
                compile
                _classpath
            }
    
            dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskLifecycleIntegrationTest.groovy

            assertTaskExecuted(':buildB', ':c')
            assertTaskExecuted(':', ':a')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/15875")
        void '#method can not reference tasks from another build'() {
            given:
            buildA.buildFile << """
                task a {
                    $method gradle.includedBuild('buildB').task(':b')
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 03 19:28:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ProviderApiDependenciesIntegrationTest.groovy

    import spock.lang.Issue
    
    class ProviderApiDependenciesIntegrationTest extends AbstractIntegrationSpec {
        @Issue("https://github.com/gradle/gradle/issues/20722")
        def "can add dependency with addLater derived from another provider with Java plugin"() {
            buildFile << """
    plugins {
        id 'java'
    }
    
    def version = objects.property(String)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedVariantResult.java

         * The capabilities provided by this variant
         *
         * @since 5.3
         */
        List<Capability> getCapabilities();
    
        /**
         * If present, this means that this variant is a bridge to another variant
         * found in another module. This corresponds to variants which are marked
         * as "available-at" in Gradle Module Metadata.
         *
         * @return the external variant, if any
         * @since 6.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 00:34:16 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top