Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,648 for action1 (0.24 sec)

  1. 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)
  2. platforms/ide/ide-native/src/main/java/org/gradle/api/internal/PropertyListTransformer.java

         * @param action the action to add
         */
        public void addAction(Action<? super T> action) {
            actions.add(action);
        }
    
        /**
         * Transforms a property list object. This will modify the
         * original.
         * @param original the property list to transform
         * @return the transformed property list
         */
        @Override
        public T transform(T original) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. .github/workflows/scorecard.yml

          # contents: read
          # actions: read
    
        steps:
          - name: "Checkout code"
            uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
            with:
              persist-credentials: false
    
          - name: "Run analysis"
            uses: ossf/scorecard-action@dc50aa9510b46c811795eb24b2f1ba02a914e534 # v2.3.3
            with:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

            class Initial() : State() {
    
                private
                val actions = mutableListOf<RegisteredFlowAction>()
    
                override val pendingActions: List<RegisteredFlowAction>
                    get() = actions
    
                override fun add(registeredFlowAction: RegisteredFlowAction) {
                    synchronized(actions) {
                        actions.add(registeredFlowAction)
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/LazyConsumerActionExecutorTest.groovy

            1 * action.run(consumerConnection)
            0 * _._
        }
    
        def reusesConnection() {
            def action2 = Mock(ConsumerAction)
    
            when:
            connection.run(action)
            connection.run(action2)
    
            then:
            1 * loggingProvider.getProgressLoggerFactory() >> progressLoggerFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CompositeCleanupAction.java

            private final File baseDir;
            private final CleanupAction action;
    
            ScopedCleanupAction(File baseDir, CleanupAction action) {
                this.baseDir = baseDir;
                this.action = action;
            }
    
            @Override
            public void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor) {
                action.clean(new CleanableSubDir(cleanableStore, baseDir), progressMonitor);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/AsyncCacheAccess.java

    import java.util.function.Supplier;
    
    public interface AsyncCacheAccess {
        /**
         * Submits the given action for execution without waiting for the result.
         *
         * An implementation may execute the action immediately or later. All actions submitted by this method must complete before any action submitted to {@link #read(Supplier)} is executed. Actions submitted using this method must run in the order that they are submitted.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. .github/workflows/codeql-analysis.yml

    name: "Code scanning - action"
    
    on:
      push:
        branches: [ main, master, release ]
      schedule:
        - cron: '0 5 * * *'
    
    permissions: {}
    
    jobs:
      CodeQL-Build:
        permissions:
          actions: read  # for github/codeql-action/init to get workflow details
          contents: read  # for actions/checkout to fetch code
          security-events: write  # for github/codeql-action/analyze to upload SARIF results
        runs-on: ubuntu-latest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. 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)
Back to top