Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,031 for actors (0.2 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/processors/MaxNParallelTestClassProcessor.java

            TestClassProcessor processor;
            if (processors.size() < maxProcessors) {
                processor = factory.create();
                rawProcessors.add(processor);
                Actor actor = actorFactory.createActor(processor);
                processor = actor.getProxy(TestClassProcessor.class);
                actors.add(actor);
                processors.add(processor);
                processor.startProcessing(resultProcessor);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. .github/workflows/test.yml

            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
            with:
              python-version: "3.11"
              # Issue ref: https://github.com/actions/setup-python/issues/436
              # cache: "pip"
              # cache-dependency-path: pyproject.toml
          - uses: actions/cache@v4
            id: cache
            with:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/internal/DefaultActorFactory.java

                }
                NonBlockingActor actor = nonBlockingActors.get(target);
                if (actor == null) {
                    actor = new NonBlockingActor(target);
                    nonBlockingActors.put(target, actor);
                }
                return actor;
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. .github/workflows/build-docs.yml

          - changes
        runs-on: ubuntu-latest
        outputs:
          langs: ${{ steps.show-langs.outputs.langs }}
        steps:
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
            with:
              python-version: "3.11"
          - uses: actions/cache@v4
            id: cache
            with:
              path: ${{ env.pythonLocation }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight.go

    					} else {
    						watermark.recordReadOnly(len(c))
    					}
    				}()
    				handler.ServeHTTP(w, r)
    
    			default:
    				// at this point we're about to return a 429, BUT not all actors should be rate limited.  A system:master is so powerful
    				// that they should always get an answer.  It's a super-admin or a loopback connection.
    				if currUser, ok := apirequest.UserFrom(ctx); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 11:34:15 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	//
    	// 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
    	XMapType *string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    // Sleep must only be invoked in a goroutine that is counted
    // in the Fake's associated GoRoutineCounter.
    // Unlike the base FakeClock's Sleep, this method does not itself advance the clock
    // but rather leaves that up to other actors (e.g., Run).
    func (fec *Fake) Sleep(duration time.Duration) {
    	doneCh := make(chan struct{})
    	fec.EventAfterDuration(func(time.Time) {
    		fec.clientWG.Add(1)
    		close(doneCh)
    	}, duration)
    	fec.clientWG.Add(-1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		}
    		// In CNI, we are running the pod network namespace, but the host filesystem. Locking the host is both useless and harmful,
    		// as it opens the risk of lock contention with other node actors (such as kube-proxy), and isn't actually needed at all.
    		// Older iptables cannot turn off the lock explicitly, so we hack around it...
    		// Overwrite the lock file with the network namespace file (which is assumed to be unique).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	//
    	// 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
    	XMapType *string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	//
    	// 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: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
Back to top