Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,123 for 20something (0.21 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/test/resources/org/gradle/jvm/toolchain/internal/install/jdk-with-symlinks.tar.gz

    jdk-with-symlinks.tar jdk-with-symlinks/bin jdk-with-symlinks/file jdk-with-symlinks/zulu-11.jdk/Contents/Home/bin/file Something here...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:40:04 UTC 2024
    - 318 bytes
    - Viewed (0)
  2. src/internal/trace/testtrace/expectation.go

    	}
    	if e.failure && err == nil {
    		return fmt.Errorf("expected error while reading the trace: want something matching %q, got none", e.errorMatcher)
    	}
    	if e.failure && err != nil && !e.errorMatcher.MatchString(err.Error()) {
    		return fmt.Errorf("unexpected error while reading the trace: want something matching %q, got %s", e.errorMatcher, err.Error())
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

            @Large
            static void doStatic() {}
    
            @Small
            static String getStatic() { "static" }
    
            @Large
            void doSomething() {}
    
            @Large
            void setSomething(String something) {}
        }
    
    
        def "ignores validation of generated Groovy methods"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DirectorySensitivityErrorHandlingIntegrationSpec.groovy

                    File outputFile
    
                    public TaskWithInputs() {
                        sources = project.files().from { input }
                    }
    
                    @TaskAction
                    void doSomething() {
                        outputFile.withWriter { writer ->
                            sources.each { writer.println it }
                        }
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject.kt

    package prop.`in`.`companion`
    
    class Test {
        fun test() {
            val x = <expr>someField</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 205 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_domain_root.txt

    # Module paths that are domain roots should resolve.
    # (example.com not example.com/something)
    
    env GO111MODULE=on
    go get
    
    -- go.mod --
    module x
    
    -- x.go --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 190 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/archiveNaming/kotlin/somedir/file.txt

    something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/propertyInCompanionObject_indirect_twice.kt

    package prop.`in`.`companion`.indirect.twice
    
    class Test {
        fun test() {
            val x = <expr>oneMore</expr>
        }
        companion object {
            // effectively constant
            val someField = "something"
            val indirectPointer = someField
            val oneMore = indirectPointer
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 11 12:51:16 UTC 2022
    - 296 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/archiveNaming/groovy/somedir/file.txt

    something to copy...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testKit/testKitFunctionalTestSpockBuildCache/groovy/src/main/groovy/org/gradle/sample/MyCacheableTask.groovy

    @CacheableTask
    class MyCacheableTask extends DefaultTask {
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
        File inputFile
        @OutputFile
        File outputFile
    
        @TaskAction
        void doSomething() {
            outputFile.text = inputFile.text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 567 bytes
    - Viewed (0)
Back to top