Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for Original (0.77 sec)

  1. platforms/core-execution/worker-main/src/test/groovy/org/gradle/process/internal/worker/messaging/WorkerConfigSerializerTest.groovy

            processed.serverAddress == original.serverAddress
            processed.workerId == original.workerId
            processed.displayName == original.displayName
            processed.workerAction instanceof TestAction
            processed.workerAction.value == original.workerAction.value
        }
    
        private static class TestAction implements Action<WorkerProcessContext>, Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/api/internal/PropertyListTransformer.java

         * original.
         * @param original the property list to transform
         * @return the transformed property list
         */
        @Override
        public T transform(T original) {
            return doTransform(original);
        }
    
        /**
         * Transforms a property list object and write them out to a stream.
         * This will modify the original property list.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/internalbootstrap/defaults_test.go

    			defaulted := original.DeepCopyObject().(*flowcontrol.PriorityLevelConfiguration)
    			scheme.Default(defaulted)
    			if apiequality.Semantic.DeepEqual(original, defaulted) {
    				t.Logf("Defaulting makes no change to PriorityLevelConfiguration: %q", original.Name)
    				return
    			}
    			t.Errorf("Expected defaulting to not change PriorityLevelConfiguration: %q, diff: %s", original.Name, cmp.Diff(original, defaulted))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

            def original = Proxy.newProxyInstance(cl, [payloadClass] as Class[], new GroovyInvocationHandler())
    
            when:
            def received = receiver.deserialize(originator.serialize(original))
            def reply = originator.deserialize(receiver.serialize(received))
    
            then:
            received.class != original.class
            !payloadClass.isInstance(received)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

          other: null
        result:
          name: 1
          value: 1
      - description: defined null values should propagate removing original fields
        original:
          name: original-name
          value: original-value
        current:
          name: original-name
          value: original-value
          other: current-other
        modified:
          name: modified-name
          value: null
        twoWay:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultMavenImmutableAttributesFactory.java

        }
    
        @Override
        public ImmutableAttributes compileScope(ImmutableAttributes original) {
            List<Object> key = ImmutableList.of(original, Usage.JAVA_API);
            return concatCache.computeIfAbsent(key, k -> {
                ImmutableAttributes result = original;
                result = concat(result, USAGE_ATTRIBUTE, new CoercingStringValueSnapshot(Usage.JAVA_API, objectInstantiator));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

        public PluginDescriptor(PluginDescriptor original) {
            this.setGroupId(original.getGroupId());
            this.setArtifactId(original.getArtifactId());
            this.setVersion(original.getVersion());
            this.setGoalPrefix(original.getGoalPrefix());
            this.setInheritedByDefault(original.isInheritedByDefault());
            this.setName(original.getName());
            this.setDescription(original.getDescription());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/io/AbstractIoTest.groovy

            when:
            executeWithException(original)
            then:
            def ex = thrown type
            ex === original
    
            where:
            original << [
                new RuntimeException("lajos"),
                new Error("lajos"),
                new UncheckedIOException(new IOException("lajos"))
            ]
            type = original.class
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParser.java

        @Override
        public Version transform(String original) {
            return cache.computeIfAbsent(original, this::parse);
        }
    
        private Version parse(String original) {
            List<String> parts = new ArrayList<>();
            boolean digit = false;
            int startPart = 0;
            int pos = 0;
            int endBase = 0;
            int endBaseStr = 0;
            for (; pos < original.length(); pos++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/ThreadLocalInterceptorSet.groovy

        final T original
    
        ThreadLocalInterceptorSet(T original) {
            this.original = original
        }
    
        boolean isEmpty() {
            substitutions.get() == 0
        }
    
        void substituteForCurrentThread(T substitution) {
            if (threadLocalDecorators.get() != original) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 16:29:37 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top