Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for some_value (0.32 sec)

  1. 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)
  2. 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)
  3. android/guava-tests/test/com/google/common/math/StatsTest.java

        assertThrows(IllegalArgumentException.class, () -> Stats.meanOf());
        assertThrows(IllegalArgumentException.class, () -> Stats.meanOf(ImmutableList.<Number>of()));
        assertThat(Stats.meanOf(ONE_VALUE)).isWithin(ALLOWED_ERROR).of(ONE_VALUE);
        assertThat(Stats.meanOf(POSITIVE_INFINITY)).isPositiveInfinity();
        assertThat(Stats.meanOf(NEGATIVE_INFINITY)).isNegativeInfinity();
        assertThat(Stats.meanOf(NaN)).isNaN();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DirectoryPropertyTest.groovy

    class DirectoryPropertyTest extends FileSystemPropertySpec<Directory> {
        @Override
        Class<Directory> type() {
            return Directory.class
        }
    
        @Override
        Directory someValue() {
            return baseDirectory.dir("dir1").get()
        }
    
        @Override
        Directory someOtherValue() {
            return baseDirectory.dir("other1").get()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MappingProviderTest.groovy

            return new MappingProvider(String, Providers.notDefined(), { "{$it}" })
        }
    
        @Override
        Class<String> type() {
            return String
        }
    
        @Override
        String someValue() {
            "{s1}"
        }
    
        @Override
        String someOtherValue() {
            "{other1}"
        }
    
        @Override
        String someOtherValue2() {
            "{other2}"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultProviderTest.groovy

            return new DefaultProvider<String>({ value })
        }
    
        @Override
        Class<String> type() {
            return String
        }
    
        @Override
        String someValue() {
            return "s1"
        }
    
        @Override
        String someOtherValue() {
            return "other1"
        }
    
        @Override
        String someOtherValue2() {
            return "other2"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

            def p = new TestProvider()
            p.value = value
            return p
        }
    
        @Override
        Class<String> type() {
            return String
        }
    
        @Override
        String someValue() {
            "s2"
        }
    
        @Override
        String someOtherValue() {
            "other1"
        }
    
        @Override
        String someOtherValue2() {
            "other2"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/StatsTesting.java

        for (double y : OTHER_MANY_VALUES) {
          accumulator.add(ONE_VALUE, y);
        }
        return accumulator.snapshot();
      }
    
      private static PairedStats buildConstantValuesPairedStats() {
        PairedStatsAccumulator accumulator = new PairedStatsAccumulator();
        for (int i = 0; i < MANY_VALUES_COUNT; ++i) {
          accumulator.add(ONE_VALUE, OTHER_ONE_VALUE);
        }
        return accumulator.snapshot();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. platforms/software/security/src/test/groovy/org/gradle/plugins/signing/signatory/pgp/PgpSignatoryFactoryTest.groovy

        }
    
        def "undeclared property '#missingPropertyName' throws a descriptive exception if required"() {
            given:
            declaredProperties.each {
                project.ext."$it" = 'someValue'
            }
    
            when:
            factory.createSignatory(project, true)
    
            then:
            def t = thrown(InvalidUserDataException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top