Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,365 for addSdk (0.5 sec)

  1. releasenotes/notes/56781.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: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIncrementalIntegrationTest.groovy

                ext {
                    added = []
                    modified = []
                    removed = []
                    incremental = true
                    registerNewOutput = false
                }
            """
            setupBuildWithColorTransform {
                produceDirs()
                params("""
                    addedFiles.set(provider { added })
                    modifiedFiles.set(provider { modified })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 10:57:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/EmptyBlocksTest.kt

            assertEquals(listOf(0, 0, 2, 3, 4), result.added.map { it.x })
        }
    
    
        private
        val schema = schemaFromTypes(TopLevel::class, this::class.nestedClasses)
    
    
        class TopLevel {
            val configuredLazy = lazy { Inner() }
            val added = mutableListOf<Inner>()
    
            @Suppress("unused")
            @Configuring
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java

        String getLanguage();
    
        /**
         * Specifies if the artifact contains java classes and can be added to the classpath.
         * Whether the artifact should be added to the classpath depends on other
         * dependency properties.
         *
         * @return if the artifact can be added to the class path
         *
         * @deprecated A value of {@code true} does not mean that the dependency should
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyConstraintSet.java

        }
    
        @Override
        public boolean addAll(Collection<? extends DependencyConstraint> dependencyConstraints) {
            boolean added = false;
            for (DependencyConstraint dependencyConstraint : dependencyConstraints) {
                added |= add(dependencyConstraint);
            }
            return added;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:26:55 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. releasenotes/notes/48818.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: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top