Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for otherString (0.15 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

                        "module": "m",
                        "version": { "prefers": "v" },
                        "excludes": [
                            { "group": "g", "otherString": "string", "otherNumber": 123, "otherObject": { "a": 1 } }
                        ],
                        "otherString": "string",
                        "otherNumber": 123,
                        "otherBoolean": true,
                        "otherNull": null,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  2. src/syscall/js/js_test.go

    }
    
    func TestString(t *testing.T) {
    	want := "abc\u1234"
    	o := dummys.Get("someString")
    	if got := o.String(); got != want {
    		t.Errorf("got %#v, want %#v", got, want)
    	}
    	dummys.Set("otherString", want)
    	if got := dummys.Get("otherString").String(); got != want {
    		t.Errorf("got %#v, want %#v", got, want)
    	}
    	if !dummys.Get("someString").Equal(dummys.Get("someString")) {
    		t.Errorf("same value not equal")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                    @Input
                    secondInput
                }
    
                task test(type: TaskWithNestedBean) {
                    beans = [new NestedBean(input: 'someString'), new OtherNestedBean(secondInput: 'otherString')]
                }
                task printMetadata(type: PrintInputsAndOutputs) {
                    task = test
                }
            """
    
            expect:
            succeeds 'test', 'printMetadata'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensionsTest.kt

                configuration("some:thing:1.0")
                (constraints) {
                    configuration("other:thing:1.0")
                }
            }
    
            verify(dependencyHandler).add("c", "some:thing:1.0")
            inOrder(constraintHandler) {
                verify(constraintHandler).add(eq("c"), eq("other:thing:1.0"))
                verifyNoMoreInteractions()
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

                sourceSets.main.java.srcDir("src/common/java")
            """
            file("src/common/java/OtherThing.java") << """
                class OtherThing {
                }
            """
            file("src/main/java/Thing.java") << """
                class Thing extends OtherThing {
                }
            """
    
            when:
            configurationCacheRun "assemble"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

            'SomeEnum'   | 'SomeEnum.free'                | 'SomeEnum.paid'
            'Thing'      | 'objects.named(Thing, "free")' | 'objects.named(Thing, "paid")'
            'OtherThing' | 'new OtherThing(name: "free")' | 'new OtherThing(name: "paid")'
        }
    
        def "compatibility and disambiguation rules can be defined by consuming build"() {
            given:
            createDirs("a", "b", "includedBuild")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            public String doSomething() {
                Number thing = getThing();
                List<String> otherThing = getOtherThing();
                return Joiner.on(" ").join(otherThing) + " " + thing;
            }
        }
    
        public static abstract class AbstractClassWithTypeParamProperty implements InterfacePropertyWithTypeParamBean<Param<String>> {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
Back to top