Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 393 for 86 (0.03 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyCollector.java

     *
     * @since 8.6
     */
    @Incubating
    @NonExtensible
    @SuppressWarnings("JavadocReference")
    public interface DependencyCollector {
        /**
         * Add a dependency.
         *
         * @param dependencyNotation dependency to add
         * @see DependencyFactory#create(CharSequence) Valid dependency notation for this method
         *
         * @since 8.6
         */
        void add(CharSequence dependencyNotation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteDisabledDueToFailureProgressDetails.java

         * The cache key.
         *
         * @since 8.6
         */
        String getCacheKey();
    
        /**
         * The failure that caused the build cache to be disabled.
         *
         * @since 8.6
         */
        Throwable getFailure();
    
        /**
         * The type of operation that had the failure.
         *
         * @since 8.6
         */
        BuildCacheOperationType getOperationType();
    
        /**
         * The type of build cache operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:53:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

        /**
         * Declares where this problem is documented.
         *
         * @return this
         * @since 8.6
         */
        ProblemSpec documentedAt(String url);
    
        /**
         * Declares that this problem is in a file.
         *
         * @param path the file location
         * @return this
         * @since 8.6
         */
        ProblemSpec fileLocation(String path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/Severity.java

     *
     * @since 8.6
     */
    @Incubating
    public interface Severity {
    
        // Note: the static fields must be in sync with entries from org.gradle.api.problems.Severity.
        /**
         * Advice-level severity.
         *
         * @since 8.6
         */
        Severity ADVICE = new DefaultSeverity(0, true);
    
        /**
         * Warning-level severity.
         *
         * @since 8.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 13:56:41 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalStreamedValueRelay.java

     *
     * <p>Consumer compatibility: This interface is used by all consumer versions from 8.6.</p>
     * <p>Provider compatibility: This interface is implemented by all provider versions from 8.6.</p>
     *
     * @since 8.6
     */
    public interface InternalStreamedValueRelay {
        /**
         * Asynchronously sends an object back to the client application.
         *
         * @since 8.6
         */
        void dispatch(Object value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/LineInFileLocation.java

     *
     * @since 8.6
     */
    @Incubating
    public interface LineInFileLocation extends FileLocation {
    
        /**
         * The line number within the file.
         * <p>
         * The line is <b>one-indexed</b>, i.e. the first line in the file is line number 1.
         *
         * @return the line number
         * @since 8.6
         */
        int getLine();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

     * @see DependencyFactory.create
     * @since 8.6
     */
    operator fun DependencyCollector.invoke(dependencyNotation: CharSequence) = add(dependencyNotation)
    
    
    /**
     * Add a dependency.
     *
     * @param dependencyNotation dependency to add
     * @param configuration an action to configure the dependency
     * @see DependencyFactory.create
     * @since 8.6
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/testdata/hist.dlv-opt.nexts

    82:			hist[int(i)]++
    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    92:			fmt.Fprintf(os.Stderr, "%d\t%d\t%d\t%d\t%d\n", i, a, n, i*a, t) //gdb-dbg=(n,i,t)
    91:			n += a
    90:			t += i * a
    86:		for i, a := range hist {
    87:			if a == 0 { //gdb-opt=(a,n,t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemReporter.java

    /**
     * Defines different ways to report problems.
     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemReporter {
    
        /**
         * Configures and reports a new problem.
         * <p>
         * The spec must specify the problem label and the category. Any additional configuration is optional.
         *
         * @param spec the problem configuration
         * @since 8.6
         */
        void reporting(Action<ProblemSpec> spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 10:28:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheLocalStoreBuildOperationType.java

     *
     *  @since 8.6
     */
    public final class BuildCacheLocalStoreBuildOperationType implements BuildOperationType<BuildCacheLocalStoreBuildOperationType.Details, BuildCacheLocalStoreBuildOperationType.Result> {
    
        public interface Details {
    
            /**
             * The cache key.
             *
             * @since 8.6
             */
            String getCacheKey();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top