Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 453 for pollable (0.2 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

                        @Nullable Project project,
                        @Nullable Artifact rootArtifact,
                        @Nullable DependencyCoordinate root,
                        @Nonnull Collection<DependencyCoordinate> dependencies,
                        @Nonnull Collection<DependencyCoordinate> managedDependencies,
                        boolean verbose,
                        @Nullable PathScope pathScope,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

        private final String problemId;
    
        private final Type type;
    
        public DeprecatedFeatureUsage(
            String summary,
            String removalDetails,
            @Nullable String advice,
            @Nullable String contextualAdvice,
            @Nullable DocLink documentation,
            Type type,
            String problemIdDisplayName,
            String problemId,
            Class<?> calledFrom
        ) {
            super(summary, calledFrom);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

        @Nullable
        public static Jvm getJdk7() {
            return getJdk(JavaVersion.VERSION_1_7);
        }
    
        @Nullable
        public static Jvm getJdk8() {
            return getJdk(JavaVersion.VERSION_1_8);
        }
    
        @Nullable
        public static Jvm getJdk11() {
            return getJdk(JavaVersion.VERSION_11);
        }
    
        @Nullable
        public static Jvm getJdk17() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

            private final Throwable buildFailure;
    
            public DefaultDevelocityPluginResult(@Nullable Throwable buildFailure) {
                this.buildFailure = buildFailure;
            }
    
            @Nullable
            @Override
            public Throwable getFailure() {
                return buildFailure;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

    package org.gradle.api.problems.internal;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Interface for describing structured information about a problem.
     */
    public interface Problem {
    
        /**
         * Returns the problem definition, i.e. the data that is independent of the report context.
         */
        ProblemDefinition getDefinition();
    
        @Nullable
        String getContextualLabel();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

        }
    
        private static @Nullable InternalContextualLabel toInternalContextualLabel(@Nullable String contextualLabel) {
            return contextualLabel == null ? null : new DefaultContextualLabel(contextualLabel);
        }
    
        private static @Nullable InternalDetails toInternalDetails(@Nullable String details) {
            return details == null ? null : new DefaultDetails(details);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java

      @JsMethod
      static native boolean stringIsNullOrEmpty(@Nullable String string) /*-{
        return !string;
      }-*/;
    
      @JsMethod
      static native String nullToEmpty(@Nullable String string) /*-{
        return string || "";
      }-*/;
    
      @JsMethod
      static native String emptyToNull(@Nullable String string) /*-{
        return string || null;
      }-*/;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 27 13:56:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerNotificationException.java

    import javax.annotation.Nullable;
    
    /**
     * A {@code ListenerNotificationException} is thrown when a listener cannot be notified of an event.
     */
    @Contextual
    public class ListenerNotificationException extends DefaultMultiCauseException {
        private final MethodInvocation event;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestDescriptorInternal.java

    import org.gradle.api.NonNullApi;
    import org.gradle.api.tasks.testing.TestDescriptor;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import javax.annotation.Nullable;
    
    @UsedByScanPlugin
    @NonNullApi
    public interface TestDescriptorInternal extends TestDescriptor {
        @Nullable
        @Override
        TestDescriptorInternal getParent();
    
        Object getId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * @return new class implementation bytes in class file format or {@code null} to continue loading the original implementation
         */
        @Nullable
        byte[] instrumentClass(@Nullable String className, @Nullable ProtectionDomain protectionDomain, byte[] classfileBuffer);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top