Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for Original (0.53 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

                }
            }
            return done;
        }
    
        public static Type simplifyType(Type original) {
            if (original instanceof Class) {
                return original;
            }
    
            if (original instanceof GenericArrayType) {
                Type componentType = ((GenericArrayType) original).getGenericComponentType();
                Type repackedComponentType = simplifyType(componentType);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MavenImmutableAttributesFactory.java

        ImmutableAttributes compileScope(ImmutableAttributes original);
        ImmutableAttributes runtimeScope(ImmutableAttributes original);
        ImmutableAttributes platformWithUsage(ImmutableAttributes original, String usage, boolean enforced);
        ImmutableAttributes sourcesVariant(ImmutableAttributes original);
        ImmutableAttributes javadocVariant(ImmutableAttributes original);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

                    output.write(current);
                    if ((original[idx + 1] == 'N' || original[idx + 1] == 'n')
                        && (original[idx + 2] == 'A' || original[idx + 2] == 'a')
                        && (original[idx + 3] == 'M' || original[idx + 3] == 'm')
                        && (original[idx + 4] == 'E' || original[idx + 4] == 'e')
                        && (original[idx + 5] == ':')) {
                        if (useCarriageReturns) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java

            }
    
            return result;
    
        }
    
        /**
         * Quote and escape input value for CSV
         *
         * @param original Original text.
         * @return Escaped text.
         */
        public static String quoteEscape(final String original) {
            String result = original;
    
            if (result.indexOf('\"') >= 0) {
                result = result.replace("\"", ESCAPED_QUOTE);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/DependencyVerificationOverride.java

    import org.gradle.internal.component.external.model.ModuleComponentGraphResolveState;
    
    import java.io.File;
    
    public interface DependencyVerificationOverride {
        DependencyVerificationOverride NO_VERIFICATION = original -> original;
        String VERIFICATION_METADATA_XML = "verification-metadata.xml";
    
        static File dependencyVerificationsFile(File gradleDirectory) {
            return new File(gradleDirectory, VERIFICATION_METADATA_XML);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomResolveIntegrationTest.groovy

            settingsFile """
                rootProject.name = 'test'
            """
        }
    
        def "follows relocation to another group"() {
            given:
            def original = mavenHttpRepo.module("groupA", "projectA", "1.2").publishPom()
            original.pomFile.text = """
    <project>
        <groupId>groupA</groupId>
        <artifactId>projectA</artifactId>
        <version>1.2</version>
        <distributionManagement>
            <relocation>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            app.library.writeSources(file("src/hello"))
    
            and:
            buildFile << """
    apply plugin: 'cpp'
    model {
        components {
            def modPath = { File original -> new File(original.parent + "/new_output/_" + original.name) }
            main(NativeExecutableSpec) {
                binaries.all {
                    executable.file = modPath(executableFile)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top