Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,572 for Actions (0.39 sec)

  1. pkg/controller/serviceaccount/serviceaccounts_controller_test.go

    			t.Errorf("%s: took too long", k)
    		}
    
    		actions := client.Actions()
    		if len(tc.ExpectCreatedServiceAccounts) != len(actions) {
    			t.Errorf("%s: Expected to create accounts %#v. Actual actions were: %#v", k, tc.ExpectCreatedServiceAccounts, actions)
    			continue
    		}
    		for i, expectedName := range tc.ExpectCreatedServiceAccounts {
    			action := actions[i]
    			if !action.Matches("create", "serviceaccounts") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 00:46:06 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  2. .github/workflows/publish.yml

            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
            with:
              python-version: "3.10"
              # Issue ref: https://github.com/actions/setup-python/issues/436
              # cache: "pip"
              # cache-dependency-path: pyproject.toml
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 06:38:13 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. .github/workflows/maven.yml

          matrix:
            os: [ubuntu-latest, windows-latest, macOS-latest]
          fail-fast: false
    
        runs-on: ${{ matrix.os }}
    
        steps:
          - uses: actions/checkout@v4
            with:
              persist-credentials: false
    
          - uses: actions/setup-java@v4
            with:
              java-version: 17
              distribution: 'temurin'
              cache: 'maven'
    
          - name: Set up Maven
            run:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. pkg/controller/deployment/deployment_controller_test.go

    			continue
    		}
    	}
    
    	if len(f.actions) > len(actions) {
    		f.t.Errorf("%d additional expected actions:%+v", len(f.actions)-len(actions), f.actions[len(actions):])
    	}
    }
    
    func filterInformerActions(actions []core.Action) []core.Action {
    	ret := []core.Action{}
    	for _, action := range actions {
    		if len(action.GetNamespace()) == 0 &&
    			(action.Matches("list", "pods") ||
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

        #    uses a compiled language
    
        #- run: |
        #   make bootstrap
        #   make release
        - uses: actions/checkout@v2
        - name: Set up JDK 17
          uses: actions/setup-java@v2
          with:
            java-version: '17'
            distribution: 'temurin'
        - name: Cache Maven packages
          uses: actions/cache@v2
          with:
            path: ~/.m2
            key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

                        @Internal
                        List<Closure> actions = []
    
                        void action() {
                            actions.add { "Groovy closure in task with delegate=\$delegate, owner=\${owner.class.name}, this=\${this.class.name}" }
                        }
    
                        void actionWithDelegate() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. .github/workflows/depsreview.yaml

    on: [pull_request]
    
    permissions:
      contents: read
    
    jobs:
      dependency-review:
        runs-on: ubuntu-latest
        steps:
          - name: 'Checkout Repository'
            uses: actions/checkout@v4
          - name: 'Dependency Review'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:44:49 UTC 2024
    - 296 bytes
    - Viewed (0)
  8. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    	ret := map[string]*corev1.ConfigMap{}
    	created := false
    
    	for _, action := range client.Actions() {
    		t.Log(dump.Pretty(action))
    		if action.Matches("create", "configmaps") {
    			created = true
    			obj := action.(clienttesting.CreateAction).GetObject().(*corev1.ConfigMap)
    			ret[obj.Name] = obj
    		}
    		if action.Matches("update", "configmaps") {
    			obj := action.(clienttesting.UpdateAction).GetObject().(*corev1.ConfigMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildController.java

         *
         * <p>When one or more actions fail with an exception, the exceptions are rethrown by this method and no result is returned.</p>
         *
         * @param actions The actions to run.
         * @param <T> the result type.
         * @return The action results. These are returned in the same order as the actions that produce them.
         * @since 6.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. .github/workflows/maven.yml

    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
    
        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 17
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 602 bytes
    - Viewed (0)
Back to top