Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,572 for Actions (0.33 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/model/internal/core/DomainObjectCollectionBackedModelMapTest.groovy

    import org.gradle.api.internal.CollectionCallbackActionDecorator
    import org.gradle.api.internal.DefaultDomainObjectSet
    import org.gradle.api.internal.DefaultPolymorphicNamedEntityInstantiator
    import org.gradle.internal.Actions
    import spock.lang.Specification
    
    class DomainObjectCollectionBackedModelMapTest extends Specification {
        def "created items get added to the backing collection"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. .github/workflows/root-disable.yml

        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest]
    
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Start root lockdown tests
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 734 bytes
    - Viewed (0)
  3. 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)
  4. .github/workflows/upgrade-ci-cd.yaml

        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest]
    
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Start upgrade tests
            run: |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 729 bytes
    - Viewed (0)
  5. .github/workflows/arm-ci-extended-cpp.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: Wed Feb 07 17:41:21 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. .github/workflows/issue-on-pr-rollback.yml

          startsWith(github.event.head_commit.message, 'Rollback of PR #')
        steps:
          - name: Checkout repo
            uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
          - name: Create a new Github Issue
            uses: actions/github-script@d556feaca394842dc55e4734bf3bb9f685482fa0 # v6.3.3
            with:
              github-token: ${{secrets.GITHUB_TOKEN}}
              script: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

        /**
         * Applies the given action to each item of the given type in this collection, as each item is required.
         *
         * <p>The given action is invoked to configure the item when the item is required. It is called before any actions provided to {@link #create(String, org.gradle.api.Action)}.
         *
         * @param type The type of elements to apply the action to.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ImplementationChangesTest.groovy

            ) == ["One or more additional actions for task ':test' have changed."]
        }
    
        def "not up-to-date when action is removed"() {
            expect:
            changesBetween(
                impl(SimpleTask), [impl(TestAction)],
                impl(SimpleTask), []
            ) == ["One or more additional actions for task ':test' have changed."]
        }
    
        def "not up-to-date when action with same class-loader is added"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. pkg/controller/bootstrap/tokencleaner_test.go

    )
    
    func newTokenCleaner() (*TokenCleaner, *fake.Clientset, coreinformers.SecretInformer, error) {
    	options := DefaultTokenCleanerOptions()
    	cl := fake.NewSimpleClientset()
    	informerFactory := informers.NewSharedInformerFactory(cl, options.SecretResync)
    	secrets := informerFactory.Core().V1().Secrets()
    	tcc, err := NewTokenCleaner(cl, secrets, options)
    	if err != nil {
    		return nil, nil, nil, err
    	}
    	return tcc, cl, secrets, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/BiActions.java

            return new BiAction<A, B>() {
                @Override
                public void execute(A a, B b) {
                    for (BiAction<? super A, ? super B> action : actions) {
                        action.execute(a, b);
                    }
                }
            };
        }
    
        public static <A> BiAction<A, Object> usingFirstArgument(final Action<? super A> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top