Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for NonNullApi (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeAwareProblemBuilder.java

     * limitations under the License.
     */
    
    package org.gradle.internal.reflect.validation;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.problems.internal.InternalProblemSpec;
    
    import javax.annotation.Nullable;
    
    @NonNullApi
    public interface TypeAwareProblemBuilder extends InternalProblemSpec {
        TypeAwareProblemBuilder withAnnotationType(@Nullable Class<?> classWithAnnotationAttached);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeModelSideEffectExecutor.java

    package org.gradle.internal.buildtree;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Executes internal side effects of a build action while ensuring
     * they will be re-executed in case the build action result is loaded from cache.
     *
     * @see BuildTreeModelSideEffect
     */
    @NonNullApi
    @ServiceScope(Scope.BuildTree.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/ResolutionProvider.java

     */
    
    package org.gradle.internal.exceptions;
    
    import org.gradle.api.NonNullApi;
    
    import java.util.List;
    
    /**
     * A provider of resolutions for an exception.
     * Exceptions can be derived from this interface to provide a list of resolutions that are then displayed in the suggestion section of the error message.
     */
    
    @NonNullApi
    public interface ResolutionProvider {
        List<String> getResolutions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1014 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeModelSideEffect.java

    package org.gradle.internal.buildtree;
    
    import org.gradle.api.NonNullApi;
    
    import java.io.Serializable;
    
    /**
     * An internal side effect executed during a build action
     * that must be observed even if the resulting model is loaded from cache.
     * <p>
     * The implementations are serialized by the Configuration Cache.
     *
     * @see BuildTreeModelSideEffectExecutor
     */
    @NonNullApi
    public interface BuildTreeModelSideEffect extends Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestDescriptorInternal.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing;
    
    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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmInstallationProblemReporter.java

     * as e.g. the {@code GradleBuild} task could be used to change the system properties and environment variables that affect the JVM installation.
     * </p>
     */
    @NonNullApi
    @ServiceScope(Scope.BuildSession.class)
    public final class JvmInstallationProblemReporter {
        @NonNullApi
        private static final class ProblemReport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JavaInstallationRegistry.java

     */
    
    package org.gradle.internal.jvm.inspection;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.jvm.toolchain.internal.InstallationLocation;
    
    import java.util.List;
    
    
    @NonNullApi
    @ServiceScope({ Scope.Build.class, Scope.Global.class })
    public interface JavaInstallationRegistry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/problem/WorkerProblemEmitter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.problem;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.problems.internal.Problem;
    import org.gradle.api.problems.internal.ProblemEmitter;
    import org.gradle.internal.operations.OperationIdentifier;
    
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/AdditionalData.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.NonNullApi;
    
    import java.util.Map;
    
    /**
     * Additional data attached to the problem.
     * <p>
     * There are no subtypes defined for this interface yet. Clients should expect some defined in future versions of Gradle.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/internal/file/FileSystemLocationPropertyInternal.java

    package org.gradle.api.internal.file;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.file.FileSystemLocation;
    import org.gradle.api.file.FileSystemLocationProperty;
    import org.gradle.api.provider.Provider;
    
    /**
     * This class was added just to support FileSystemLocation properties in the convention mapping.
     *
     * Should be removed once ConventionMapping is removed.
     */
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top