Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,536 for actors (0.29 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      //
      // 1) `granular`:
      //      These maps are actual maps (key-value pairs) and each fields are independent
      //      from each other (they can each be manipulated by separate actors). This is
      //      the default behaviour for all maps.
      // 2) `atomic`: the list is treated as a single entity, like a scalar.
      //      Atomic maps will be entirely replaced when updated.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/MaxNParallelTestClassProcessorTest.groovy

            TestClassProcessor asyncProcessor2 = Mock()
            Actor actor1 = Mock()
            Actor actor2 = Mock()
    
            startProcessor()
    
            when:
            processor.processTestClass(test)
    
            then:
            1 * factory.create() >> processor1
            1 * actorFactory.createActor(processor1) >> actor1
            1 * actor1.getProxy(TestClassProcessor) >> asyncProcessor1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

     * calling {@link Dispatch#dispatch(Object)} on the actor, or using the proxy object
     * returned by {@link #getProxy(Class)}. Methods are delivered to the target object in the order they are called on the
     * actor, but are delivered to the target object by a single thread at a time. In this way, the target object does not need
     * to perform any synchronisation.</p>
     *
     * <p>An actor uses one of two modes to deliver method calls to the target object:</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/actor/internal/DefaultActorFactorySpec.groovy

            def actor2 = factory.createActor(target)
    
            then:
            actor2.is(actor1)
        }
    
        def returnsTargetObjectIfTargetObjectIsAnActor() {
            when:
            def actor1 = factory.createActor(target)
            def actor2 = factory.createActor(actor1)
    
            then:
            actor2.is(actor1)
        }
    
        def nonBlockingActorAndProxyAreBothMarkedAsThreadSafe() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

            if (actions.isEmpty()) {
                return doNothing();
            }
            if (actions.size() == 1) {
                return Cast.uncheckedCast(actions.get(0));
            }
            return new CompositeAction<T>(actions);
        }
    
        /**
         * Creates an action that will call each of the given actions in order.
         *
         * @param actions The actions to make a composite of.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    image::ci-systems/github-actions-create-repository.png[Create new GitHub repository]
    
    === Clone the repository locally
    
    [listing.terminal.sample-command]
    ----
    $ git clone ******@****.***:<YOUR-GITHUB-USER>/github-actions-gradle-sample.git
    Cloning into 'github-actions-gradle-sample'...
    $ cd github-actions-gradle-sample
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-workflows.png

    github-actions-workflows.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 137.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-workflow.png

    github-actions-workflow.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 255.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-dependency-graph.png

    github-actions-dependency-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:06:09 UTC 2024
    - 251.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-cache-details.png

    github-actions-cache-details.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 226.8K bytes
    - Viewed (0)
Back to top