Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 780 for applyTo (0.26 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

            packageName ? "${packageName.replaceAll("\\.", "/")}/$path" : path
        }
    
        @SuppressWarnings("GrMethodMayBeStatic")
        String generateManagedBuildScript() {
            """
                apply plugin: "java-gradle-plugin"
                apply plugin: "groovy"
                dependencies {
                  implementation localGroovy()
                }
                group = "${packageName}"
                version = "1.0"
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r50/ToolingApiIdeaModelCrossVersionSpec.groovy

            root.testResourceDirectories[0].directory == file('testResources')
        }
    
        def "accepts source directories of custom source sets as source directories"() {
    
            buildFile.text = '''
    apply plugin: 'idea'
    apply plugin: 'java'
    
    sourceSets {
        main {
            java { srcDirs = ['mainSources'] }
            resources { srcDirs = ['mainResources'] }
        }
    
        foo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3.go

    			p = p[todo:]
    
    			// If the sponge is full, apply the permutation.
    			if d.n == d.rate {
    				d.permute()
    			}
    		}
    	}
    
    	return
    }
    
    // Read squeezes an arbitrary number of bytes from the sponge.
    func (d *state) Read(out []byte) (n int, err error) {
    	// If we're still absorbing, pad and apply the permutation.
    	if d.state == spongeAbsorbing {
    		d.padAndPermute()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Function.java

       *       Objects.equal}{@code (a, b)} implies that {@code Objects.equal(function.apply(a),
       *       function.apply(b))}.
       * </ul>
       *
       * @throws NullPointerException if {@code input} is null and this function does not accept null
       *     arguments
       */
      @ParametricNullness
      T apply(@ParametricNullness F input);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

                'init.gradle'('''
                    // init script
                    apply from: 'common.gradle'
                ''')
                'settings.gradle'('''
                    // settings script
                    apply from: 'common.gradle'
                ''')
                'build.gradle'('''
                    // build script
                    apply from: 'common.gradle'
                ''')
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		VersionedParams(&opts, scheme.ParameterCodec).
    		Body(data).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // Apply takes the given apply declarative configuration, applies it and returns the applied customResourceDefinition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. samples/bookinfo/platform/kube/bookinfo.yaml

    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml -l service=reviews # reviews Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/extensibility/unit-test-fixtures/src/test/groovy/org/gradle/testfixtures/ProjectBuilderTest.groovy

        def canApplyACustomPluginUsingClass() {
            when:
            def project = buildProject()
            project.apply plugin: CustomPlugin
    
            then:
            project.tasks.hello instanceof DefaultTask
        }
    
        def canApplyACustomPluginById() {
            when:
            def project = buildProject()
            project.apply plugin: 'custom-plugin'
    
            then:
            project.tasks.hello instanceof DefaultTask
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleLifecycleIntegrationTest.groovy

                    println("Callback before \$it")
                }
            """
            buildFile << """
                plugins.apply(my.MyPlugin)
            """
            file("a/build.gradle") << """
                plugins.apply(my.MyPlugin)
            """
            // Intentionally do not apply the plugin to 'b'
            file("b/build.gradle") << ""
    
            when:
            withIsolatedProjects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelDependencyAccessRuleCrossVersionSpec.groovy

            createDirs("sub")
            settingsFile <<
            """rootProject.name = 'root'
               include 'sub'
            """
    
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
    
               repositories {
                   maven { url '${mavenRepo.uri}' }
               }
    
               dependencies {
                   ${implementationConfiguration} project(':sub')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top