Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 603 for incubation (0.15 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

         *
         * @since 8.6
         */
        @Incubating
        public static final JvmVendorSpec TENCENT = matching(KnownJvmVendor.TENCENT);
    
        /**
         * Determines if the vendor passed as an argument matches this spec.
         * @param vendor the vendor to test
         * @return true if this spec matches the vendor
         *
         * @since 7.6
         */
        @Incubating
        public abstract boolean matches(String vendor);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/TextProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.visualstudio;
    
    import org.gradle.api.Incubating;
    
    /**
     * Provides access to the content of a generated text file.
     */
    @Incubating
    public interface TextProvider {
        /**
         * The text content.
         */
        String getText();
    
        /**
         * Replace the content.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainRequest.java

     */
    
    package org.gradle.jvm.toolchain;
    
    import org.gradle.api.Incubating;
    import org.gradle.platform.BuildPlatform;
    
    /**
     * Describes Java toolchains that need to be auto-provisioned, including
     * their properties (see {@link JavaToolchainSpec}} and the build
     * environment they are needed in.
     *
     * @since 7.6
     */
    @Incubating
    public interface JavaToolchainRequest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/PrebuiltSharedLibraryBinary.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Incubating;
    
    import java.io.File;
    
    /**
     * A shared library that exists at a known location on the filesystem.
     */
    @Incubating
    public interface PrebuiltSharedLibraryBinary extends SharedLibraryBinary {
        /**
         * The shared library file.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/language/base/ProjectSourceSet.java

     */
    package org.gradle.language.base;
    
    import org.gradle.api.DomainObjectSet;
    import org.gradle.api.Incubating;
    
    /**
     * A container of {@link org.gradle.language.base.LanguageSourceSet}s. Added to a project by the {@link org.gradle.language.base.plugins.LanguageBasePlugin}.
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 983 bytes
    - Viewed (0)
  6. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestSuiteTarget.java

     * limitations under the License.
     */
    
    package org.gradle.testing.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Base test suite target.
     *
     * A test suite target is a collection of tests that run in a particular context (operating system, Java runtime, etc).
     *
     * @since 7.3
     */
    @Incubating
    public interface TestSuiteTarget extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 953 bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/VariantComponentSpec.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    import org.gradle.model.ModelMap;
    
    /**
     * Represents a component spec that is made up of one or more mutually exclusive variants.
     */
    @Incubating
    public interface VariantComponentSpec extends ComponentSpec, VariantComponent {
        /**
         * The variants produced for this component spec.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelRuleBindingException.java

     */
    
    package org.gradle.model;
    
    import org.gradle.api.GradleException;
    import org.gradle.api.Incubating;
    
    /**
     * Thrown when there is a problem binding the model element references of a model rule.
     * <p>
     * Should always be thrown as the cause of a {@link org.gradle.model.InvalidModelRuleException}.
     */
    @Incubating
    public class ModelRuleBindingException extends GradleException {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpecs.java

     * limitations under the License.
     */
    
    package org.gradle.tooling;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Provides test selection from a specific test task.
     *
     * @see TestLauncher#withTestsFor(Action)
     * @since 7.6
     */
    @Incubating
    public interface TestSpecs {
    
        /**
         * Creates a new test selection for the target task.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/FailureContainer.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    import org.gradle.tooling.Failure;
    
    import javax.annotation.Nullable;
    
    /**
     * Holds an exception for a problem.
     *
     * @since 8.7
     */
    @Incubating
    public interface FailureContainer {
    
        /**
         * Failure that caused the problem.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top