Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 788 for addSdk (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/IgnoredPathCompareStrategy.java

                if (previousFilesForContent.isEmpty()) {
                    DefaultFileChange added = DefaultFileChange.added(currentAbsolutePath, propertyTitle, currentFingerprint.getType(), IgnoredPathFingerprintingStrategy.IGNORED_PATH);
                    if (!visitor.visitChange(added)) {
                        return false;
                    }
                } else {
                    previousFilesForContent.remove(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencySet.java

            }
        }
    
        @Override
        public boolean addAll(Collection<? extends Dependency> dependencies) {
            boolean added = false;
            for (Dependency dependency : dependencies) {
                added |= add(dependency);
            }
            return added;
        }
    
        private static class MutationValidationAction implements Action<ModuleDependency> {
            private final Configuration clientConfiguration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. 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)
  10. releasenotes/notes/bug-report-perf.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: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 20:26:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top