Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for AVALUE (0.14 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

                    .lineInFileLocation("/tmp/foo", 1, 2, 3)
                    $detailsConfig
                    .additionalData(org.gradle.api.problems.internal.GeneralDataSpec, data -> data.put("aKey", "aValue"))
                    .severity(Severity.WARNING)
                    .solution("try this instead")
                }
            """
            when:
    
            def problems = runTask()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/time/format.go

    		stdstr := layout[len(prefix) : len(layout)-len(suffix)]
    		value, err = skip(value, prefix)
    		if err != nil {
    			return Time{}, newParseError(alayout, avalue, prefix, value, "")
    		}
    		if std == 0 {
    			if len(value) != 0 {
    				return Time{}, newParseError(alayout, avalue, "", value, ": extra text: "+quote(value))
    			}
    			break
    		}
    		layout = suffix
    		var p string
    		hold := value
    		switch std & stdMask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r87/ProblemProgressEventCrossVersionTest.groovy

                    $documentationConfig
                    .lineInFileLocation("/tmp/foo", 1, 2, 3)
                    $detailsConfig
                    .additionalData("aKey", "aValue")
                    .severity(Severity.WARNING)
                    .solution("try this instead")
                }
            """
    
            when:
    
            def problems = runTask().collect{ it.descriptor }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 11:36:58 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/ProblemProgressEventCrossVersionTest.groovy

                    $documentationConfig
                    .lineInFileLocation("/tmp/foo", 1, 2, 3)
                    $detailsConfig
                    .additionalData("aKey", "aValue")
                    .severity(Severity.WARNING)
                    .solution("try this instead")
                }
            """
    
            when:
    
            def problems = runTask()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 11:36:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/CommandLineParserTest.groovy

            expect:
            def result = parser.parse(['-avalue=arg'])
            result.hasOption('a')
            result.option('a').value == 'value=arg'
            result.option('a').values == ['value=arg']
        }
    
        def parsesShortOptionWithDashCharacterInAttachedArgument() {
            parser.option('a').hasArgument()
    
            expect:
            def result = parser.parse(['-avalue-arg'])
            result.hasOption('a')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocWorkAvoidanceIntegrationTest.groovy

                public class A {
                    public void foo() {
                    }
                }
            '''
            file('a/src/main/resources/A.properties') << '''
                aprop=avalue
            '''
    
            file('b/src/main/java/B.java') << '''
                public class B {
                    public int truth() { return 0; }
                }
            '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            when:
            TaskOptionsGenerator.generate(new TestClass7(), reader).getAll()
            then:
            def e = thrown(OptionValidationException)
            e.message == "No description set on option 'aValue' at for class 'org.gradle.api.internal.tasks.options.OptionReaderTest\$TestClass7'."
    
            when:
            TaskOptionsGenerator.generate(new TestClass8(), reader).getAll()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return submetrics;},sortByTotal_(a,b,chartName){if(a===AGGREGATE_KEY)return-1;if(b===AGGREGATE_KEY)return 1;let aValue=0;const aMap=this.groupedData_.get(a);if(aMap.get(this.orderedBenchmarks_[0])!==undefined){for(const metric of METRICS.get(chartName)){const aMetricMap=aMap.get(this.orderedBenchmarks_[0]).get(metric);const aStats=aMetricMap.get(STATISTICS_KEY);aValue+=aStats?aStats.mean:0;}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top