Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Original (1.3 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/EscapeUserArgs.java

        public static String escapeUserArg(String original) {
            return new EscapeUserArgs().transform(original);
        }
    
        public static List<String> escapeUserArgs(List<String> original) {
            return new EscapeUserArgs().transform(original);
        }
    
        @Override
        public String transform(String original) {
            return original.replace("\\", "\\\\").replace("\"", "\\\"");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandlerTest.groovy

            assert current.build_time == original.build_time
            assert current.version == original.version
            assert current.options == original.options
            assert current.inputs == original.inputs
        }
    
        void assertFileHasResetTimestamp(SwiftDepsHandler.SwiftDeps current, File... inputs) {
            assert !original.inputs.isEmpty()
            def changedInputs = inputs*.absolutePath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r64/DaemonReuseCrossVersionSpec.groovy

            runBuildViaTAPI()
            def original = getDaemonUID()
            when:
            runBuildViaTAPI()
            then:
            assertSameDaemon(original)
        }
    
        def "tooling API client reuses existing daemon started by CLI"() {
            runBuildViaCLI()
            def original = getDaemonUID()
            when:
            runBuildViaTAPI()
            then:
            assertSameDaemon(original)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/ContextClassLoaderDispatchTest.groovy

        private ClassLoader original
        private final ContextClassLoaderDispatch dispatch = new ContextClassLoaderDispatch(target, appClassLoader)
    
        def setup() {
            original = Thread.currentThread().contextClassLoader
        }
    
        public void cleanup() {
            Thread.currentThread().contextClassLoader = original
        }
    
        def 'sets ContextClassLoader during dispatch'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

        }
    
        def "original jars are returned in the list of original jars"() {
            given:
            TransformedClassPath cp = transformedClassPath("original.jar": "transformed.jar")
    
            expect:
            cp.asFiles == [file("original.jar")]
            cp.asURIs == [file("original.jar").toURI()]
            cp.asURLs == [file("original.jar").toURI().toURL()]
            cp.asURLArray == [file("original.jar").toURI().toURL()].toArray()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top