Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 759 for applyTo (0.23 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            settingsFile << 'include "b"'
            file("b/build.gradle") << '''
                apply plugin: 'java'
            '''
            file("b/src/main/java/λ.java") << 'public class λ {}'
    
            buildFile << '''
                apply plugin: 'java'
    
                dependencies {
                   implementation project(':b')
                }
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/common.go

    	// These are used by preflight.RunPullImagesCheck() when running 'apply'.
    	if upgradeApply {
    		initCfg.NodeRegistration.ImagePullPolicy = upgradeCfg.Apply.ImagePullPolicy
    		initCfg.NodeRegistration.ImagePullSerial = upgradeCfg.Apply.ImagePullSerial
    	}
    
    	newK8sVersion := upgradeCfg.Plan.KubernetesVersion
    	if upgradeApply {
    		newK8sVersion = upgradeCfg.Apply.KubernetesVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaProjectIntegrationTest.groovy

    class JavaProjectIntegrationTest extends AbstractIntegrationTest {
        @Test
        void compilationFailureBreaksBuild() {
            TestFile buildFile = testFile("build.gradle")
            buildFile.writelns("apply plugin: 'java'")
            testFile("src/main/java/org/gradle/broken.java") << "broken"
    
            ExecutionFailure failure = executer.withTasks("build").runWithFailure()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

            kotlinCoreProjectEnvironment.environment.application.apply {
                registerService(serviceInterface, serviceImplementation)
            }
        }
    
        public fun <T : Any> registerApplicationService(serviceImplementation: Class<T>) {
            kotlinCoreProjectEnvironment.environment.application.apply {
                registerService(serviceImplementation)
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Predicates.java

        private CompositionPredicate(Predicate<B> p, Function<A, ? extends B> f) {
          this.p = checkNotNull(p);
          this.f = checkNotNull(f);
        }
    
        @Override
        public boolean apply(@ParametricNullness A a) {
          return p.apply(f.apply(a));
        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj instanceof CompositionPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            settingsFile << """
                include("a")
                include("b")
            """
            buildFile << """
                plugins.apply(my.MyPlugin)
            """
            file("a/build.gradle") << """
                plugins.apply(my.MyPlugin)
            """
    
            when:
            executer.withArguments(ENABLE_CLI)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

                case InjectionStyle.PLUGIN:
                    return "apply type: $pluginType"
                case InjectionStyle.NEW_INSTANCE:
                    def targetObject = target.targetType.toLowerCase()
                    switch (target) {
                        case ScriptTarget.PROJECT:
                            return "objects.newInstance($pluginType).apply($targetObject)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

            )
    
            withSettings(
                """
                apply(from = "common.gradle.kts")
                """
            )
    
            assertThat(
                build("help").output,
                containsString("Target is Settings")
            )
    
            withSettings("")
            withBuildScript(
                """
                apply(from = "common.gradle.kts")
                """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Predicates.java

        private CompositionPredicate(Predicate<B> p, Function<A, ? extends B> f) {
          this.p = checkNotNull(p);
          this.f = checkNotNull(f);
        }
    
        @Override
        public boolean apply(@ParametricNullness A a) {
          return p.apply(f.apply(a));
        }
    
        @Override
        public boolean equals(@CheckForNull Object obj) {
          if (obj instanceof CompositionPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

            file('settings.gradle') << "include 'utils', 'core'"
            buildFile << '''
                apply plugin: 'java'
                apply plugin: 'application'
    
                dependencies {
                   implementation project(':utils')
                }
            '''
            file('utils/build.gradle') << '''
                apply plugin: 'java-library'
    
                dependencies {
                    api project(':core')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top