Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for withID (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

                    }
    
                    PotentialPlugin<?> potentialPlugin = pluginInspector.inspect(implClass);
                    PluginImplementation<Object> withId = new RegistryAwarePluginImplementation(classLoader, pluginId, potentialPlugin);
                    return Optional.of(withId);
                }
            });
        }
    
        @Override
        public PluginRegistry createChild(final ClassLoaderScope lookupScope) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaConcurrencyIntegrationTest.groovy

                allprojects {
                    tasks.withType(AbstractScalaCompile) {
                        options.fork = true
                    }
                    ${mavenCentralRepository()}
                    plugins.withId("scala") {
                        dependencies {
                            implementation 'org.scala-lang:scala-library:${ScalaCoverage.SCALA_2.last()}'
    
                            testImplementation 'junit:junit:4.12'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 16:10:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/rds_test.go

    			[]string{"ht&p"},
    		},
    	}
    
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			ads := s.ConnectADS().WithType(v3.RouteType).WithID(tt.node)
    			ads.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: tt.routes})
    		})
    	}
    }
    
    const (
    	app3Ip    = "10.2.0.1"
    	gatewayIP = "10.3.0.1"
    )
    
    // Common code for the xds testing.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftMixedLanguageIntegrationTest.groovy

            if (OperatingSystem.current().isLinux() && swiftToolChain.version.compareTo(VersionNumber.parse("4.1")) >= 0) {
                initScript << """
                    allprojects { p ->
                        p.plugins.withId("cpp-library") {
                            p.library.binaries.configureEach(CppStaticLibrary) {
                                compileTask.get().configure {
                                    compilerArgs.add("-fPIC")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

    }
    
    configureJavadocVariant()
    
    publishing {
        publications {
            create<MavenPublication>("gradleDistribution") {
                configureGradleModulePublication()
            }
        }
    
        plugins.withId("gradlebuild.shaded-jar") {
            publishNormalizedToLocalRepository()
        }
    }
    
    val pgpSigningKey: Provider<String> = providers.environmentVariable("PGP_SIGNING_KEY")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoKotlinJvmPluginAggregationTest.groovy

                        }
                    }
    
                    subprojects {
                        repositories {
                            ${mavenCentralRepository()}
                        }
    
                        plugins.withId('java') {
                            testing {
                                suites {
                                    test {
                                        useJUnit()
                                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

            // For the configuration cache module
            "it.unimi.dsi.fastutil.objects.ReferenceArrayList",
            "it.unimi.dsi.fastutil.objects.ReferenceOpenHashSet",
        )
    )
    plugins.withId("java-base") {
        dependencies {
            attributesSchema {
                attribute(minified)
            }
            // It would be nice if we could be more selective about which variants to apply this to.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginContainer.java

        /**
         * Returns a plugin with the specified id if this plugin has been used in the project.
         *
         * @param id The id of the plugin
         * @throws UnknownPluginException When there is no plugin with the given id.
         */
        Plugin getPlugin(String id) throws UnknownPluginException;
    
        /**
         * Returns a plugin with the specified type if this plugin has been used in the project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    allprojects {
                        repositories {
                            ${mavenCentralRepository()}
                        }
                    }
                    subprojects {
                        plugins.withId('java') {
                            testing {
                                suites {
                                    test {
                                        useJUnit()
                                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaPluginIntegrationTest.groovy

                        options.fork = true
                    }
                    ${mavenCentralRepository()}
                    plugins.withId("scala") {
                        dependencies {
                            implementation("${scalaDependency(version.toString())}")
                        }
                    }
                }
            """
            ['a', 'b', 'c', 'd'].each { project ->
                file("${project}/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top