Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 254 for Dep (5.98 sec)

  1. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    participant client as Client
    participant handler as Exception handler
    participant dep as Dep with yield
    participant operation as Path Operation
    participant tasks as Background tasks
    
        Note over client,operation: Can raise exceptions, including HTTPException
        client ->> dep: Start request
        Note over dep: Run code up to yield
        opt raise Exception
            dep -->> handler: Raise Exception
            handler -->> client: HTTP error response
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            fileTree.getBuiltBy() == ["a", "b"] as Set
            dep.mutableValues == ["a", "b"] as Set
    
            when:
            fileTree.setBuiltBy(["c"])
            then:
            fileTree.getBuiltBy() == ["c"] as Set
            dep.mutableValues == ["c"] as Set
    
            when:
            fileTree.visitDependencies(context)
    
            then:
            1 * context.add(dep)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

                    configurations.all { config ->
                        config.getResolutionStrategy().eachDependency { dep ->
                            if (dep.getRequested().getName() == "spotbugs-annotations") {
                                dep.useTarget("com.github.spotbugs:spotbugs-annotations:4.8.1")
                                dep.because("Because I said so")
                            }
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenPomResolveIntegrationTest.groovy

                dependencies {
                    compile "group:artifact:1.0"
                }
            """
            resolve.prepare()
    
            and:
            parent.pom.expectGet()
            dep.pom.expectGet()
            dep.artifact.expectGet()
    
            expect:
            // have to run twice to trigger the failure, to parse the descriptor from the cache
            succeeds ":checkDeps"
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. OWNERS_ALIASES

      sig-windows-api-reviewers:
        - jayunit100
        - jsturtevant
        - marosset
      # Note: dep-approvers has approval on root files (including OWNERS_ALIASES) until https://github.com/kubernetes/test-infra/pull/21398 is resolved.
      # People with approve rights via this alias should defer updates of root files other than go.mod/go.sum to dep-approvers.
      dep-approvers:
        - BenTheElder
        - cblecker
        - dims
        - thockin
        - sttts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

            hasDependency(module, "f", "TEST")
        }
    
        def hasDependency(IdeaModule module, String name, String scope) {
            module.dependencies.find { IdeaModuleDependency dep ->
                dep.targetModuleName == name && dep.scope.scope == scope
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/tree/dep/pom.xml

    <project xmlns="http://maven.apache.org/POM/4.0.0">
    
        <parent>
            <groupId>org.apache.maven.ut</groupId>
            <artifactId>parent</artifactId>
        </parent>
        <artifactId>dep</artifactId>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 212 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/DependencyManagementIntegrationTest.kt

                "direct-block:string-invoke",
                "direct-block:string-invoke-with-action"
            ).forEach { dep ->
                build("dependencyInsight", "--configuration", "compileClasspath", "--dependency", dep).apply {
                    assertThat(output, containsString("$dep:1.0 (by constraint)"))
                }
            }
        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/26602")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

                if (seen.add(node)) {
                    components.add(node)
                    for (final def dep in node.getDependencies()) {
                        dependencies.add(dep)
                        if (dep instanceof ResolvedDependencyResult) {
                            queue.add(dep.selected)
                        }
                    }
                } // else, already seen
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/projects/CheckProject.kt

            )
            text(
                "reverse.dep.*.additional.gradle.parameters",
                "",
                display = ParameterDisplay.NORMAL,
                allowEmpty = true,
                description = "The extra gradle parameters you want to pass to all dependencies of this build, e.g. `-PrerunAllTests` or `--no-build-cache`"
            )
            text(
                "reverse.dep.*.skip.build",
                "",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 05:52:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top