Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for AVALUE (0.32 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ExtraPropertiesIntegrationTest.groovy

        def 'extra properties can be overridden on child projects'() {
            given:
            extraPropertiesMultiBuild('a': 'aValue', 'a:a1': 'aValue') {
                buildFile << """
                    project(':a') {
                        ext.testProp = 'aValue'
                    }
                """.stripIndent()
            }
    
            expect:
            succeeds checkTestPropTasks()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsDslIntegrationSpec.groovy

                42
            }
            """
    
            settingsFile << """
            buildscript {
                extensions["aValue"] = "hello"
    
                assert extensions["aValue"] == "hello" : "Can access inside buildscript"
            }
    
            assert extensions["aValue"] == "hello" : "Can access outside buildscript"
    
            apply from: '$answerFile'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/ModelReportNodeBuilderTest.groovy

            ReportNode node = ModelReportNodeBuilder.fromDsl({
                model {
                    childOne()
                    childTwo(aValue: 'someThing', anotherValue: 'somethingElse')
                }
            }).get()
    
            expect:
            node.'**'.childOne
            node.'**'.childTwo.@aValue[0] == 'someThing'
            node.'**'.childTwo.@anotherValue[0] == 'somethingElse'
        }
    
        def "can accept an empty closure"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 11 23:49:44 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  4. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                                String aValue = parser.getAttributeValue(i);
                                String aPrefix = parser.getAttributePrefix(i);
                                if (aPrefix != null && !aPrefix.isEmpty()) {
                                    aName = aPrefix + ":" + aName;
                                }
                                attrs.put(aName, aValue);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

                                String aname = parser.getAttributeName(i);
                                String avalue = parser.getAttributeValue(i);
                                attrs.put(aname, avalue);
                                spacePreserve = spacePreserve || ("xml:space".equals(aname) && "preserve".equals(avalue));
                            }
                        }
                    } else {
                        if (children == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/ProblemProgressEventCrossVersionTest.groovy

                    it.id("id", "shortProblemMessage")
                    $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: Wed Apr 10 07:55:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/fields/selector_test.go

    )
    
    func TestSplitTerms(t *testing.T) {
    	testcases := map[string][]string{
    		// Simple selectors
    		`a`:                            {`a`},
    		`a=avalue`:                     {`a=avalue`},
    		`a=avalue,b=bvalue`:            {`a=avalue`, `b=bvalue`},
    		`a=avalue,b==bvalue,c!=cvalue`: {`a=avalue`, `b==bvalue`, `c!=cvalue`},
    
    		// Empty terms
    		``:     nil,
    		`a=a,`: {`a=a`, ``},
    		`,a=a`: {``, `a=a`},
    
    		// Escaped values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 08:00:38 UTC 2017
    - 11.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    		"alabel",
    	)
    	toRegister := vec.metrics()
    	registry := compbasemetrics.NewKubeRegistry()
    	for _, reg := range toRegister {
    		registry.MustRegister(reg)
    	}
    	tro, err := vec.NewForLabelValuesChecked(0, 1, []string{"avalue"})
    	if err != nil {
    		t.Error(err)
    	}
    	exerciseTimingRatioHistogram(t, testHistogramName, t0, clk, registry, tro)
    }
    
    func TestTimingRatioHistogramVecElementSafeEarly(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  9. src/syscall/syscall_test.go

    	}
    	if newvalue != value {
    		t.Fatalf("Getenv(%v) = %q; want %q", key, newvalue, value)
    	}
    }
    
    func TestEnv(t *testing.T) {
    	testSetGetenv(t, "TESTENV", "AVALUE")
    	// make sure TESTENV gets set to "", not deleted
    	testSetGetenv(t, "TESTENV", "")
    }
    
    // Check that permuting child process fds doesn't interfere with
    // reporting of fork/exec status. See Issue 14979.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingCompileAvoidanceIntegrationTest.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
    - 2.5K bytes
    - Viewed (0)
Back to top