Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for actualValue (0.32 sec)

  1. pkg/kubelet/cm/container_manager_linux.go

    		case KernelTunableWarn:
    			klog.V(2).InfoS("Invalid kernel flag", "flag", flag, "expectedValue", expectedValue, "actualValue", val)
    		case KernelTunableModify:
    			klog.V(2).InfoS("Updating kernel flag", "flag", flag, "expectedValue", expectedValue, "actualValue", val)
    			err = sysctl.SetSysctl(flag, expectedValue)
    			if err != nil {
    				if inuserns.RunningInUserNS() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		}
    		for key, expectedValue := range test.ExpectedLabels {
    			actualValue, ok := node0.Labels[key]
    			if !ok {
    				t.Errorf("%s: Can't find label %v in %v", test.Name, key, node0.Labels)
    			}
    			if actualValue != expectedValue {
    				t.Errorf("%s: label %q: expected value %q, got value %q", test.Name, key, expectedValue, actualValue)
    			}
    		}
    	}
    }
    
    func TestTryUpdateNodeHealth(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    {@link java.lang.Object#equals} invokedMethod? */ public class IsEqual<T> extends BaseMatcher<T> { private final Object expectedValue; public IsEqual(T equalArg) { expectedValue = equalArg; } @Override public boolean matches(Object actualValue) { return areEqual(actualValue, expectedValue); } @Override public void describeTo(Description description) { description.appendValue(expectedValue); } private static boolean areEqual(Object actual, Object expected) { if (actual == null) { return expected == null;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Method Detail matches public boolean matches(java.lang.Object actualValue) Description copied from interface: Matcher Evaluates the matcher for argument item. This method matches against Object, instead of the generic type T. This is because the caller of the Matcher does not know at runtime what the type is (because of type erasure with Java generics). It is down to the implementations to check the correct type. Parameters: actualValue - the object against which the matcher is evaluated. Returns:...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/parallel_device_testlib.h

          TF_NewStatus(), TF_DeleteStatus);
      std::unique_ptr<TF_Tensor, decltype(&TF_DeleteTensor)> actual_value(
          TFE_TensorHandleResolve(handle, status.get()), TF_DeleteTensor);
      ASSERT_EQ(TF_GetCode(status.get()), TF_OK) << TF_Message(status.get());
      ASSERT_EQ(TF_TensorType(actual_value.get()),
                static_cast<TF_DataType>(DataTypeToEnum<value_type>().value));
      EXPECT_EQ(expected_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 09 01:12:35 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/OpenTestAssertionFailedMapperTest.groovy

        private static final FileInfo EXPECTED_FILE_INFO = new FileInfo("expected_file", "expected_content".getBytes(StandardCharsets.UTF_8))
    
        private static final ValueWrapper ACTUAL_STRING_VALUE_WRAPPER = ValueWrapper.create("actual_value")
        private static final ValueWrapper EXPECTED_STRING_VALUE_WRAPPER = ValueWrapper.create("expected_value")
    
        private static final ValueWrapper ACTUAL_INT_VALUE_WRAPPER = ValueWrapper.create(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:57:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java

        for (Entry<String, Integer> entry : expectedEntries) {
          multimap.put(entry.getKey(), entry.getValue());
        }
        List<Integer> actualValues = new ArrayList<>();
        multimap.values().spliterator().forEachRemaining(actualValues::add);
        assertThat(actualValues)
            .containsExactlyElementsIn(Lists.transform(expectedEntries, Entry::getValue))
            .inOrder();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	actualValue, found := meta.Labels[key]
    	if !found {
    		allErrs = append(allErrs, field.Required(fldPath.Child("labels").Key(key),
    			fmt.Sprintf("must be '%s'", expectedValue)))
    		return allErrs
    	}
    	if actualValue != expectedValue {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("labels").Key(key), meta.Labels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. src/os/exec/example_test.go

    	}
    	fmt.Printf("in all caps: %q\n", out.String())
    }
    
    func ExampleCommand_environment() {
    	cmd := exec.Command("prog")
    	cmd.Env = append(os.Environ(),
    		"FOO=duplicate_value", // ignored
    		"FOO=actual_value",    // this value is used
    	)
    	if err := cmd.Run(); err != nil {
    		log.Fatal(err)
    	}
    }
    
    func ExampleCmd_Output() {
    	out, err := exec.Command("date").Output()
    	if err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:18:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // and their values, as strings.  For example, for ASSERT_EQ(foo, bar)
    // where foo is 5 and bar is 6, we have:
    //
    //   expected_expression: "foo"
    //   actual_expression:   "bar"
    //   expected_value:      "5"
    //   actual_value:        "6"
    //
    // The ignoring_case parameter is true iff the assertion is a
    // *_STRCASEEQ*.  When it's true, the string " (ignoring case)" will
    // be inserted into the message.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top