Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 453 for pollable (0.35 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/AbstractClientProvidedBuildActionRunner.java

            }
        }
    
        protected interface ClientAction {
            @Nullable
            Object getProjectsEvaluatedAction();
    
            @Nullable
            Object getBuildFinishedAction();
    
            void collectActionResult(SerializedPayload serializedResult, PhasedActionResult.Phase phase);
    
            @Nullable
            SerializedPayload getResult();
    
            boolean isRunTasks();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:55:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/main/java/org/gradle/internal/installation/CurrentGradleInstallation.java

        public CurrentGradleInstallation(@Nullable GradleInstallation gradleInstallation) {
            this.gradleInstallation = gradleInstallation;
        }
    
        @Nullable // if no installation can be located
        public GradleInstallation getInstallation() {
            return gradleInstallation;
        }
    
        @Nullable // if no installation can be located
        public static GradleInstallation get() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerLogEventListener.java

        }
    
        public Object withWorkerLoggingProtocol(WorkerLoggingProtocol newLoggingProtocol, Callable<?> callable) throws Exception {
            WorkerLoggingProtocol defaultProtocol = workerLoggingProtocol.getAndSet(newLoggingProtocol);
            try {
                return callable.call();
            } finally {
                workerLoggingProtocol.getAndSet(defaultProtocol);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestFailureDetails.java

    import javax.annotation.Nullable;
    
    /**
     * Contains serializable structural information about a test failure.
     *
     * @see org.gradle.api.internal.tasks.testing.junit.result.TestFailure
     * @since 7.6
     */
    @Incubating
    public interface TestFailureDetails {
    
        /**
         * Returns the failure message.
         *
         * @return the failure message
         */
        @Nullable
        String getMessage();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private static FailureContainer toFailureContainer(@Nullable InternalBasicProblemDetailsVersion3 problemDetails) {
            return toFailureContainer(problemDetails == null ? null : problemDetails.getFailure());
        }
    
        private static FailureContainer toFailureContainer(@Nullable InternalFailure failure) {
            if (failure == null) {
                return new DefaultFailureContainer(null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtFunctionalTypeRenderer.kt

                        },
                    )
                    if (annotationsRendered || type.nullability == KaTypeNullability.NULLABLE) append(")")
                    if (type.nullability == KaTypeNullability.NULLABLE) append("?")
                }
            }
        }
    
        public object AS_CLASS_TYPE : KaFunctionalTypeRenderer {
            override fun renderType(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/NullPointerTester.java

    import junit.framework.Assert;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A test utility that verifies that your methods and constructors throw {@link
     * NullPointerException} or {@link UnsupportedOperationException} whenever null is passed to a
     * parameter whose declaration or type isn't annotated with an annotation with the simple name
     * {@code Nullable}, {@code CheckForNull}, {@code NullableType}, or {@code NullableDecl}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeAwareProblemBuilder.java

    import javax.annotation.Nullable;
    
    @NonNullApi
    public interface TypeAwareProblemBuilder extends InternalProblemSpec {
        TypeAwareProblemBuilder withAnnotationType(@Nullable Class<?> classWithAnnotationAttached);
    
        TypeAwareProblemBuilder forProperty(String propertyName);
    
        TypeAwareProblemBuilder parentProperty(@Nullable String parentProperty);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

            }
    
            @SuppressWarnings("unchecked")
            Class<? extends Callable<Void>> workerClass = (Class<? extends Callable<Void>>) implementationClassLoader.loadClass("org.gradle.process.internal.worker.child.SystemApplicationClassLoaderWorker").asSubclass(Callable.class);
            Callable<Void> main = workerClass.getConstructor(DataInputStream.class).newInstance(instr);
            main.call();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

    import junit.framework.Assert;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A test utility that verifies that your methods and constructors throw {@link
     * NullPointerException} or {@link UnsupportedOperationException} whenever null is passed to a
     * parameter whose declaration or type isn't annotated with an annotation with the simple name
     * {@code Nullable}, {@code CheckForNull}, {@code NullableType}, or {@code NullableDecl}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top