Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,705 for grouped (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    * You cannot declare dependencies with the `Map` notation from Kotlin and Java.
    Use multi-argument methods instead in Kotlin and Java.
    ** Kotlin: `compileOnly(mapOf("group" to "foo", "name" to "bar"))` becomes `compileOnly(module(group = "foo", name = "bar"))`
    ** Java: `compileOnly(Map.of("group", "foo", "name", "bar"))` becomes `getCompileOnly().add(module("foo", "bar", null))`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * _Configuration_ (ex: `implementation`) — a named collection of dependencies, grouped together for a specific goal such as compiling or running a module — a more flexible form of Maven scopes
     * _Module coordinate_ (ex: `org.hibernate:hibernate-core-3.6.7.Final`) — the ID of the dependency, usually in the form '__<group>__:__<module>__:__<version>__' (or '__<groupId>__:__<artifactId>__:__<version>__' in Maven terminology)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

       *
       * <p>For streams with defined encounter order (as defined in the Ordering section of the {@link
       * java.util.stream} Javadoc), that order is preserved, but entries are <a
       * href="ImmutableMultimap.html#iteration">grouped by key</a>.
       *
       * <p>Example:
       *
       * <pre>{@code
       * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP =
       *     Stream.of("banana", "apple", "carrot", "asparagus", "cherry")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/kube/krt/collection.go

    	// log is a logger for the collection, with additional labels already added to identify it.
    	log *istiolog.Scope
    
    	// recomputeMu blocks a recomputation of I->O.
    	recomputeMu sync.Mutex
    
    	// mu protects all items grouped below.
    	// This is acquired for reads and writes of data.
    	// This can be acquired with recomputeMu held, but only with strict ordering (mu inside recomputeMu)
    	mu              sync.Mutex
    	collectionState multiIndex[I, O]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSetMultimap.java

       *
       * <p>For streams with defined encounter order (as defined in the Ordering section of the {@link
       * java.util.stream} Javadoc), that order is preserved, but entries are <a
       * href="ImmutableMultimap.html#iteration">grouped by key</a>.
       *
       * <p>Example:
       *
       * <pre>{@code
       * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP =
       *     Stream.of("banana", "apple", "carrot", "asparagus", "cherry")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. android/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
    - 19.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "group": {
    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. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *       strictly('3.1')
     *     }
     *
     *     //excluding a particular transitive dependency:
     *     exclude module: 'cglib' //by artifact name
     *     exclude group: 'org.jmock' //by group
     *     exclude group: 'org.unwanted', module: 'iAmBuggy' //by both name and group
     *
     *     //disabling all transitive dependencies of this dependency
     *     transitive = false
     *   }
     * }
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	WebhookConverter ConversionStrategyType = "Webhook"
    )
    
    // CustomResourceDefinitionSpec describes how a user wants their resource to appear
    type CustomResourceDefinitionSpec struct {
    	// Group is the group this resource belongs in
    	Group string
    	// Version is the version this resource belongs in
    	// Should be always first item in Versions field if provided.
    	// Optional, but at least one of Version or Versions must be set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top