Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for expectedValue (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SystemPropertiesCompositeBuildFixture.groovy

            }
        }
    
        String expectedConfigurationTimeValue() {
            String expectedValue
            switch (spec.systemPropertyAccess) {
                case SystemPropertyAccess.ROOT_SETTINGS_SCRIPT:
                    RootBuild rootBuild = spec.systemPropertyDefinitions.find { it instanceof RootBuild }
                    expectedValue = rootBuild.propertyValue()
                    break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

                equalTo("42")
            )
        }
    
        private
        fun <T : Any> assertProviderRoundtrip(property: Provider<out T>, expectedValue: T) {
            val loaded = valueCarriedBy(roundtripOf(isolatedActionLambdaWith(property)))
            assertThat(loaded.get(), equalTo(expectedValue))
        }
    
        private
        inline fun <reified K : Any> setPropertyOf(vararg values: K) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

                withInput("Build file 'build.gradle': system property 'CI1'")
            }
            outputContains("CI1 = ${expectedValue}")
    
            where:
            expression                                                             | notDefined | value     | expectedValue
            'System.getProperty("${ci.toUpperCase()}1")'                           | ""         | "defined" | "defined"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    		t.Fatal(err)
    	}
    	set.Spec.Template.Spec.Containers[0].Name = "foo"
    	if set.Annotations == nil {
    		set.Annotations = make(map[string]string)
    	}
    	key := "foo"
    	expectedValue := "bar"
    	set.Annotations[key] = expectedValue
    	restoredSet, err := ApplyRevision(set, revision)
    	if err != nil {
    		t.Fatal(err)
    	}
    	restoredRevision, err := newRevision(restoredSet, 2, restoredSet.Status.CollisionCount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/sparsity/sparsify_model_test.cc

      // Populate input metadata
      auto model_metadata_buffer = std::make_unique<tflite::BufferT>();
      model_metadata_buffer->data =
          std::vector<uint8_t>(expected_value.begin(), expected_value.end());
      input_model.buffers.push_back(std::move(model_metadata_buffer));
      auto metadata_t = std::make_unique<tflite::MetadataT>();
      metadata_t->name = tflite::optimize::kTfLiteReducedPrecisionKey;
      metadata_t->buffer = input_model.buffers.size() - 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          return this;
        }
    
        final void assertNonNullValues(Object... expectedValues) {
          assertEquals(expectedValues.length, arguments.size());
          for (int i = 0; i < expectedValues.length; i++) {
            assertEquals("Default value for parameter #" + i, expectedValues[i], arguments.get(i));
          }
        }
    
        final Object getDefaultParameterValue(int position) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top