Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,023 for addSdk (0.1 sec)

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

        private final FileType currentFileType;
        private final String normalizedPath;
    
        public static DefaultFileChange added(String path, String title, FileType currentFileType, String normalizedPath) {
            return new DefaultFileChange(path, ChangeTypeInternal.ADDED, title, FileType.Missing, currentFileType, normalizedPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/impl/AbsolutePathFileCollectionFingerprinterTest.groovy

                switch (change.type) {
                    case ChangeTypeInternal.ADDED:
                        listener.added(change.path)
                        break
                    case ChangeTypeInternal.MODIFIED:
                        listener.changed(change.path)
                        break
                    case ChangeTypeInternal.REMOVED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 20 16:00:23 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/testdata/script/mod_go_version_mixed.txt

    var A sub.Alias
    var D sub.Defined
    
    -- sub/go.mod --
    module m
    go 1.14
    
    -- sub/sub.go --
    package sub
    
    // signed shift counts added in Go 1.13
    func F(l, r int) int { return l << r }
    
    type m1 interface { M() }
    type m2 interface { M() }
    
    // overlapping interfaces added in Go 1.14
    type Alias = interface { m1; m2; M() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 08 21:27:51 UTC 2019
    - 646 bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeSpec.java

         * {@link org.gradle.api.Project#file(Object)} . If multiple merge paths are specified, the manifest are merged
         * in the order in which they are added.
         *
         * @param mergePaths The paths of manifests to be merged
         * @return this
         */
        ManifestMergeSpec from(Object... mergePaths);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top