Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 80 for Concept (0.18 sec)

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

         * contribute properties and methods to this task.</p>
         *
         * @return The convention object. Never returns null.
         * @deprecated The concept of conventions is deprecated. Use extensions if possible.
         * @see ExtensionAware#getExtensions()
         */
        @Internal
        @Deprecated
        org.gradle.api.plugins.Convention getConvention();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * as if they were properties and methods of this project. See <a href="#properties">here</a> for more details</p>
         *
         * @return The <code>Convention</code>. Never returns null.
         * @deprecated The concept of conventions is deprecated. Use extensions if possible.
         * @see ExtensionAware#getExtensions()
         */
        @Deprecated
        org.gradle.api.plugins.Convention getConvention();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    // NamedAddress - Service has no concept of named address. For cloud's that have named addresses they can be configured by annotations,
    //
    //	which users can add to the Gateway.
    func IsManaged(gw *k8s.GatewaySpec) bool {
    	if len(gw.Addresses) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/gateway-api-crd.yaml

                      request to "foo.example.com" SHOULD only be routed using routes attached
                      to the "foo.example.com" Listener (and not the "*.example.com" Listener).
                      This concept is known as "Listener Isolation". Implementations that do
                      not support Listener Isolation MUST clearly document this.
    
    
                      Implementations MAY merge separate Gateways onto a single set of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[deprecated_access_to_conventions]]
    ==== Deprecated access to plugin conventions
    
    The concept of conventions is outdated and superseded by <<implementing_gradle_plugins_binary.adoc#modeling_dsl_like_apis, extensions>> to provide custom DSLs.
    
    To reflect this in the Gradle API, the following elements are deprecated:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    // goroutines.
    //
    // The sql package creates and frees connections automatically; it
    // also maintains a free pool of idle connections. If the database has
    // a concept of per-connection state, such state can be reliably observed
    // within a transaction ([Tx]) or connection ([Conn]). Once [DB.Begin] is called, the
    // returned [Tx] is bound to a single connection. Once [Tx.Commit] or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    Everyone has to start somewhere, and if you're new to Gradle, this is where to begin.
    
    To get started using Gradle:
    
    1. Read the <<gradle_intro,core concepts chapters>>.
    2. Follow the <<getting_started,tutorial>> for a hands-on approach.
    
    [[gradle_intro]]
    == 1. Gradle Core Concepts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

    === 1. Core Concepts
    
    [sidebar]
    _Description_: *Learn how to invoke tasks and add dependencies.* +
    _Training level_: **Beginner** +
    _Reading time_: **25 minutes** +
    <<gradle_basics.adoc#gradle,-> Read Core Concepts >>
    
    === 2. Hands-on Tutorial
    
    [sidebar]
    _Description_: *Initialize a Gradle build for a basic Java App.* +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
      map<string, string> limits = 1;
    
      // The minimum amount of compute resources required. If Requests is omitted for a container,
      // it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value.
      // More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. manifests/charts/gateway/values.yaml

      terminationGracePeriodSeconds: 30
    
      # A list of `Volumes` added into the Gateway Pods. See
      # https://kubernetes.io/docs/concepts/storage/volumes/.
      volumes: []
    
      # A list of `VolumeMounts` added into the Gateway Pods. See
      # https://kubernetes.io/docs/concepts/storage/volumes/.
      volumeMounts: []
    
      # Configure this to a higher priority class in order to make sure your Istio gateway pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top