Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for some_value (0.4 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/AbstractPropertySpec.groovy

            given:
            def property = propertyWithValue(someValue())
    
            when:
            def copy = property.shallowCopy()
    
            then:
            copy.orNull == someValue()
        }
    
        def "shallow copy of property does not follow changes to original"() {
            given:
            def property = propertyWithValue(someValue())
    
            when:
            def copy = property.shallowCopy()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 12:47:05 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultAttributesTest.groovy

            when:
            attributes.put(':::', 'someValue')
    
            then:
            thrown(ManifestException)
    
            when:
            attributes.put(null, 'someValue')
    
            then:
            thrown(ManifestException)
        }
    
        def testKeyValidationWithPutAll() {
            when:
            attributes.putAll(':::': 'someValue')
    
            then:
            thrown(ManifestException)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/ToolingApiModelCheckerTest.groovy

            DummyModel actual = new DummyModel() {
                @Override
                String getValue() {
                    return "someValue"
                }
            }
    
            when:
            ToolingApiModelChecker.checkModel(
                actual,
                dummyModel("someValue"),
                [
                    { it.value }
                ]
            )
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:26:50 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildScriptClasspathIntegrationTest.java

                    "    println someValue",
                    "    println anotherValue",
                    "    new ImportedClass()",
                    "    new OnDemandImportedClass()",
                    "  }",
                    "}",
                    "ext.a = new ImportedClass()",
                    "ext.b = OnDemandImportedClass",
                    "ext.c = someValue",
                    "ext.d = anotherValue",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. tests/test_param_include_in_schema.py

                {},
                200,
                {"hidden_cookie": None},
            ),
            (
                "/hidden_cookie",
                {"hidden_cookie": "somevalue"},
                200,
                {"hidden_cookie": "somevalue"},
            ),
        ],
    )
    def test_hidden_cookie(path, cookies, expected_status, expected_response):
        client = TestClient(app, cookies=cookies)
        response = client.get(path)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitEnclosedRunnerIntegrationTest.groovy

                    private static String someValue;
    
                    @BeforeClass
                    public static void setSomeValue() {
                        someValue = "test";
                    }
    
                    public static class InnerClass {
                        @Test
                        public void aTest() {
                            Assert.assertEquals( "test", someValue );
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/ProvidersTest.groovy

        Provider<Integer> providerWithValue(Integer value) {
            return Providers.of(value)
        }
    
        @Override
        Class<Integer> type() {
            return Integer
        }
    
        @Override
        Integer someValue() {
            return 12
        }
    
        @Override
        Integer someOtherValue() {
            return 123
        }
    
        @Override
        Integer someOtherValue2() {
            return 1234
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    Gradle can also set project properties when it sees specially-named system properties or environment variables.
    If the environment variable name looks like `ORG_GRADLE_PROJECT___prop__=somevalue`, then Gradle will set a `prop` property on your project object, with the value of `somevalue`.
    Gradle also supports this for system properties, but with a different naming pattern, which looks like `org.gradle.project.__prop__`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FilePropertyTest.groovy

    class FilePropertyTest extends FileSystemPropertySpec<RegularFile> {
        @Override
        Class<RegularFile> type() {
            return RegularFile.class
        }
    
        @Override
        RegularFile someValue() {
            return baseDirectory.file("dir1").get()
        }
    
        @Override
        RegularFile someOtherValue() {
            return baseDirectory.file("other1").get()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

          '@type': type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm
          config:
            configuration:
              '@type': type.googleapis.com/google.protobuf.StringValue
              value: '{"header_1":"some_value_1","header_2":"another_value"}'
            name: default.display-metadata
            vmConfig:
              code:
                local:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top