Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,870 for actors (0.11 sec)

  1. plugin/pkg/admission/namespace/exists/admission_test.go

    	if err == nil {
    		actions := ""
    		for _, action := range mockClient.Actions() {
    			actions = actions + action.GetVerb() + ":" + action.GetResource().Resource + ":" + action.GetSubresource() + ", "
    		}
    		t.Errorf("expected error returned from admission handler: %v", actions)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. .github/dependabot.yml

    version: 2
    updates:
      # GitHub Actions
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "daily"
        commit-message:
          prefix: ⬆
      # Python
      - package-ecosystem: "pip"
        directory: "/"
        schedule:
          interval: "monthly"
        commit-message:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:41:55 UTC 2024
    - 311 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultObjectConfigurationAction.java

        private final ScriptHandlerFactory scriptHandlerFactory;
        private final Set<Object> targets = new LinkedHashSet<Object>();
        private final Set<Runnable> actions = new LinkedHashSet<Runnable>();
        private final ClassLoaderScope classLoaderScope;
        private final TextUriResourceLoader.Factory textUriFileResourceLoaderFactory;
        private final Object defaultTarget;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractSpockTaskTest.groovy

        }
    
        def testSetActions() {
            when:
            Action action1 = Actions.doNothing()
            getTask().actions = [action1]
    
            Action action2 = Actions.doNothing()
            getTask().actions = [action2]
    
            then:
            [new AbstractTask.TaskActionWrapper(action2, "doLast(Action)")] ==  getTask().actions
        }
    
        def testAddActionWithNull() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 14:27:55 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

            language: ['java', 'javascript']
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v4
          with:
            fetch-depth: 2
    
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
    
        - name: Set up JDK 17
          uses: actions/setup-java@v4
          with:
            java-version: '17'
            distribution: 'temurin'
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	ch := make(chan struct{})
    	close(ch)
    	for _, a := range runs {
    		if r, ok := a.Actor.(*runTestActor); ok {
    			r.prev = ch
    			ch = make(chan struct{})
    			r.next = ch
    		}
    	}
    
    	// Ultimately the goal is to print the output.
    	root := &work.Action{Mode: "go test", Actor: work.ActorFunc(printExitStatus), Deps: prints}
    
    	// Force the printing of results to happen in order,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. .github/workflows/missing_playground.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
    - 1.3K bytes
    - Viewed (0)
  8. tests/integration/telemetry/policy/testdata/enable_envoy_ratelimit.yaml

                route:
                  action: ANY
          patch:
            operation: MERGE
            value:
              rate_limits:
                - actions: # any actions in here
                      # Multiple actions nest the descriptors
                      # - generic_key:
                      # descriptor_value: "test"
                  - request_headers:
                      header_name: ":path"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchCustomModelForSameProjectInParallel.java

        @Override
        public List<SomeToolingModel> execute(BuildController controller) {
            List<FetchModelForProject> actions = new ArrayList<>();
            for (int i = 1; i <= 2; i++) {
                actions.add(new FetchModelForProject("nested-" + i));
            }
            return controller.run(actions);
        }
    
        private static class FetchModelForProject implements BuildAction<SomeToolingModel> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. docs/releasing.md

        ```
    
    5. Wait for [GitHub Actions][github_actions] to start the publish job.
    
    6. Prepare for ongoing development and push to GitHub.
    
        ```
        sed -i "" \
          "s/version = \".*\"/version = \"$NEXT_VERSION\"/g" \
          build.gradle.kts
        git commit -am "Prepare next development version."
        git push
        ```
    
    7. Confirm the [GitHub Actions][github_actions] publish job succeeded.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top