Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,003 for addSdk (0.16 sec)

  1. 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)
  2. releasenotes/notes/skip-mx-headers.yaml

    kind: feature
    area: traffic-management
    issue:
    - https://github.com/istio/istio/issues/17635
    releaseNotes:
      - |
        **Added** a new configuration to `ProxyHeaders`, `MetadataExchangeHeaders`. The `IN_MESH` mode ensures `x-envoy-peer-metadata` and `x-envoy-peer-metadata-id`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 03:27:06 UTC 2023
    - 418 bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SortedMapDiffUtil.java

                        } else {
                            if (!diffListener.added(currentProperty)) {
                                return false;
                            }
                            break;
                        }
                    } else if (compared > 0) {
                        if (!diffListener.added(currentProperty)) {
                            return false;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. 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)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

                apply plugin: 'visual-studio'
                apply plugin: 'cpp-application'
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "visual studio tasks re-execute when source files are added"() {
            app.writeSources(file("src/main"))
    
            when:
            run "visualStudio"
    
            then:
            executedAndNotSkipped ":appVisualStudioSolution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

     *
     *  02/Oct/2001   Added proper Eror Codes. (AK)
     *
     *  13-Oct-2001   Added Error Codes for Duplicate TestGroup and Test. (AK)
     *
     *  03-Aug-2004   Converted error code macros to an enum, doxygen comments, moved
     *                error handing code here, changed file name from Errno.h, added
     *                error codes for file open errors, added error action selection. (JDS)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractLoggingHooksFunctionalTest.groovy

                }
    
                // Listener added before
                log.logging.addStandardOutputListener(before)
                log.logging.addStandardErrorListener(before)
                System.out.println "ignore"
                System.err.println "ignore"
    
                task other {
                    dependsOn log
                    doLast {
                        // Listener added after
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Dependency.java

     */
    public interface Dependency {
    
        /**
         * The scope of this library. If <code>null</code>, the scope attribute is not added.
         * @since 4.5
         */
        String getScope();
    
        /**
         * The scope of this library. If <code>null</code>, the scope attribute is not added.
         * @since 4.5
         */
        void setScope(String scope);
    
        void addToNode(Node parentNode);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathChangeDetector.java

                    return false;
                }
            }
    
            for (Entry<String, FilePathWithType> entry : addedFilesByNormalizedPath.entries()) {
                Change added = added(propertyTitle, entry);
                if (!visitor.visitChange(added)) {
                    return false;
                }
            }
            return true;
        }
    
        private static Change getChange(
            String propertyTitle,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top