Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,901 for ADDS (0.06 sec)

  1. android/guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds a name/value pair to the formatted output in {@code name=value} format.
         *
         * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}).
         */
        @CanIgnoreReturnValue
        public ToStringHelper add(String name, boolean value) {
          return addUnconditionalHolder(name, String.valueOf(value));
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/MoreObjects.java

        }
    
        /**
         * Adds a name/value pair to the formatted output in {@code name=value} format.
         *
         * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}).
         */
        @CanIgnoreReturnValue
        public ToStringHelper add(String name, boolean value) {
          return addUnconditionalHolder(name, String.valueOf(value));
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ScriptHandlerScope.kt

         * The script classpath configuration.
         */
        val NamedDomainObjectContainer<Configuration>.classpath: NamedDomainObjectProvider<Configuration>
            get() = named(CLASSPATH_CONFIGURATION)
    
        /**
         * Adds a dependency to the script classpath.
         *
         * @param dependencyNotation notation for the dependency to be added.
         * @return The dependency.
         *
         * @see [DependencyHandler.add]
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

     *                     }
     *                 }
     *             }
     *         }
     *     }
     * </pre>
     */
    @HasInternalProtocol
    public interface ComponentSelectionRules {
        /**
         * Adds a simple component selection rule that will apply to all resolved components.
         * Each rule will receive a {@link ComponentSelection} object as an argument.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

        /**
         * Adds tests to be executed by passing test descriptors received from a previous Gradle Run.
         *
         * @param descriptors The OperationDescriptor defining one or more tests.
         * @return this
         * @since 2.6
         */
        TestLauncher withTests(TestOperationDescriptor... descriptors);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ArtifactHandlerScope.kt

            get() = artifacts
    
        /**
         * Adds an artifact to the given configuration.
         *
         * @param artifactNotation notation of the artifact to add.
         * @return The artifact.
         * @see [ArtifactHandler.add]
         */
        operator fun String.invoke(artifactNotation: Any): PublishArtifact =
            artifacts.add(this, artifactNotation)
    
        /**
         * Adds an artifact to the given configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/api/internal/plugins/DefaultArtifactPublicationSetTest.groovy

        def "adds provider to artifact set"() {
            when:
            publication.addCandidate(artifact(artifactType))
    
            then:
            1 * publications.addAllLater(_)
    
            where:
            artifactType << ["jar", "war", "ear", "other"]
        }
    
        def "adds jar artifact to publication"() {
            def artifact = artifact("jar")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/options/token.go

    }
    
    // AddTokenFlag adds the --token flag to the given flagset
    func (bto *BootstrapTokenOptions) AddTokenFlag(fs *pflag.FlagSet) {
    	fs.StringVar(
    		&bto.TokenStr, TokenStr, "",
    		"The token to use for establishing bidirectional trust between nodes and control-plane nodes. The format is [a-z0-9]{6}\\.[a-z0-9]{16} - e.g. abcdef.0123456789abcdef",
    	)
    }
    
    // AddTTLFlag adds the --token-ttl flag to the given flagset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaPluginTest.groovy

        }
    
        def "adds extension to child project"() {
            when:
            applyPluginToProjects()
    
            then:
            childProject.idea instanceof IdeaModel
            childProject.idea.project == null
            childProject.idea.module.outputFile == childProject.file("child.iml")
        }
    
        def "adds 'ideaProject' task to root project"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentSelectionContext.java

        void noMatchFound();
    
        /**
         * Adds a candidate version that did not match the provided selector.
         */
        void notMatched(ModuleComponentIdentifier id, VersionSelector requestedVersionMatcher);
    
        /**
         * Adds a candidate version that matched the provided selector, but was rejected by some rule.
         */
        void rejectedByRule(RejectedByRuleVersion id);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top