Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for actualValue (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

        @Override
        public <T> T getConventionValue(T actualValue, String propertyName, boolean isExplicitValue) {
            if (isExplicitValue) {
                return actualValue;
            }
    
            T returnValue = actualValue;
            if (_mappings.containsKey(propertyName)) {
                boolean useMapping = true;
                if (actualValue instanceof Collection && !((Collection<?>) actualValue).isEmpty()) {
                    useMapping = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputs.java

                    PropertyValue value,
                    InputFilePropertyType filePropertyType
                ) {
                    FileCollection actualValue = FileParameterUtils.resolveInputFileValue(fileCollectionFactory, filePropertyType, value);
                    context.add(actualValue);
                }
            });
        }
    
        private static class TaskInputUnionFileCollection extends CompositeFileCollection implements Describable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultInputFingerprinter.java

                    return;
                }
                Object actualValue = value.getValue();
                try {
                    ValueSnapshot previousSnapshot = previousValueSnapshots.get(propertyName);
                    if (previousSnapshot == null) {
                        valueSnapshotsBuilder.put(propertyName, valueSnapshotter.snapshot(actualValue));
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. pkg/controller/resourcequota/resource_quota_controller_test.go

    			actual := usage.Status.Hard[k]
    			actualValue := actual.String()
    			expectedValue := v.String()
    			if expectedValue != actualValue {
    				t.Errorf("test: %s, Usage Hard: Key: %v, Expected: %v, Actual: %v", testName, k, expectedValue, actualValue)
    			}
    		}
    		for k, v := range testCase.status.Used {
    			actual := usage.Status.Used[k]
    			actualValue := actual.String()
    			expectedValue := v.String()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

                probedSystemProperties.each {
                    def actualValue = actualProperties[it.systemPropertyKey]
                    // write conditionally to simulate wrong number of outputs
                    if (actualValue != null) {
                        output.println(MetadataProbe.MARKER_PREFIX + actualValue)
                    }
                }
                Mock(ExecResult)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                        if (Objects.equals(actualValue, requestedValue)) {
                            return new AttributeMatchDetails(MatchType.EQUAL, requested, requestedValue);
                        }
                    } else {
                        // maybe it matched through coercion
                        Object actualString = actualValue != null ? actualValue.toString() : null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    	for k, v := range expected {
    		actualValue, ok := actual[k]
    		if !ok {
    			t.Errorf("%s: Expected parameter %s not received", name, k)
    			continue
    		}
    		if actualValue[0] != v {
    			t.Errorf("%s: Parameter %s values don't match. Actual: %#v, Expected: %s",
    				name, k, actualValue, v)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  8. pkg/volume/configmap/configmap_test.go

    		} else {
    			actualValue, err := ioutil.ReadFile(configMapDataHostPath)
    			if err != nil {
    				t.Fatalf("Couldn't read configMap data from: %v", configMapDataHostPath)
    			}
    
    			if value != string(actualValue) {
    				t.Errorf("Unexpected value; expected %q, got %q", value, actualValue)
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top