Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for some_var (0.14 sec)

  1. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    val tar: FileTree = tarTree("someFile.tar")
    
    // tar tree attempts to guess the compression based on the file extension
    // however if you must specify the compression explicitly you can:
    val someTar: FileTree = tarTree(resources.gzip("someTar.ext"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

            someZip.archiveBaseName.get() == project.archivesBaseName
    
            and:
            def someTar = project.tasks.create('someTar', Tar)
            someTar.destinationDirectory.get().asFile == project.distsDirectory.get().asFile
            someTar.archiveVersion.get() == project.version
            someTar.archiveBaseName.get() == project.archivesBaseName
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarTest.groovy

        def "configures destinationDirectory for ear tasks"() {
            when:
            project.pluginManager.apply(JavaBasePlugin)
            project.version = '1.0'
    
            then:
            def someEar = project.tasks.create('someEar', Ear)
            someEar.destinationDirectory.get().asFile == project.libsDirectory.get().asFile
        }
    
        private static DeploymentDescriptor makeDeploymentDescriptor(Ear e) {
            e.deploymentDescriptor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 19:58:25 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

        def "configures destinationDirectory for jar tasks"() {
            when:
            project.pluginManager.apply(JavaBasePlugin)
            project.version = '1.0'
    
            then:
            def someJar = project.tasks.create('someJar', Jar)
            someJar.destinationDirectory.get().asFile == project.libsDirectory.get().asFile
        }
    
        @Issue("gradle/gradle#8700")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGeneratorTest.groovy

            impl.someLong(12L) == 13L
            impl.someBoolean(true) == false
            impl.someChar('a' as char) == 'b' as char
            impl.someThing(1, 4) == 5
            impl.dontReturn(1 as short, 4 as byte)
        }
    
        static interface TypeWithPrimitiveMethods {
            long someLong(long l)
            boolean someBoolean(boolean b)
            char someChar(char ch)
            int someThing(int a, int b)
            void dontReturn(short s, byte b)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/generate/generate_test.go

    var undefEnvList = []string{
    	"_XYZZY_",
    }
    
    // These environment variables will be defined before the splitTestWithLine tests
    var defEnvMap = map[string]string{
    	"_PLUGH_": "SomeVal",
    	"_X":      "Y",
    }
    
    // TestGenerateCommandShortHand - similar to TestGenerateCommandParse,
    // except:
    //  1. if the result starts with -command, record that shorthand
    //     before moving on to the next test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Script.java

         *
         *   //tar tree attempts to guess the compression based on the file extension
         *   //however if you must specify the compression explicitly you can:
         *   from tarTree(resources.gzip('someTar.ext'))
         *
         *   //in case you work with unconventionally compressed tars
         *   //you can provide your own implementation of a ReadableResource:
         *   //from tarTree(yourOwnResource as ReadableResource)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/strategy_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "test-pod",
    					Namespace:       "test-ns",
    					ResourceVersion: "1",
    					Annotations:     map[string]string{api.MirrorPodAnnotationKey: "someVal"},
    				},
    				Spec: api.PodSpec{
    					RestartPolicy: api.RestartPolicyAlways,
    					DNSPolicy:     api.DNSDefault,
    					Containers: []api.Container{
    						{
    							Name:                     "container",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         *   //tar tree attempts to guess the compression based on the file extension
         *   //however if you must specify the compression explicitly you can:
         *   from tarTree(resources.gzip('someTar.ext'))
         *
         *   //in case you work with unconventionally compressed tars
         *   //you can provide your own implementation of a ReadableResource:
         *   //from tarTree(yourOwnResource as ReadableResource)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top