Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for actioned (0.44 sec)

  1. src/cmd/go/internal/work/action.go

    // An Actor runs an action.
    type Actor interface {
    	Act(*Builder, context.Context, *Action) error
    }
    
    // An ActorFunc is an Actor that calls the function.
    type ActorFunc func(*Builder, context.Context, *Action) error
    
    func (f ActorFunc) Act(b *Builder, ctx context.Context, a *Action) error {
    	return f(b, ctx, a)
    }
    
    // An Action represents a single action in the action graph.
    type Action struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            1 * action.execute(task)
            0 * action._
        }
    
        void "container and task specific configuration actions are executed when task is created"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            def action3 = Mock(Action)
            def action4 = Mock(Action)
            def action5 = Mock(Action)
            def action6 = Mock(Action)
            def task = task("task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

                    def release1 = cacheAccess.acquireFileLock()
                    thread.blockUntil.action2
                    release1.run()
                    instant.action1
                }
                start {
                    def release2 = cacheAccess.acquireFileLock()
                    instant.action2
                    thread.blockUntil.action1
                    release2.run()
                }
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/buildid.go

    	// the actionID half; if it also appeared in the input that would be like an
    	// engineered 120-bit partial SHA256 collision.
    	a.actionID = actionHash
    	actionID := buildid.HashToString(actionHash)
    	if a.json != nil {
    		a.json.ActionID = actionID
    	}
    	contentID := actionID // temporary placeholder, likely unique
    	a.buildID = actionID + buildIDSeparator + contentID
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                        actions.add(action);
                        if (!(action instanceof ContinuingAction)) {
                            break;
                        }
                    }
                }
    
                if (!actions.isEmpty()) {
                    return Actions.composite(actions);
                }
    
                throw new UnsupportedOperationException("No action factory for specified command-line arguments.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pkg/controller/deployment/deployment_controller_test.go

    			continue
    		}
    	}
    
    	if len(f.actions) > len(actions) {
    		f.t.Errorf("%d additional expected actions:%+v", len(f.actions)-len(actions), f.actions[len(actions):])
    	}
    }
    
    func filterInformerActions(actions []core.Action) []core.Action {
    	ret := []core.Action{}
    	for _, action := range actions {
    		if len(action.GetNamespace()) == 0 &&
    			(action.Matches("list", "pods") ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/lifecycle.go

    	// ActionCount must be the last action and shouldn't be used as a regular action.
    	ActionCount
    )
    
    // DeleteRestored - Returns true if action demands delete on restored objects
    func (a Action) DeleteRestored() bool {
    	return a == DeleteRestoredAction || a == DeleteRestoredVersionAction
    }
    
    // DeleteVersioned - Returns true if action demands delete on a versioned object
    func (a Action) DeleteVersioned() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

                        }
                        Object action = actualArgs.get(Task.TASK_ACTION);
                        if (action instanceof Action) {
                            Action<? super Task> taskAction = Cast.uncheckedCast(action);
                            task.doFirst(taskAction);
                        } else if (action != null) {
                            Closure<?> closure = (Closure<?>) action;
                            task.doFirst(closure);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // 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,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

            '''
    
            expect:
            succeeds 'assertActionExecutionCount'
        }
    
        @Issue("https://github.com/gradle/gradle-native/issues/662")
        def "runs the lazy configuration actions in the same order as the eager configuration actions"() {
            buildFile << '''
                def actionExecutionOrderForTaskA = []
    
                class A extends DefaultTask {}
    
                tasks.withType(A).configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top