Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,206 for 20something (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/WorkItemProgressEventCrossVersionSpec.groovy

                descriptor.className == "org.gradle.test.TestWork"
                failures.size() == 1
                with (failures[0]) {
                    message == "something went horribly wrong"
                    description.startsWith("java.lang.IllegalStateException: something went horribly wrong")
                }
            }
        }
    
        private ProgressEvents runBuild(String task, Set<OperationType> operationTypes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/NonInteractiveUserInputHandlerTest.groovy

        }
    
        def "always returns default for int question"() {
            expect:
            userInputHandler.askIntQuestion('Enter something', 1, 2) == 2
        }
    
        def "always returns default for text question"() {
            expect:
            userInputHandler.askQuestion('Enter something', 'ok') == 'ok'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/ProjectBuildFileIntegrationTest.groovy

                    println "init script applied" 
                }
            """
    
            then:
            succeeds "help", '-I', initScript.absolutePath
            output.contains "init script applied" // ensure we actually tested something
        }
    
        def "buildSrc project.buildFile is non null when does not exist"() {
            given:
            executer.requireOwnGradleUserHomeDir()
            file("buildSrc/settings.gradle").createFile()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top