Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for browser (0.17 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/Member.java

    /**
     * Models a single element of a codebase that may be inspected and acted upon with
     * bytecode manipulation libraries tools like ASM.
     *
     * <p>The notion of "member" here is similar to, but broader than
     * {@link java.lang.reflect.Member}. The latter is essentially an abstraction over fields,
     * methods and constructors; this Member and its subtypes represent not only fields and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddresses.java

                        }
                    }
                }
            } catch (SocketException e) {
                // Log the error but analyze the remaining interfaces. We could for example run into https://bugs.openjdk.java.net/browse/JDK-7032558
                logger.debug("Error while querying interface {} for IP addresses", networkInterface, e);
            } catch (Throwable e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "quicksand",
            "eyes",
            "thumb",
            "church",
            "needle",
            "celery",
            "competition",
            "metal",
            "box",
            "industry",
            "brother",
            "deer",
            "waves",
            "advice",
            "acoustics",
            "nut",
            "store",
            "finger"
        ]
    
        private final Map<String, String> mappingCache = [:].withDefault {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependenciesSpec.java

     * These plugins are contributed by users of Gradle to extend Gradle's functionality.
     * Visit <a href="http://plugins.gradle.org">plugins.gradle.org</a> to browse the available plugins and versions.
     * </p>
     * <p>
     * To use a community plugin, the fully qualified id must be specified along with a version.
     * </p>
     * <h3>Settings Script Usage</h3>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 16 17:46:02 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ClassTypeWrapper.java

            try {
                return tryToGetRepresentation(full);
            } catch (NoClassDefFoundError ignore) {
                // This happens for IBM JDK 6 for nested interfaces -- see https://issues.apache.org/jira/browse/GROOVY-7010
                // Let's try to return something as close as possible to the intended value
                Class<?> clazz = unwrap();
                Package pkg = clazz.getPackage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 11 21:42:04 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestScraper.java

                                }
                            }
    
                            // If no current test can be associated to the output, the last known descriptor is used.
                            // See https://bugs.swift.org/browse/SR-1127 for more information.
                        } else if (lastDescriptor != null) {
                            processor.output(lastDescriptor.getId(), new DefaultTestOutputEvent(destination, text));
                        } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyNotationIntegrationSpec.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "Task uses the Configuration API")
        @Issue("https://issues.gradle.org/browse/GRADLE-3271")
        def "gradleApi dependency implements contentEquals"() {
            when:
            buildFile << """
                configurations {
                  conf
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:32 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        boolean wrapperCanExecute(GradleVersion version);
    
        /**
         * Early versions had bugs that prevented any values having spaces in them in GRADLE_OPTS or JAVA_OPTS.
         *
         * See https://issues.gradle.org/browse/GRADLE-1730
         */
        boolean isSupportsSpacesInGradleAndJavaOpts();
    
        /**
         * The 'ivy' repository was introduced in Milestone-3, but early versions didn't work with spaces in the artifact pattern.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ZipIntegrationTest.groovy

            "'UNSUPPORTED'" | "Charset for metadataCharset 'UNSUPPORTED' is not supported by your JVM"
            null            | "metadataCharset must not be null"
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-1346")
        def "task is out of date after `into` changes"() {
            file("src/main/java/Main.java") << "public class Main {}"
            buildFile << """
                apply plugin: "java"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

            when:
            emptyDir.deleteDir()
            run emptyDirTask
            then:
            executedAndNotSkipped emptyDirTask
            emptyDir.directory
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-834")
        def "task without actions is reported as up-to-date when it's up-to-date"() {
            file("src/main/java/Main.java") << "public class Main {}"
            buildFile << """
                apply plugin: "java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top