Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for some_value (0.16 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. staging/src/k8s.io/apiserver/pkg/apis/audit/fuzzer/fuzzer.go

    					ContentType: runtime.ContentTypeJSON,
    				}
    			}
    			switch c.RandBool() {
    			case true:
    				e.ResponseObject = nil
    			case false:
    				e.ResponseObject = &runtime.Unknown{
    					TypeMeta:    runtime.TypeMeta{APIVersion: "", Kind: ""},
    					Raw:         []byte(`{"apiVersion":"","kind":"Pod","someKey":"someValue"}`),
    					ContentType: runtime.ContentTypeJSON,
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 04 16:10:17 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  10. pkg/apis/admission/fuzzer/fuzzer.go

    		func(s *runtime.RawExtension, c fuzz.Continue) {
    			u := &unstructured.Unstructured{Object: map[string]interface{}{
    				"apiVersion": "unknown.group/unknown",
    				"kind":       "Something",
    				"somekey":    "somevalue",
    			}}
    			s.Object = u
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 14 21:57:55 UTC 2019
    - 1.2K bytes
    - Viewed (0)
Back to top