Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 788 for addSdk (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/RepositoryContentDescriptorInternal.java

        /**
         * Returns values added by {@link #onlyForConfigurations}.
         */
        @Nullable
        Set<String> getIncludedConfigurations();
    
        /**
         * Returns values added by {@link #notForConfigurations}
         */
        @Nullable
        Set<String> getExcludedConfigurations();
    
        /**
         * Returns value added by {@link #onlyForAttribute}
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationQueue.java

    /**
     * An individual active, single use, queue of build operations.
     * <p>
     * The queue is active in that operations are potentially executed as soon as they are added.
     * The queue is single use in that no further work can be added once {@link #waitForCompletion()} has completed.
     * <p>
     * A queue instance is threadsafe. Build operations can submit further operations to the queue but must not block waiting for them to complete.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultTestLauncherTest.groovy

                assert request.taskAndTests == [:]
                assert request.getInternalJvmTestRequests().collect {[it.className, it.methodName]} == [["test", null]]
            }
        }
    
        def "tests class requests are added to test request"() {
            given:
            launcher.withJvmTestClasses("clazz")
            when:
            launcher.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         *
         * <p>If no artifact is added to a dependency, an implicit default artifact is used. This default artifact has the
         * same name as the module and its type and extension is {@code jar}. If at least one artifact is explicitly added,
         * the implicit default artifact won't be used any longer.</p>
         *
         * @return the added artifact
         *
         * @see DependencyArtifact
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbsolutePathChangeDetector.java

                        }
                    }
                    // else, unchanged; check next file
                } else {
                    Change added = changeFactory.added(currentAbsolutePath, propertyTitle, currentItem);
                    if (!visitor.visitChange(added)) {
                        return false;
                    }
                }
            }
    
            for (String previousAbsolutePath : unaccountedForPreviousItems) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top