Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,365 for addSdk (0.11 sec)

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

         *
         * <p>If no artifact is added to a dependency, an implicit default artifact is used. This default artifact has the
         * same name as the module and its type and extension is {@code jar}. If at least one artifact is explicitly added,
         * the implicit default artifact won't be used any longer.</p>
         *
         * @return the added artifact
         *
         * @see DependencyArtifact
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    			"pod", klog.KObj(pod), "modifiedPod", klog.KObj(modifiedPod))
    		return framework.QueueSkip, nil
    	}
    
    	// Pod is added. Return Queue when the added pod matching the target pod's affinity.
    	if modifiedPod != nil {
    		if podMatchesAllAffinityTerms(terms, modifiedPod) {
    			logger.V(5).Info("a scheduled pod was added and it matches the target pod's affinity",
    				"pod", klog.KObj(pod), "modifiedPod", klog.KObj(modifiedPod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. releasenotes/notes/custom-gw-classname.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Added** an environment variable for istiod `PILOT_GATEWAY_API_DEFAULT_GATEWAYCLASS_NAME` that allows overriding the name of the default `GatewayClass` Gateway API resource. The default value is `istio`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 574 bytes
    - Viewed (0)
  4. build/pause/CHANGELOG.md

    * Support for Windows container images (OS Versions: 2022) was added. ([#104438](https://github.com/kubernetes/kubernetes/pull/104438), [@nick5616](https://github.com/nick5616))
    
    # 3.5
    
    * Run the container image as non root user per default ([#97963](https://github.com/kubernetes/kubernetes/pull/97963))
    
    # 3.4.1
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. releasenotes/notes/50132.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 48362
    releaseNotes:
      - |
        **Added** the annotation `networking.istio.io/address-type` to allow `istio` class Gateways to use `ClusterIP` for status addresses.
        **Added** the ability to annotate workloads or services with `istio.io/use-waypoint` pointing to Gateways of arbitrary gateway classes.
    
        These changes allow configuring a standard `istio` gateway as a Waypoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	verifyEvents(t, w, []watch.Event{
    		{Type: watch.Added, Object: makePod(1)},
    		{Type: watch.Added, Object: makePod(2)},
    		{Type: watch.Added, Object: makePod(5)},
    		{Type: watch.Bookmark, Object: &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				ResourceVersion: "10",
    				Annotations:     map[string]string{metav1.InitialEventsAnnotationKey: "true"},
    			},
    		}},
    		{Type: watch.Added, Object: makePod(15)},
    	}, true)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

                         * @param group the group of the module to be added as a dependency.
                         * @param name the name of the module to be added as a dependency.
                         * @param version the optional version of the module to be added as a dependency.
                         * @param configuration the optional configuration of the module to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

         *
         * @param added a collector that represents an addition to the collection to be returned by this supplier
         * @return a new supplier that produces a collection that contains the
         * same elements as this supplier, plus the elements obtained via the given <code>added</code> collector
         */
        CollectionSupplier<T, C> plus(Collector<T> added);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java

                            element = mergePlugin(existing, element, sourceDominant, context);
                        } else {
                            added.put(key, element);
                        }
                        merged.put(key, element);
                    }
    
                    if (!added.isEmpty()) {
                        PluginManagement pluginMgmt = (PluginManagement) context.get(PLUGIN_MANAGEMENT);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. releasenotes/notes/51081.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 22:34:29 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top