Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,023 for addSdk (0.15 sec)

  1. releasenotes/notes/50110.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: Wed Mar 27 04:22:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. releasenotes/notes/42119.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: Thu Dec 08 22:23:04 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. releasenotes/notes/wds.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Added** xDS workload metadata discovery to TCP metadata exchange filter as a fallback. This requires enabling `PEER_METADATA_DISCOVERY` flag on the proxy, and `PILOT_ENABLE_AMBIENT_CONTROLLERS` on the control plane.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 21:01:49 UTC 2023
    - 440 bytes
    - Viewed (0)
  4. pkg/kube/namespace/filter.go

    			membershipChanged, namespaceAdded := f.namespaceUpdatedLocked(old.ObjectMeta, new.ObjectMeta)
    			if membershipChanged {
    				added := sets.New(new.Name)
    				var removed sets.String
    				if !namespaceAdded {
    					removed = added
    					added = nil
    				}
    				f.notifyHandlersLocked(added, removed)
    			}
    		},
    		DeleteFunc: func(ns *corev1.Namespace) {
    			f.lock.Lock()
    			defer f.lock.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            }
    
            // 7.6 added JDK 19 support
            if (isSameOrOlder("7.5.1")) {
                return javaVersion >= JavaVersion.VERSION_1_8 && javaVersion <= JavaVersion.VERSION_18
            }
    
            // 8.3 added JDK 20 support
            if (isSameOrOlder("8.2.1")) {
                return javaVersion >= JavaVersion.VERSION_1_8 && javaVersion <= JavaVersion.VERSION_19
            }
    
            // 8.5 added JDK 21 support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_exec_toolchain.txt

    env GOTOOLCHAIN=auto
    cp go.mod.new go.mod
    go get rsc.io/needgo121 rsc.io/needgo122 rsc.io/needgo123 rsc.io/needall
    stderr '^go: rsc.io/needall@v0.0.1 requires go >= 1.23; switching to go1.23.9$'
    ! stderr '\(running'
    stderr '^go: added rsc.io/needall v0.0.1'
    grep 'go 1.23' go.mod
    grep 'toolchain go1.23.9' go.mod
    
    # GOTOOLCHAIN=min+auto should run the newer toolchain
    env GOTOOLCHAIN=go1.21+auto
    cp go.mod.new go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/FixedStepPathMatcher.java

                // Empty path, might match when more elements added
                return true;
            }
            if (!step.matches(segments[startIndex])) {
                // Does not match element, will never match when more elements added
                return false;
            }
            if (startIndex +1 == segments.length) {
                // End of path, might match when more elements added
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/ArtifactRepository.java

         *
         * If this repository is to be added to an {@link org.gradle.api.artifacts.ArtifactRepositoryContainer}
         * (including {@link org.gradle.api.artifacts.dsl.RepositoryHandler}), its name cannot be changed after it has
         * been added to the container.
         *
         * @param name The name. Must not be null.
         * @throws IllegalStateException If the name is set after it has been added to the container.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            expect:
            def initialValue = toMutable(["abc"])
            property.set(initialValue)
            assertValueIs(["abc"])
            initialValue.add("added")
            assertValueIs(["abc", "added"])
        }
    
        def "queries underlying provider for every call to get()"() {
            def provider = Stub(ProviderInternal)
            provider.type >> List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. releasenotes/notes/25794.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - "22408"
    
    releaseNotes:
    - |
      **Added** Update Istio Workload and Istio Service dashboards to improve loading time.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 247 bytes
    - Viewed (0)
Back to top