Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 689 for includedIf (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationIntegrityCheckIntegTest.groovy

            file("included/src/main/java/org/included/Included.java") << """
                package org.included;
                public class Included {}
            """
    
            when:
            fails "compileJava", "--include-build", "included"
    
            then:
            failure.assertHasCause terse ? """Dependency verification failed for configuration ':included:compileClasspath'
    2 artifacts failed verification:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    module("org:first-level:1.0")
                    module("org:foo:1.0")
                }
            }
        }
    
        void "dependency constraint is not included in resolution without a hard dependency"() {
            given:
            def available = featureAvailable()
            repository {
                'org:foo:1.0'()
                'org:first-level:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSortedSet.java

      /**
       * Returns an immutable sorted set containing the given elements sorted by their natural ordering.
       * When multiple elements are equivalent according to {@link Comparable#compareTo}, only the first
       * one specified is included.
       *
       * @throws NullPointerException if any element is null
       */
      public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E e1, E e2) {
        return construct(Ordering.natural(), 2, e1, e2);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

    from-included="org.gradle.test:other:1.1"
    """
            file("included/settings.gradle") << """
                rootProject.name = 'included'
    
                dependencyResolutionManagement {
                    repositories {
                        maven { url "${mavenHttpRepo.uri}" }
                    }
                }
            """
    
            settingsFile """
                includeBuild 'included'
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. fastapi/security/oauth2.py

                    Security scheme name.
    
                    It will be included in the generated OpenAPI (e.g. visible at `/docs`).
                    """
                ),
            ] = None,
            description: Annotated[
                Optional[str],
                Doc(
                    """
                    Security scheme description.
    
                    It will be included in the generated OpenAPI (e.g. visible at `/docs`).
                    """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyArtifactsIntegrationTest.groovy

            assertResolved buildB.file('build/libs/buildB-1.0.jar'), buildC.file('build/libs/buildC-1.0.jar')
        }
    
        def "builds dependency once when included directly and as a transitive dependency"() {
            given:
            dependency 'org.test:buildB:1.0'
            dependency 'org.test:buildC:1.0'
    
            buildB.buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:28 UTC 2020
    - 21.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// The stage for events generated when a panic occurred.
    	StagePanic Stage = "Panic"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Event captures all the information that can be included in an API audit log.
    type Event struct {
    	metav1.TypeMeta
    
    	// AuditLevel at which event was generated
    	Level Level
    
    	// Unique audit ID, generated for each request.
    	AuditID types.UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

            file("included/build.gradle") << """
                apply plugin: 'java'
                group = "com.example"
                version = "2.0"
            """
            // Copy cache configuration
            file("included/settings.gradle").text = settingsFile.text
            buildFile << """
                task gradleBuild(type: GradleBuild) {
                    dir = file("included/")
                    tasks = [ "build" ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            }
    
            /**
             * Finds the longest {@code path} prefix that identifies an included build and returns a pair
             * with the matching {@code path} prefix and {@link BuildState included build reference}.
             *
             * @return {@code null} if no {@code path} prefix identifying an included build is found
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. ci/official/utilities/code_check_full.bats

      | sed -e 's|:.*||' \
      | sort -u
    }
    
    # Verify that, given a build target and a license-list generator target, all of
    # the dependencies of that target which include a license notice file are then
    # included when generating that license. Necessary because the license targets
    # in TensorFlow are manually enumerated rather than generated automatically.
    do_external_licenses_check(){
      BUILD_TARGET="$1"
      LICENSES_TARGET="$2"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top