Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 2,031 for actors (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

                    import ${TaskAction.name}
    
                    class GroovyTask extends DefaultTask {
                        @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)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/WorkerTestClassProcessorFactory.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing;
    
    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    
    public interface WorkerTestClassProcessorFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 947 bytes
    - Viewed (0)
  3. .github/dependabot.yml

    #      interval: "weekly"
    #    groups:
    #      dependencies:
    #        applies-to: version-updates
    #        patterns:
    #          - "*"
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "weekly"
        groups:
          github-actions:
            applies-to: version-updates
            patterns:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:08:24 UTC 2024
    - 761 bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CompositeCleanupAction.java

            private Builder() {
            }
    
            public Builder add(CleanupAction... actions) {
                Collections.addAll(cleanups, actions);
                return this;
            }
    
            public Builder add(File baseDir, CleanupAction... actions) {
                for (CleanupAction action : actions) {
                    cleanups.add(new ScopedCleanupAction(baseDir, action));
                }
                return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. README.md

    cUrl-like Java Client
    [![Java CI with Maven](https://github.com/codelibs/curl4j/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/curl4j/actions/workflows/maven.yml)
    =====================
    
    curl4j is a simple cUrl-like Java client.
    
    ## Version
    
    [Versions in Maven Repository](https://repo1.maven.org/maven2/org/codelibs/curl4j/)
    
    ## Using Maven
    
    Put the following block into pom.xml if using Maven:
    
        <dependency>
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Sat Feb 19 00:59:27 UTC 2022
    - 566 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[dataflow_action]]
    = Dataflow Actions
    
    NOTE: The dataflow actions support is an <<feature_lifecycle.adoc#feature_lifecycle,incubating>> feature and is subject to change.
    
    A preferred way of executing work in a Gradle build is using a task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFileTest.groovy

    		HideSolutionNode = FALSE
    	EndGlobalSection
    EndGlobal
    """
        }
    
        def "applies multiple text actions"() {
            when:
            solutionFile.actions << ({ TextProvider text ->
                text.setText("foo")
            } as Action)
            solutionFile.actions << ({ TextProvider text ->
                text.asBuilder().append("bar")
            } as Action)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantAttributesRules.java

        private final List<VariantMetadataRules.VariantAction<? super AttributeContainer>> actions = new LinkedList<>();
    
        public VariantAttributesRules(ImmutableAttributesFactory attributesFactory) {
            this.attributesFactory = attributesFactory;
        }
    
        public void addAttributesAction(VariantMetadataRules.VariantAction<? super AttributeContainer> action) {
            actions.add(action);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. .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)
  10. pkg/kubelet/util/node_startup_latency_tracker.go

    	"k8s.io/utils/clock"
    )
    
    type NodeStartupLatencyTracker interface {
    	// This function may be called across Kubelet restart.
    	RecordAttemptRegisterNode()
    	// This function should not be called across Kubelet restart.
    	RecordRegisteredNewNode()
    	// This function may be called across Kubelet restart.
    	RecordNodeReady()
    }
    
    type basicNodeStartupLatencyTracker struct {
    	lock sync.Mutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 05:54:25 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top