Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 756 for covers (0.14 sec)

  1. pkg/registry/rbac/validation/policy_compact_test.go

    			continue
    		}
    		if covers, missing := validation.Covers(compacted, rules); !covers {
    			t.Errorf("%s: compacted rules did not cover original rules. missing: %#v", k, missing)
    			continue
    		}
    		if covers, missing := validation.Covers(rules, compacted); !covers {
    			t.Errorf("%s: original rules did not cover compacted rules. missing: %#v", k, missing)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 9.5K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/testdata/script/build_import_cycle.txt

    # mod_import_cycle covers this error in module mode.
    env GO111MODULE=off
    
    ! go build selfimport
    stderr -count=1 'import cycle not allowed'
    
    go list -e -f '{{.Error}}' selfimport # Don't hang forever
    stdout -count=1 'import cycle not allowed'
    
    -- selfimport/selfimport.go --
    package selfimport
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 314 bytes
    - Viewed (0)
  4. 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)
  5. test/chan/select8.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test break statements in a select.
    // Gccgo had a bug in handling this.
    // Test 1,2,3-case selects, so it covers both the general
    // code path and the specialized optimizations for one-
    // and two-case selects.
    
    package main
    
    var ch = make(chan int)
    
    func main() {
    	go func() {
    		for {
    			ch <- 5
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 10 18:02:11 UTC 2019
    - 826 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. VULNERABILITY_REPORT.md

    any directly connected ecosystem component or a direct / indirect dependency
    of the code base.
    
    ## Scope
    
    The vulnerability management policy described in this document covers the
    process of investigating, assessing and resolving a vulnerability report
    opened by a MinIO employee or an external third party.
    
    Therefore, it lists pre-conditions and actions that should be performed to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top