Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 635 for covers (0.18 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    		semanticRoles.edit.Rules[i] = rule
    	}
    
    	// confirm that the view role doesn't already have extra powers
    	for _, rule := range viewEscalatingNamespaceResources {
    		if covers, _ := validation.Covers(semanticRoles.view.Rules, []rbacv1.PolicyRule{rule}); covers {
    			t.Errorf("view has extra powers: %#v", rule)
    		}
    	}
    	semanticRoles.view.Rules = append(semanticRoles.view.Rules, viewEscalatingNamespaceResources...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    [sidebar]
    _Training level_: **Intermediate** +
    _Reading time_: **35 minutes**
    
    The introduction covers:
    
    <<gradle_directories.adoc#gradle_directories,Part 1.>> Gradle Directories +
    <<intro_multi_project_builds.adoc#intro_multi_project_builds,Part 2.>> Multi-Project Builds +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/MathTesting.java

      static {
        ImmutableSet.Builder<Integer> intValues = ImmutableSet.builder();
        // Add boundary values manually to avoid over/under flow (this covers 2^N for 0 and 31).
        intValues.add(Integer.MAX_VALUE - 1, Integer.MAX_VALUE);
        // Add values up to 40. This covers cases like "square of a prime" and such.
        for (int i = 1; i <= 40; i++) {
          intValues.add(i);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/README.md

        off-node to all types of service IPs, and traffic coming from pods to all types of
        service IPs. (We *must* do this in `prerouting`, because the choice of endpoint IP may
        affect whether the packet then gets routed along the input path or the forward path.)
    
      - We do the DNAT for outbound traffic in `output`: this covers traffic coming from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/kotlin/Module.md

    The Kotlin DSL is implemented on top of Gradle’s Java API.
    Many of the objects, functions, and properties you use in your build scripts come from the Gradle API and the APIs of the applied plugins.
    This reference covers both the Kotlin DSL and the Java API, but it doesn't include functionality provided by external plugins.
    
    The main package of the Kotlin DSL is <a href="./gradle/org.gradle.kotlin.dsl/index.html">org.gradle.kotlin.dsl</a>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 22:09:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/types.go

    	Depth int     `json:",omitempty"` // for stack counters
    }
    
    // A Report is what's uploaded (or saved locally)
    type Report struct {
    	Week     string  // first day this report covers (YYYY-MM-DD)
    	LastWeek string  // Week field from latest previous report uploaded
    	X        float64 // A random probability used to determine which counters are uploaded
    	Programs []*ProgramReport
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top