Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,100 for actioned (0.55 sec)

  1. 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)
  2. .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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionTimeTaskConfigurationIntegrationTest.groovy

            "actions.set(0, anAction)"                                  | "Task.getActions().set(int, Object)"
            "actions.removeAll(actions)"                                | "Task.getActions().removeAll()"
            "actions.remove(actions[0])"                                | "Task.getActions().remove()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseModelTest.groovy

        def "can configure classpath with Actions"() {
            given:
            def xmlTransformer = Mock(XmlTransformer)
            def xmlMerger = Spy(XmlFileContentMerger, constructorArgs: [xmlTransformer])
            def xmlAction = {} as Action<XmlProvider>
            model.classpath.file = xmlMerger
    
            when: "configure classpath"
            model.classpath({ cp -> cp.downloadJavadoc = true } as Action<EclipseClasspath>)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonCommandExecution.java

     * <p>
     * The given actions will be executed in the order given to the constructor, and should use the {@link #proceed()} method to allow
     * the next action to run. If an action does not call {@code proceed()}, it will be the last action that executes.
     */
    public class DaemonCommandExecution {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top