Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,910 for concept (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConventionExtensions.kt

     *
     * @param name convention plugin name
     * @return the convention plugin, never null
     * @throws [IllegalStateException] When the convention cannot be found or cast to the expected type.
     */
    @Deprecated("The concept of conventions is deprecated. Use extensions instead.")
    inline fun <reified T : Any> Convention.getPluginByName(name: String): T =
        conventionPluginByName(this, name).let {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/XcodeProject.java

     */
    
    package org.gradle.ide.xcode;
    
    /**
     * A xcode project, created from C++ or Swift capable project.
     *
     * @since 4.2
     * @see <a href="https://developer.apple.com/library/content/featuredarticles/XcodeConcepts/Concept-Projects.html">XCode Project Concept</a>
     */
    public interface XcodeProject {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 911 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/CodeGenerator.kt

             *
             * @deprecated The concept of conventions is deprecated. Use extensions instead.
             */
            val $targetType.`$kotlinIdentifier`: $type get() =
                $thisConvention.getPluginByName<$type>("$stringLiteral")
    
            /**
             * Configures the [$original][$type] convention.
             *
             * @deprecated The concept of conventions is deprecated. Use extensions instead.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/XcodeTarget.java

    import java.util.ArrayList;
    import java.util.List;
    
    import static org.gradle.ide.xcode.internal.DefaultXcodeProject.BUILD_DEBUG;
    
    /**
     * @see <a href="https://developer.apple.com/library/content/featuredarticles/XcodeConcepts/Concept-Schemes.html">XCode Scheme Concept</a>
     */
    public class XcodeTarget implements Named {
        private final String id;
        private final String name;
        private final ConfigurableFileCollection headerSearchPaths;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. manifests/charts/base/README.md

    To install the chart with the release name `istio-base`:
    
    ```console
    kubectl create namespace istio-system
    helm install istio-base istio/base -n istio-system
    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/RedrawableLabel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.console;
    
    /**
     * This label have the concept of been drawn on screen.
     */
    public interface RedrawableLabel extends Label, StyledLabel {
        void redraw(AnsiContext ansi);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 826 bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/README.md

    helm delete ztunnel
    ```
    
    ## Configuration
    
    To view support configuration options and documentation, run:
    
    ```console
    helm show values istio/ztunnel
    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/site/xdoc/index.xml

      </properties>
    
      <body>
    
        <section name="Apache Maven 4.x">
    
          <p>Maven is a project development management and
        comprehension tool. Based on the concept of a project object model:
        builds, dependency management, documentation creation, site
        publication, and distribution publication are all controlled from
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

        /**
         * Creates a resolvable + dependency scope configuration which can change roles.
         *
         * @deprecated Whether concept of a resolvable + dependency scope configuration should exist
         * is still under debate. However, in general, we should try to split up configurations which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

         */
        String getName();
    
        @Override
        ImmutableAttributes getAttributes();
    
        /**
         * Returns the "sub variants" of this variant.
         *
         * <p>This concept should disappear.</p>
         */
        Set<? extends Subvariant> getVariants();
    
        List<? extends DependencyMetadata> getDependencies();
    
        List<? extends ExcludeMetadata> getExcludes();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top