Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 195 for groupSet (0.26 sec)

  1. pkg/controller/deployment/deployment_controller.go

    	// through adoption/orphaning.
    	rsList, err := dc.getReplicaSetsForDeployment(ctx, d)
    	if err != nil {
    		return err
    	}
    	// List all Pods owned by this Deployment, grouped by their ReplicaSet.
    	// Current uses of the podMap are:
    	//
    	// * check if a Pod is labeled correctly with the pod-template-hash label.
    	// * check that no old Pods are running in the middle of Recreate Deployments.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

    import org.gradle.api.provider.ProviderConvertible;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    
    /**
     * <p>A {@code DependencyHandler} is used to declare dependencies. Dependencies are grouped into
     * configurations (see {@link org.gradle.api.artifacts.Configuration}).</p>
     *
     * <p>To declare a specific dependency for a configuration you can use the following syntax:</p>
     *
     * <pre>
     * dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	Kind string
    	// ListKind is the serialized kind of the list for this resource.  Defaults to <kind>List.
    	ListKind string
    	// Categories is a list of grouped resources custom resources belong to (e.g. 'all')
    	// +optional
    	Categories []string
    }
    
    // ResourceScope is an enum defining the different scopes available to a custom resource
    type ResourceScope string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multiset.java

       * {@code elementSet().size()}.
       *
       * @return a view of the set of distinct elements in this multiset
       */
      Set<E> elementSet();
    
      /**
       * Returns a view of the contents of this multiset, grouped into {@code Multiset.Entry} instances,
       * each providing an element of the multiset and the count of that element. This set contains
       * exactly one entry for each distinct element in the multiset (thus it always has the same size
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. docs/metrics/v3.md

    ## Request, System and Cluster Metrics
    
    At a high level metrics are grouped into three categories, listed in the following sub-sections. The path in each of the tables is relative to the top-level endpoint.
    
    ### Request metrics 
    
    These are metrics about requests served by the (current) node.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		// minor version should allow them all to be fixed. In the meantime, this field
    		// explains the behavior reason for a particular failure.
    		fixme string
    	}
    
    	// Test cases are grouped by the kind of the CBOR data item being decoded, as enumerated in
    	// https://www.rfc-editor.org/rfc/rfc8949.html#section-2.
    	group := func(t *testing.T, name string, tests []test) {
    		t.Run(name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

            "description": "APIResource specifies the name of a resource and whether it is namespaced.",
            "properties": {
              "categories": {
                "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

            "description": "APIResource specifies the name of a resource and whether it is namespaced.",
            "properties": {
              "categories": {
                "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  9. src/net/mail/message_test.go

    			[]*Address{
    				{
    					Name:    "",
    					Address: "******@****.***",
    				},
    			},
    		},
    		{
    			`empty group: ;`,
    			[]*Address(nil),
    		},
    		{
    			`A Group:Ed Jones <******@****.***>,******@****.***,John <******@****.***>;`,
    			[]*Address{
    				{
    					Name:    "Ed Jones",
    					Address: "******@****.***",
    				},
    				{
    					Name:    "",
    					Address: "******@****.***",
    				},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. docs/fr/docs/async.md

    ### Fonctions de chemin
    
    Quand vous déclarez une *fonction de chemin* avec un `def` normal et non `async def`, elle est exécutée dans un groupe de threads (threadpool) externe qui est ensuite attendu, plutôt que d'être appelée directement (car cela bloquerait le serveur).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top