Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for Resolvable (0.15 sec)

  1. src/cmd/cgo/internal/test/cgo_stubs_ppc64x_internal_linking_test.go

    package cgotest
    
    import "testing"
    
    // If gcc is used, and linking internally, __mulsc3 and __muldc3
    // will be linked in from libgcc which make several R_PPC64_TOC16_DS
    // relocations which may not be resolvable with the internal linker.
    func test8694(t *testing.T) { t.Skip("not supported on ppc64/ppc64le with internal linking") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 631 bytes
    - Viewed (0)
  2. src/net/testdata/aliases

    127.0.0.1 test
    127.0.0.2 test2.example.com 2.test
    127.0.0.3 3.test test3.example.com
    127.0.0.4 example.com
    127.0.0.5 test4.example.com 4.test 5.test test5.example.com
    
    # must be a non resolvable domain on the internet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:29:14 UTC 2022
    - 257 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultResolvableConfiguration.java

    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.typeconversion.NotationParser;
    import org.gradle.internal.work.WorkerThreadRegistry;
    
    /**
     * A concrete resolvable {@link DefaultConfiguration} that cannot change roles.
     */
    public class DefaultResolvableConfiguration extends DefaultConfiguration implements ResolvableConfiguration {
    
        public DefaultResolvableConfiguration(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/embedded/EmbeddedKotlinPluginIntegTest.kt

                        }
                    }
                }
    
                """
            )
    
            build("assertions")
        }
    
        @Test
        fun `all embedded kotlin dependencies are resolvable`() {
    
            withBuildScript(
                """
    
                plugins {
                    `embedded-kotlin`
                }
    
                $repositoriesBlock
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

                        .because("Configurations should be created with the role-based API in org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal");
    
        /**
         * Ensures no new usages of resolvable + dependency scope Configurations are added and ensures usages of "maybe" methods are avoided.
         */
        @ArchTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.api.artifacts.ConfigurationContainer.xml

                </tr>
                <tr>
                    <td>detachedConfiguration</td>
                </tr>
                <tr>
                    <td>consumable</td>
                </tr>
                <tr>
                    <td>resolvable</td>
                </tr>
                <tr>
                    <td>dependencyScope</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 882 bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

        val mainClassName: Property<String>
    }
    
    val app = extensions.create<LaunchableJar>("app")
    
    val manifestClasspath = configurations.dependencyScope("manifestClasspath")
    val resolveManifestClasspath = configurations.resolvable("resolveManifestClasspath") {
        isTransitive = false
        extendsFrom(manifestClasspath.get())
        configureAsRuntimeJarClasspath(objects)
    }
    
    tasks.jar.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-test-report-aggregation/src/main/java/org/gradle/api/plugins/TestReportAggregationPlugin.java

                testReportDirectory.convention(javaPluginExtension.getTestReportDir());
            });
    
            // A resolvable configuration to collect test results
            Configuration testResultsConf = configurations.resolvable("aggregateTestReportResults").get();
            testResultsConf.extendsFrom(testAggregation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 20:53:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

    val distribution = configurations.dependencyScope("distribution") {
        description = "Dependencies to extract the public Gradle API from"
    }
    val distributionClasspath = configurations.resolvable("distributionClasspath") {
        extendsFrom(distribution.get())
        configureAsRuntimeJarClasspath(objects)
    }
    
    // Defines configurations used to resolve external dependencies
    // that the public API depends on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/testReport/groovy/build.gradle

    plugins {
        // because this snippet is used in TestReportIntegrationTest which rewrites build files for different JUnit flavors
        id 'java'
    }
    
    // tag::test-report[]
    // A resolvable configuration to collect test reports data
    configurations {
        testReportData {
            canBeConsumed = false
            attributes {
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 867 bytes
    - Viewed (0)
Back to top