Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,031 for actors (0.12 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "description": "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		actions = appendIf(actions, action{"GET", itemPath, nameParams, namer, false}, isGetter)
    		if getSubpath {
    			actions = appendIf(actions, action{"GET", itemPath + "/{path:*}", proxyParams, namer, false}, isGetter)
    		}
    		actions = appendIf(actions, action{"PUT", itemPath, nameParams, namer, false}, isUpdater)
    		actions = appendIf(actions, action{"PATCH", itemPath, nameParams, namer, false}, isPatcher)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultTaskTest.groovy

            action2.is(defaultTask.actions[0].action)
            action1.is(defaultTask.actions[1].action)
        }
    
        def "doLast() adds action to the end of actions list"() {
            given:
            Action<Task> action1 = Actions.doNothing()
            Action<Task> action2 = Actions.doNothing()
    
            expect:
            defaultTask.is(defaultTask.doLast(action1))
            1 == defaultTask.actions.size()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ActionsTest.groovy

            composite(actions[0], actions[1]) != composite(actions[1], actions[0])
            composite(actions[0], actions[1]) != composite(actions[0], actions[2])
            composite() == composite()
            composite() != composite(actions[0])
            composite(actions[0]) != composite()
        }
    
        def "adapting runnables"() {
            given:
            def runnable = Mock(Runnable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. docs/batch-jobs/README.md

    ### Type
    Type describes the job type, such as replicating objects between MinIO sites. Each job performs a single type of operation across all objects that match the job description criteria.
    
    ## Batch Jobs via Commandline
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  6. .github/workflows/build.yml

            with:
              fetch-depth: 0
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 11
    
          - name: Configure JDK
            uses: actions/setup-java@v4
            with:
              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. pkg/kubelet/util/manager/cache_based_manager_test.go

    	ttlExists = true
    	store.Get("ns", "name")
    	actions := fakeClient.Actions()
    	assert.Equal(t, 1, len(actions), "unexpected actions: %#v", actions)
    	fakeClient.ClearActions()
    
    	// Set 5-minute ttl and see if this works.
    	ttl = time.Duration(5) * time.Minute
    	store.Get("ns", "name")
    	actions = fakeClient.Actions()
    	assert.Equal(t, 0, len(actions), "unexpected actions: %#v", actions)
    	// Still no effect after 4 minutes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tfcompile.bzl

    def _tfcompile_model_library_rule_impl(ctx):
        header_file = ctx.outputs.header_out
        metadata_object_file = ctx.actions.declare_file("%s_tfcompile_metadata.o" % ctx.attr.model_name)
        function_object_file = ctx.actions.declare_file("%s_tfcompile_function.o" % ctx.attr.model_name)
        session_module_pb = ctx.actions.declare_file("%s_session_module.pb" % ctx.attr.model_name)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

            private final Action<? super T>[] actions;
    
            SetWithFewActions(ImmutableSet<Action<? super T>> set) {
                actions = Cast.uncheckedNonnullCast(set.toArray(new Action<?>[set.size()]));
            }
    
            SetWithFewActions(Action<? super T>[] actions) {
                this.actions = actions;
            }
    
            @Override
            public boolean isEmpty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/fake.go

    	f.expect.lock.RLock()
    	defer f.expect.lock.RUnlock()
    
    	return len(f.Actions) >= len(f.expect.Actions)
    }
    
    func (f *fakeResourceManager) Validate() error {
    	f.lock.RLock()
    	defer f.lock.RUnlock()
    
    	f.expect.lock.RLock()
    	defer f.expect.lock.RUnlock()
    
    	if !reflect.DeepEqual(f.expect.Actions, f.Actions) {
    		return errors.New(cmp.Diff(f.expect.Actions, f.Actions))
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top