Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 793 for _action (0.64 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

         *
         * @param actions The actions to make a composite of.
         * @param <T> The type of the object that action is for
         * @return The composite action.
         */
        public static <T> Action<T> composite(Iterable<? extends Action<? super T>> actions) {
            ImmutableList.Builder<Action<? super T>> builder = ImmutableList.builder();
            for (Action<? super T> action : actions) {
                if (doesSomething(action)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Action.java

     */
    package org.gradle.api;
    
    /**
     * Performs some action against objects of type T.
     *
     * @param <T> The type of object which this action accepts.
     */
    @HasImplicitReceiver
    public interface Action<T> {
        /**
         * Performs this action against the given object.
         *
         * @param t The object to perform the action on.
         */
        void execute(T t);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 968 bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/BiAction.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    public interface BiAction<A, B> {
    
        void execute(A a, B b);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 713 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

    import org.lastaflute.web.response.StreamResponse;
    
    public class GoAction extends FessSearchAction {
    
        // ===================================================================================
        //                                                                            Constant
        //
        private static final Logger logger = LogManager.getLogger(GoAction.class);
    
        @Resource
        protected PathMappingHelper pathMappingHelper;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/BiActions.java

            return new BiAction<A, B>() {
                @Override
                public void execute(A a, B b) {
                    for (BiAction<? super A, ? super B> action : actions) {
                        action.execute(a, b);
                    }
                }
            };
        }
    
        public static <A> BiAction<A, Object> usingFirstArgument(final Action<? super A> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistrations.java

                return this;
            }
    
            public Builder action(ModelActionRole role, ModelAction action) {
                this.actions.put(role, action);
                return this;
            }
    
            public Builder action(ModelActionRole role, Action<? super MutableModelNode> action) {
                return action(role, new NoInputsBuilderAction(reference, descriptorReference, action));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandlerTest.groovy

            client?.stop()
        }
    
        def "manages contention for multiple locks"() {
            def action1 = new AtomicBoolean()
            def action2 = new AtomicBoolean()
    
            when:
            int port = handler.reservePort()
            handler.start(10, { action1.set(true) })
            handler.start(11, { action2.set(true) })
    
            client.maybePingOwner(port, 10, "lock 1", 50000, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ManagedModelCreationRuleExtractor.java

                                ModelActionRole role = actionInRole.getKey();
                                ModelAction action = actionInRole.getValue();
                                node.applyToSelf(role, action);
                            }
                        }
                    });
                }
    
                registration.action(ModelActionRole.Initialize,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelActionBuilder.java

        }
    
        public <I> ModelAction action(ModelPath modelPath, Class<I> inputType, BiAction<? super T, ? super I> action) {
            return action(modelPath, ModelType.of(inputType), action);
        }
    
        public <I> ModelAction action(String modelPath, Class<I> inputType, BiAction<? super T, ? super I> action) {
            return action(ModelPath.path(modelPath), ModelType.of(inputType), action);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

                "afterEvaluate action cannot execute before beforeEvaluate"
            }
            executeAll(actions.afterProject, project)
        }
    
        private
        fun executeAll(actions: IsolatedProjectActionList, project: Project) {
            for (action in actions) {
                action.execute(project)
            }
        }
    
        private
        fun isolatedActions() = IsolateOwners.OwnerGradle(gradle).let { owner ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top