Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for some_value (0.31 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            def unpackedValue = value.get()
            then:
            unpackedValue == someValue()
            1 * sideEffect.execute(someValue())
            0 * _
    
            when:
            unpackedValue = executionTimeValue.toValue().get()
            then:
            unpackedValue == someValue()
            1 * sideEffect.execute(someValue())
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

               (ValueEquals<"0.5"> $half),
               (ValueEquals<"0.5"> $half1),
               (ValueEquals<"0.5"> $half2),
               (SameValue $floor, $floor1),
               (SameValue $floor, $floor2),
               (SameValue $floor, $floor3),
               (SameValue $frac, $frac1),
               (FloatOrDefaultCompare $compare_type0),
               (FloatOrDefaultCompare $compare_type1),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

        oneValueAccumulator = new PairedStatsAccumulator();
        oneValueAccumulator.add(ONE_VALUE, OTHER_ONE_VALUE);
    
        oneValueAccumulatorByAddAllEmptyPairedStats = new PairedStatsAccumulator();
        oneValueAccumulatorByAddAllEmptyPairedStats.add(ONE_VALUE, OTHER_ONE_VALUE);
        oneValueAccumulatorByAddAllEmptyPairedStats.addAll(emptyAccumulator.snapshot());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_query_params_str_validations/test_tutorial014_py310.py

        client = TestClient(app)
        return client
    
    
    @needs_py310
    def test_hidden_query(client: TestClient):
        response = client.get("/items?hidden_query=somevalue")
        assert response.status_code == 200, response.text
        assert response.json() == {"hidden_query": "somevalue"}
    
    
    @needs_py310
    def test_no_hidden_query(client: TestClient):
        response = client.get("/items")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        emptyAccumulatorByAddAllEmptyStats.addAll(Stats.of());
    
        oneValueAccumulator = new StatsAccumulator();
        oneValueAccumulator.add(ONE_VALUE);
    
        oneValueAccumulatorByAddAllEmptyStats = new StatsAccumulator();
        oneValueAccumulatorByAddAllEmptyStats.add(ONE_VALUE);
        oneValueAccumulatorByAddAllEmptyStats.addAll(Stats.of());
    
        twoValuesAccumulator = new StatsAccumulator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 34K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            when:
            project.ext.somename = 'somevalue'
            then:
            project.inheritedScope.hasProperty('somename')
            project.inheritedScope.getProperty('somename') == 'somevalue'
        }
    
        def conventionPropertiesAreInheritable() {
            when:
            project.convention.plugins.test = new TestConvention()
            project.convention.plugins.test.conv = 'somevalue'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskCustomTypesInputPropertyIntegrationTest.groovy

        public void go() { }
    }
    """
        }
    
        def "task can take an input with custom type and task action defined in the build script"() {
            buildFile << """
    task someTask {
        inputs.property "someValue", new CustomType("value1")
        def f = file("build/e1")
        outputs.dir f
        doLast {
            f.mkdirs()
        }
    }
    
    ${customSerializableType()}
    """
    
            given:
            run "someTask"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 16:04:50 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/input/pilot_override_values.yaml

              cpu: 222m
              memory: 333Mi
          autoscaleMax: 8
          autoscaleMin: 2
          rollingMaxUnavailable: 30%
          nodeSelector:
            node-name: test
      unvalidatedValues:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 23 18:13:51 UTC 2021
    - 511 bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

            when:
            ant.otherProp = 'true'
            ant.condition(property: 'prop', value: 'someValue') {
                or {
                    and {
                        isSet(property: 'otherProp')
                        not { isSet(property: 'missing') }
                    }
                }
            }
    
            then:
            ant.prop == 'someValue'
        }
    
        def "sets context classloader during execution"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
Back to top