Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,416 for Replies (0.11 sec)

  1. common-protos/k8s.io/api/rbac/v1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest_shared_test.go

    	if err != nil {
    		return nil, fmt.Errorf("error %s: %s", err, manifest)
    	}
    	return NewObjectSet(getAllIstioObjects()), nil
    }
    
    // fakeApplyExtraResources applies any extra resources for the given test name.
    func fakeApplyExtraResources(inFile string) error {
    	reconciler, err := helmreconciler.NewHelmReconciler(testClient, nil, nil, nil)
    	if err != nil {
    		return err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/trace/testdata/testprog/main.go

    func main() {
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatal(err)
    	}
    
    	// checkExecutionTimes relies on this.
    	var wg sync.WaitGroup
    	wg.Add(2)
    	go cpu10(&wg)
    	go cpu20(&wg)
    	wg.Wait()
    
    	// checkHeapMetrics relies on this.
    	allocHog(25 * time.Millisecond)
    
    	// checkProcStartStop relies on this.
    	var wg2 sync.WaitGroup
    	for i := 0; i < runtime.GOMAXPROCS(0); i++ {
    		wg2.Add(1)
    		go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

        ModuleSourcesSerializer moduleSourcesSerializer = new ModuleSourcesSerializer([:])
    
        def 'setup'() {
            TestComponentMetadataRule.instanceCount = 0
        }
    
        def "add action rule that applies to all components"() {
            def action = new Action<ComponentMetadataDetails>() {
                @Override
                void execute(ComponentMetadataDetails componentMetadataDetails) {}
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. pkg/apis/rbac/types.go

    	AutoUpdateAnnotationKey = "rbac.authorization.kubernetes.io/autoupdate"
    )
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	Verbs []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersection.java

         *
         * @param left an exclude spec
         * @param right another exclude spec
         * @return {@code true} if this intersection applies to the given exclude specs (in any order); {@code false} otherwise
         */
        boolean applies(ExcludeSpec left, ExcludeSpec right);
    
        /**
         * Simplifies 2 given exclude specs (an any order) into a single exclude spec.
         *
         * @param left an exclude spec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

            assert output.contains("$projectPath cached:"): "no cache flag for project"
            output.contains("$projectPath cached: false")
        }
    
        @ToBeFixedForConfigurationCache(because = "test relies on static state")
        def "classloader is cached"() {
            given:
            addIsCachedCheck()
    
            when:
            run()
            run()
    
            then:
            isCached()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    	return map_ClusterRoleList
    }
    
    var map_PolicyRule = map[string]string{
    	"":                "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.",
    	"verbs":           "Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginAwareExtensions.kt

     * limitations under the License.
     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    import org.gradle.api.plugins.PluginAware
    
    
    /**
     * Applies the given plugin or script.
     *
     * @param from a script to apply, evaluated as per [Project.file]
     * @param plugin a id of the plugin to apply
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top