Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,324 for concept (0.18 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. releasenotes/notes/45216.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 45089
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 05 11:44:18 UTC 2023
    - 184 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/apis/coordination/types.go

    limitations under the License.
    */
    
    package coordination
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Lease defines a lease concept.
    type Lease struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// spec contains the specification of the Lease.
    	// +optional
    	Spec LeaseSpec
    }
    
    // LeaseSpec is a specification of a Lease.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 16:45:58 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top