Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,031 for actors (0.31 sec)

  1. .github/workflows/stale.yml

    permissions:
      contents: read
    
    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
            repo-token: ${{ secrets.GITHUB_TOKEN }}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 972 bytes
    - Viewed (0)
  2. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

    import org.gradle.api.internal.tasks.testing.junit.AbstractJUnitTestClassProcessor;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.actor.Actor;
    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    import org.junit.platform.engine.DiscoverySelector;
    import org.junit.platform.engine.FilterResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/setup.go

    // limitations under the License.
    
    package resource
    
    // SetupFn is a function used for performing setup actions.
    type SetupFn func(ctx Context) error
    
    // TeardownFn is a function used for performing tear-down actions.
    type TeardownFn func(ctx Context)
    
    // ShouldSkipFn is a function used for performing skip actions; if it returns true a job is skipped
    // Note: function may be called multiple times during the setup process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1018 bytes
    - Viewed (0)
  4. pkg/controller/serviceaccount/tokens_controller_test.go

    				t.Errorf("%s: unexpected items in secret queue: %d", k, controller.syncSecretQueue.Len())
    			}
    
    			actions := client.Actions()
    			for i, action := range actions {
    				if len(tc.ExpectedActions) < i+1 {
    					t.Errorf("%s: %d unexpected actions: %+v", k, len(actions)-len(tc.ExpectedActions), actions[i:])
    					break
    				}
    
    				expectedAction := tc.ExpectedActions[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainerSpec.groovy

                "create(String, Class, Action)": { container.create("b", container.type, Actions.doNothing()) },
                "register(String, Class)": { container.register("b", container.type) },
                "register(String, Class, Action)": { container.register("b", container.type, Actions.doNothing()) },
            ]
        }
    
        def "allow query and mutating methods from create with type using #methods.key"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    // that they have access to.
    //
    // It can be optionally associated with a particular assigner, in which case it
    // contains one valid set of trust anchors for that signer. Signers may have
    // multiple associated ClusterTrustBundles; each is an independent set of trust
    // anchors for that signer. Admission control is used to enforce that only users
    // with permissions on the signer can create or modify the corresponding bundle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/DefaultCollectionEventRegisterSpec.groovy

        }
    
        def "actions do nothing when none registered"() {
            expect:
            r.fireObjectAdded("a")
            r.fireObjectRemoved("a")
        }
    
        def "nothing subscribed when no actions registered"() {
            expect:
            !r.isSubscribed(null)
            !r.isSubscribed(CharSequence)
            !r.isSubscribed(String)
        }
    
        def "actions are invoked in order registered"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 16 06:16:46 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

            when:
            strategy.dependencySubstitutionRule.execute(details)
    
            then:
            _ * dependencySubstitutions.ruleAction >> Actions.doNothing()
            _ * globalDependencySubstitutions.ruleAction >> Actions.doNothing()
            _ * details.getRequested() >> DefaultModuleComponentSelector.newSelector(mid, new DefaultMutableVersionConstraint("1.0"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/pvprotection/pv_protection_controller_test.go

    				// Most probably it's exponential backoff
    				time.Sleep(10 * time.Millisecond)
    				continue
    			}
    			break
    		}
    		actions := client.Actions()
    
    		if !reflect.DeepEqual(actions, test.expectedActions) {
    			t.Errorf("Test %q: action not expected\nExpected:\n%s\ngot:\n%s", test.name, dump.Pretty(test.expectedActions), dump.Pretty(actions))
    		}
    
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/IntermediateBuildActionRunnerTest.groovy

        def "parallelism is defined by Tooling API parallel actions"() {
            when:
            runner.isParallel()
    
            then:
            1 * buildModelParameters.isParallelToolingApiActions() >> true
            0 * _
        }
    
        def "runs supplied actions"() {
            given:
            def action1 = Mock(Supplier)
            def action2 = Mock(Supplier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 17:58:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top