Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 756 for covers (0.15 sec)

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

    import spock.lang.Issue
    
    @FluidDependenciesResolveTest
    class ProjectDependenciesIntegrationTest extends AbstractDependencyResolutionTest {
    
        @Issue("GRADLE-2477") //this is a feature on its own but also covers one of the reported issues
        def "resolving project dependency triggers configuration of the target project"() {
            createDirs("impl")
            settingsFile << "include 'impl'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:37:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsBugsIntegrationTest.groovy

        def "should resolve dependency which version is provided by an upgraded transitive platform"() {
            given:
            // io.ktor:ktor-bom:1.3.2 is not available in mavenCentral() and the original issue this test covers
            // is only reproducible with io.micronaut:micronaut-bom:2.0.1 which depends on io.ktor:ktor-bom:1.3.2
            // The original issue can still be reproduced using the following placeholder pom for this missing dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:55 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEarAndWebAndEjbProjectIntegrationTest.groovy

            implementation 'javax.servlet:javax.servlet-api:3.1.0'
            testImplementation "junit:junit:4.13"
        }
    }
    """
    
            when:
            run "eclipse"
    
            then:
            // This test covers actual behaviour, not necessarily desired behaviour
    
            // Builders and natures
            def javaProject = project('java')
            def webProject = project('web')
            def earProject = project('ear')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/version_buildvcs_hg.txt

    # This test checks that VCS information is stamped into Go binaries by default,
    # controlled with -buildvcs. This test focuses on Mercurial specifics.
    # The Git test covers common functionality.
    
    [!exec:hg] skip
    [short] skip
    env GOBIN=$WORK/gopath/bin
    env oldpath=$PATH
    cd repo/a
    
    # If there's no local repository, there's no VCS info.
    go install
    go version -m $GOBIN/a$GOEXE
    ! stdout hgrevision
    rm $GOBIN/a$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 18:09:02 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_wild.txt

    # This test covers a crazy edge-case involving wildcards and multiple passes of
    # patch-upgrades, but if we get it right we probably get many other edge-cases
    # right too.
    
    go list -m all
    stdout '^example.net/a v0.1.0 '
    ! stdout '^example.net/b '
    
    
    # Requesting pattern example.../b by itself fails: there is no such module
    # already in the build list, and the wildcard in the first element prevents us
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. pkg/registry/rbac/validation/policy_compact.go

    }
    
    // CompactRules combines rules that contain a single APIGroup/Resource, differ only by verb, and contain no other attributes.
    // this is a fast check, and works well with the decomposed "missing rules" list from a Covers check.
    func CompactRules(rules []rbacv1.PolicyRule) ([]rbacv1.PolicyRule, error) {
    	compacted := make([]rbacv1.PolicyRule, 0, len(rules))
    
    	simpleRules := map[simpleResource]*rbacv1.PolicyRule{}
    	for _, rule := range rules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    If you need to install Gradle before the tutorial, you can do so in the <<installation.adoc#installation,installation section>>.
    
    [sidebar]
    _Training level_: **Beginner** +
    _Training time_: **55 minutes**
    
    The tutorial covers:
    
    <<part1_gradle_init#part1_begin,Part 1.>> Initializing the Project +
    <<part2_gradle_tasks#part2_begin,Part 2.>> Running Tasks +
    <<part3_gradle_dep_man#part3_begin,Part 3.>> Understanding Dependencies +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/version_buildvcs_fossil.txt

    # This test checks that VCS information is stamped into Go binaries by default,
    # controlled with -buildvcs. This test focuses on Fossil specifics.
    # The Git test covers common functionality.
    
    # "fossil" is the Fossil file server on Plan 9.
    [GOOS:plan9] skip
    [!exec:fossil] skip
    [short] skip
    env GOBIN=$WORK/gopath/bin
    env oldpath=$PATH
    env HOME=$WORK
    env USER=gopher
    [!GOOS:windows] env fslckout=.fslckout
    [GOOS:windows] env fslckout=_FOSSIL_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/index.md

    ## OAuth2
    
    OAuth2 is a specification that defines several ways to handle authentication and authorization.
    
    It is quite an extensive specification and covers several complex use cases.
    
    It includes ways to authenticate using a "third party".
    
    That's what all the systems with "login with Facebook, Google, Twitter, GitHub" use underneath.
    
    ### OAuth 1
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/output/types.go

    	NodeName       string
    }
    
    // ComponentConfigVersionState describes the current and desired version of a component config
    type ComponentConfigVersionState struct {
    	// Group points to the Kubernetes API group that covers the config
    	Group string
    
    	// CurrentVersion is the currently active component config version
    	// NOTE: This can be empty in case the config was not found on the cluster or it was unsupported
    	// kubeadm generated version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top