Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for Original (0.42 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                );
            }
            return Optional.of(left(original));
        }
    
        private File transformFile(File original, FileSystemLocationSnapshot snapshot, ClasspathFileTransformer transformer, InstrumentationTypeRegistry typeRegistry) {
            final File result = transformer.transform(original, snapshot, cache.getBaseDir(), typeRegistry);
            markAccessed(result, original);
            return result;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/round_trip_test.go

    	t.Logf("seed = %v", seed)
    	f.RandSource(rand.New(rand.NewSource(seed)))
    
    	for i := 0; i < 1000; i++ {
    		original := &authenticationv1.TokenReview{}
    		f.Fuzz(&original.Spec)
    		f.Fuzz(&original.Status)
    		converted := &authenticationv1beta1.TokenReview{
    			Spec:   v1SpecToV1beta1Spec(&original.Spec),
    			Status: v1StatusToV1beta1Status(original.Status),
    		}
    		roundtripped := &authenticationv1.TokenReview{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pkg/apis/batch/v1/defaults_test.go

    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.JobPodReplacementPolicy, test.enablePodReplacementPolicy)
    			original := test.original
    			expected := test.expected
    			obj2 := roundTrip(t, runtime.Object(original))
    			actual, ok := obj2.(*batchv1.Job)
    			if !ok {
    				t.Fatalf("Unexpected object: %v", actual)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/DefaultFailure.java

            }
    
            this.original = original;
            this.stackTrace = ImmutableList.copyOf(stackTrace);
            this.frameRelevance = ImmutableList.copyOf(frameRelevance);
            this.suppressed = ImmutableList.copyOf(suppressed);
            this.causes = ImmutableList.copyOf(causes);
        }
    
        @Override
        public Class<? extends Throwable> getExceptionType() {
            return original.getClass();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/AbstractStyledTextOutput.java

                Style original = textOutput.getStyle();
                textOutput.style(style).append(c).style(original);
                return this;
            }
    
            @Override
            public StyledTextOutput append(CharSequence csq) {
                Style original = textOutput.getStyle();
                textOutput.style(style).append(csq).style(original);
                return this;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/PCHUtils.java

                @Override
                public T transform(T original) {
                    List<File> newSourceFiles = new ArrayList<>();
                    for (File sourceFile : original.getSourceFiles()) {
                        newSourceFiles.add(generatePCHSourceFile(original, sourceFile));
                    }
                    original.setSourceFiles(newSourceFiles);
                    return original;
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/GroovyInterceptorsSubstitution.groovy

            super(new DefaultCallSiteInterceptorSet(testProvider));
        }
    
        @Override
        ThreadLocalCallSiteInterceptorSet decorateWithThreadLocalImpl(CallSiteInterceptorSet original) {
            return new ThreadLocalCallSiteInterceptorSet(original)
        }
    
        @Override
        void setCurrentInterceptorSet(CallSiteInterceptorSet newInterceptorSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/source/PrintStreamLoggingSystemTest.groovy

    import org.gradle.util.internal.TextUtil
    import spock.lang.Specification
    
    class PrintStreamLoggingSystemTest extends Specification {
    
        private final OutputStream original = new ByteArrayOutputStream()
        private final PrintStream originalStream = new PrintStream(original)
        private PrintStream stream = originalStream
        private final OutputEventListener listener = Mock()
        private final Clock timeProvider = { 1200L } as Clock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/JvmInterceptorsSubstitution.groovy

        }
    
        @Override
        ThreadLocalJvmBytecodeInterceptorFactorySet decorateWithThreadLocalImpl(JvmBytecodeInterceptorFactorySet original) {
            return new ThreadLocalJvmBytecodeInterceptorFactorySet(original)
        }
    
        @Override
        void setCurrentInterceptorSet(JvmBytecodeInterceptorFactorySet newInterceptorSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/kstatus/helper_test.go

    	}{
    		{
    			name:       "unchanged",
    			conditions: []metav1.Condition{original},
    			condition: func() metav1.Condition {
    				c := original
    				c.LastTransitionTime = transitionTime
    				return c
    			}(),
    			want: []metav1.Condition{original},
    		},
    		{
    			name:       "status changed",
    			conditions: []metav1.Condition{original},
    			condition:  statusChanged,
    			want:       []metav1.Condition{statusChanged},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 18:11:40 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top