Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,155 for ADDS (0.06 sec)

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

        String GOOGLE_URL = "https://dl.google.com/dl/android/maven2/";
    
        /**
         * Adds a repository to this container, at the end of the repository sequence.
         *
         * @param repository The repository to add.
         */
        @Override
        boolean add(ArtifactRepository repository);
    
        /**
         * Adds a repository to this container, at the start of the repository sequence.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/DomainObjectCollection.java

    public interface DomainObjectCollection<T> extends Collection<T> {
        /**
         * Adds an element to this collection, given a {@link Provider} that will provide the element when required.
         *
         * @param provider A {@link Provider} that can provide the element when required.
         * @since 4.8
         */
        void addLater(Provider<? extends T> provider);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 31 01:48:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue18676/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The bug happened like this:
    //  1. The main binary adds an itab for *json.UnsupportedValueError / error
    //     (concrete type / interface type).  This itab goes in hash bucket 0x111.
    //  2. The plugin adds that same itab again.  That makes a cycle in the itab
    //     chain rooted at hash bucket 0x111.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/MutableValueGraph.java

      /**
       * Adds {@code node} if it is not already present.
       *
       * <p><b>Nodes must be unique</b>, just as {@code Map} keys must be. They must also be non-null.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean addNode(N node);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. JavadocStyleGuide.md

    | 4  | `@see`        | Adds a “See Also” heading with a link or text entry that points to a reference | `@see string`<br>`@see <a href=”URL#value”>label</a>`<br>`@see package.class#member label`                                                                                                                         |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableDependencies.java

         * @since 4.6
         */
        DependencyConstraintSet getDependencyConstraints();
    
        /**
         * Adds an action to be executed before the dependencies in this set are resolved.
         *
         * @param action The action to execute.
         */
        void beforeResolve(Action<? super ResolvableDependencies> action);
    
        /**
         * Adds an action to be executed before the dependencies in this set are resolved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 17:30:50 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    }
    ----
    <1> Applies the Android Gradle plugin to this project, which adds several features that are specific to building Android apps.
    <2> Adds the Material dependency to the project. Material Design provides components for creating a user interface in an Android App. This library will be used to compile and run the Kotlin source code in this project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validatingadmissionpolicyspec.go

    func (b *ValidatingAdmissionPolicySpecApplyConfiguration) WithMatchConstraints(value *MatchResourcesApplyConfiguration) *ValidatingAdmissionPolicySpecApplyConfiguration {
    	b.MatchConstraints = value
    	return b
    }
    
    // WithValidations adds the given value to the Validations field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodestatus.go

    func (b *NodeStatusApplyConfiguration) WithPhase(value v1.NodePhase) *NodeStatusApplyConfiguration {
    	b.Phase = &value
    	return b
    }
    
    // WithConditions adds the given value to the Conditions field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/pmd_plugin.adoc

    ====
    
    The plugin adds a number of tasks to the project that perform the quality checks. You can execute the checks by running `gradle check`.
    
    Note that PMD will run with the same Java version used to run Gradle.
    
    [[sec:pmd_tasks]]
    == Tasks
    
    The PMD plugin adds the following tasks to the project:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top