Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 4,572 for Actions (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/IO.kt

    import java.io.File
    
    
    /**
     * A scheduler of IO actions.
     */
    interface IO {
    
        /**
         * Schedules the given [io action][action] for execution.
         *
         * The effect of an IO [action] is only guaranteed to be observable
         * by a subsequent [io] action or after the [closing][IOScope.close] of
         * the current [IOScope].
         */
        fun io(action: () -> Unit)
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenRepositoryContentDescriptor.java

                            details.notFound();
                        }
                    }
                };
                if (filter == Actions.doNothing()) {
                    return action;
                }
                return Actions.composite(filter, action);
            }
            return filter;
        }
    
        @Override
        public RepositoryContentDescriptorInternal asMutableCopy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalActionAwareBuildController.java

         */
        boolean getCanQueryProjectModelInParallel(Class<?> modelType);
    
        /**
         * Runs the given actions in parallel and returns the results. The results should be returned in the same order as the actions that produce them.
         */
        <T> List<T> run(List<Supplier<T>> actions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    					if len(fakeClient.Actions()) != 0 {
    						t.Fatalf("unexpected actions %#v", fakeClient.Actions())
    					}
    					return
    				}
    
    				expectedActions := 1
    				if !serverSideApplyEnabled {
    					expectedActions = 2
    				}
    				if len(fakeClient.Actions()) != expectedActions {
    					t.Fatalf("unexpected actions %#v", fakeClient.Actions())
    				}
    
    				action := fakeClient.Actions()[0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. .github/workflows/arm-cd.yml

          - name: Clean repository
            shell: bash
            run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true
          - name: Checkout repository for nightly (skipped for releases)
            if: ${{ github.event_name == 'schedule' }}
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
            with:
              ref: 'nightly'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

                }
            """
    
            expect:
            def models = withConnection {
                def action = action(new ActionRunsMultipleLevelsOfNestedActions())
                action.standardOutput = System.out
                action.standardError = System.err
                action.addArguments("--parallel")
                action.run()
            }
    
            models.size() == 3
            models.every { it.projects.size() == 5 }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. .github/workflows/typos.yml

    ---
    name: Spelling
    on: [pull_request]
    
    jobs:
      run:
        name: Spell Check with Typos
        runs-on: ubuntu-latest
        steps:
        - name: Checkout Actions Repository
          uses: actions/checkout@v4
    
        - name: Check spelling of repo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 00:36:28 UTC 2024
    - 266 bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultObjectConfigurationAction.java

                }
            }
        }
    
        public void execute() {
            if (targets.isEmpty()) {
                to(defaultTarget);
            }
    
            for (Runnable action : actions) {
                action.run();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

            given:
            def action = Mock(Action)
    
            when:
            gradle.projectsLoaded(action)
    
            and:
            gradle.buildListenerBroadcaster.projectsLoaded(gradle)
    
            then:
            1 * action.execute(gradle)
        }
    
        def "broadcasts projects evaluated events to actions"() {
            given:
            def action = Mock(Action)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top