Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,389 for addLink (0.15 sec)

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

        /**
         * Add a rule for adding a new empty variant to the component.
         *
         * @param name a name for the variant
         * @param action the action to populate the variant
         *
         * @since 6.0
         */
        void addVariant(String name, Action<? super VariantMetadata> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            file('gradle/javadocs/jetbrains-annotations/package-list') << ''
    
            expect:
            succeeds("javadoc")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/4841")
        def "adding custom javadoc options makes task out-of-date"() {
            given: "a javadoc task without custom options"
            buildFile << """
                task javadoc(type: Javadoc) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-egress/values.yaml

        # Default node selector to be applied to all deployments so that all pods can be
        # constrained to run a particular nodes. Each component can overwrite these default
        # values by adding its node selector block in the relevant section below and setting
        # the desired values.
        defaultNodeSelector: {}
    
        # enable pod disruption budget for the control plane, which is used to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. maven-embedder/src/site/apt/index.apt.vm

     * since 3.5.0, output is colorized by default, with color disabled in batch mode: see
       {{{/shared/maven-shared-utils/apidocs/org/apache/maven/shared/utils/logging/package-summary.html}styled message API}}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 20 18:34:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/legacy/rule_source.adoc

    Instead, use the standard approach described in the <<custom_plugins.adoc#custom_plugins, Writing Custom Plugins>> chapter.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/names/generate.go

    // available to guide selection of new names and this interface hides those details.
    type NameGenerator interface {
    	// GenerateName generates a valid name from the base name, adding a random suffix to
    	// the base. If base is valid, the returned name must also be valid. The generator is
    	// responsible for knowing the maximum valid name length.
    	GenerateName(base string) string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

    import org.gradle.internal.service.scopes.ServiceScope
    import spock.lang.Specification
    
    class ScopedServiceRegistryTest extends Specification {
    
        def "fails when registering a service by adding #method in a wrong scope"() {
            given:
            def registry = scopedRegistry(Scope.Build)
    
            when:
            registration(registry)
    
            then:
            def exception = thrown(IllegalArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_regression_hang.txt

    # where the module loader hung forever because all main module dependencies
    # kept workspace pruning instead of adopting the pruning in their go.mod
    # files, and the loader kept adding dependencies on the queue until they
    # were either pruned or unpruned, never breaking a module dependency cycle.
    #
    # This is the module graph in the test:
    #
    #                               /-------------------------\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 08 17:48:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/DefaultGradleApiSpecProvider.java

            );
        }
    
        @Override
        public Set<String> getExportedPackages() {
            return ImmutableSet.of(
                //"org.gradle.internal.declarativedsl", // TODO: adding this makes all integration tests fail
                "org.gradle",
                "org.apache.tools.ant",
                "groovy",
                "org.apache.groovy",
                "org.codehaus.groovy",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 08:55:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/README.md

    ```sh
    go test k8s.io/api -run //HEAD
    ```
    
    All three formats of a given group/version/kind are expected to decode successfully to identical objects,
    and to round-trip back to serialized form with identical bytes.
    Adding new fields or API types *is* expected to modify these fixtures. To regenerate them, run:
    
    ```sh
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/api -run //HEAD
    ```
    
    ## Previous versions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top