Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 105 for parity (4.37 sec)

  1. docs/en/docs/deployment/concepts.md

    ---
    
    Then the next concepts to consider are all about the program running your actual API (e.g. Uvicorn).
    
    ## Program and Process
    
    We will talk a lot about the running "**process**", so it's useful to have clarity about what it means, and what's the difference with the word "**program**".
    
    ### What is a Program
    
    The word **program** is commonly used to describe many things:
    
    * The **code** that you write, the **Python files**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. platforms/documentation/docs/build.gradle

                    "snippet-native-binaries-cunit_groovy_dependentComponentsReportAll.sample",
                ]
    
                // These tests use third-party plugins at versions that may not support the configuration cache properly.
                // The tests should be removed from this list when the plugin is updated to the version that works with the configuration cache properly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    * types exclusively used in private members
    * types exclusively found in internal classes (future versions of Gradle will let you declare which packages belong to the public API)
    
    The following class makes use of a couple of third-party libraries, one of which is exposed in the class's public API and the other is only used internally. The import statements don't help us determine which is which, so we have to look at the fields, constructors and methods instead:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    // limitations under the License.
    
    [[using_plugins]]
    = Using Plugins
    
    Much of Gradle's functionality is delivered via plugins, including core plugins distributed with Gradle, third-party plugins, and script plugins defined within builds.
    
    [[sec:what_plugins_do]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/generated.proto

    message IngressClassParametersReference {
      // apiGroup is the group for the resource being referenced. If APIGroup is
      // not specified, the specified Kind must be in the core API group. For any
      // other third-party types, APIGroup is required.
      // +optional
      optional string aPIGroup = 1;
    
      // kind is the type of resource being referenced.
      optional string kind = 2;
    
      // name is the name of resource being referenced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    ====
    
    The Kotlin DSL provides property extensions for all <<plugin_reference#plugin_reference,Gradle core plugins>>,
    as shown above with the `java`, `jacoco` or `maven-publish` declaration.
    
    Third party plugins can be applied the same way as with the Groovy DSL. Except for the double quotes and parentheses.
    You can also apply core plugins with that style. But the statically-typed accessors are recommended since they are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/networking/v1/generated.proto

    message IngressClassParametersReference {
      // apiGroup is the group for the resource being referenced. If APIGroup is
      // not specified, the specified Kind must be in the core API group. For any
      // other third-party types, APIGroup is required.
      // +optional
      optional string aPIGroup = 1;
    
      // kind is the type of resource being referenced.
      optional string kind = 2;
    
      // name is the name of resource being referenced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry.go

    // it is safer to use cmp.Equal as opposed to reflect.DeepEqual. Also, because of the way the structs are generated, it is not possible to use
    // cmpopts.IgnoreUnexported without risking flakiness if those third party types that are relied on change. Next best thing is to use a custom
    // comparer as defined below. When cmp.Equal is called on this type, this will be leveraged by cmp.Equal to do the comparison see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/types.go

    type IngressClassParametersReference struct {
    	// apiGroup is the group for the resource being referenced. If APIGroup is
    	// not specified, the specified Kind must be in the core API group. For any
    	// other third-party types, APIGroup is required.
    	// +optional
    	APIGroup *string `json:"apiGroup,omitempty" protobuf:"bytes,1,opt,name=aPIGroup"`
    
    	// kind is the type of resource being referenced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/types.go

    	// a single subdomain segment, so `*.io` does not match *.k8s.io.
    	//
    	// A match exists between an image and a matchImage when all of the below are true:
    	// - Both contain the same number of domain parts and each part matches.
    	// - The URL path of an imageMatch must be a prefix of the target image URL path.
    	// - If the imageMatch contains a port, then the port must match in the image as well.
    	//
    	// Example values of matchImages:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top