Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 437 for actor (0.04 sec)

  1. platforms/ide/tooling-api/toolingApi-operation.puml

    @startuml
    actor User
    User -> ProjectConnection: request operation
     note right
     operation is one of: build / action / model
     end note
    ProjectConnection -> LongRunningOperation: create instance of
    LongRunningOperation --> User: instance
    User -> LongRunningOperation: withArguments
    LongRunningOperation -> OperationParamsBuilder: withArguments
    User -> LongRunningOperation: set stdOut/stdErr/stdIn
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestFrameworkTest.groovy

    import org.gradle.api.internal.tasks.testing.filter.DefaultTestFilter
    import org.gradle.api.model.ObjectFactory
    import org.gradle.api.tasks.testing.Test
    import org.gradle.api.tasks.testing.testng.TestNGOptions
    import org.gradle.internal.actor.ActorFactory
    import org.gradle.internal.id.IdGenerator
    import org.gradle.internal.time.Clock
    import org.gradle.testfixtures.ProjectBuilder
    import org.gradle.util.TestUtil
    import spock.lang.Shared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorFactory.java

    package org.gradle.api.internal.tasks.testing.junit;
    
    import org.gradle.api.internal.tasks.testing.TestClassProcessor;
    import org.gradle.api.internal.tasks.testing.WorkerTestClassProcessorFactory;
    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    
    import java.io.Serializable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNgTestClassProcessorFactory.java

    package org.gradle.api.internal.tasks.testing.testng;
    
    import org.gradle.api.internal.tasks.testing.TestClassProcessor;
    import org.gradle.api.internal.tasks.testing.WorkerTestClassProcessorFactory;
    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    
    import java.io.File;
    import java.io.Serializable;
    import java.util.List;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/initialization/MixInLegacyTypesClassLoaderTest.groovy

            def cl = loader.loadClass("org.gradle.messaging.actor.ActorFactory")
            cl.classLoader.is(loader)
            cl.interface
            cl.protectionDomain.codeSource.location == null
            cl.package.name == "org.gradle.messaging.actor"
        }
    
        def "fails for unknown class"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 22 23:58:47 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

    import org.gradle.api.internal.tasks.testing.WorkerTestClassProcessorFactory;
    import org.gradle.internal.Cast;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.actor.internal.DefaultActorFactory;
    import org.gradle.internal.concurrent.DefaultExecutorFactory;
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.concurrent.Stoppable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/DefaultTestExecuter.java

    import org.gradle.api.internal.tasks.testing.worker.ForkedTestClasspath;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.Factory;
    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.time.Clock;
    import org.gradle.internal.work.WorkerLeaseService;
    import org.gradle.process.internal.worker.WorkerProcessFactory;
    
    import java.io.File;
    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    	// and on resources that support dry-run. If the apiserver or the resource
    	// does not support dry-run, then the change will be persisted to storage.
    	ServerDryRun bool
    
    	// FieldManager is the name associated with the actor or entity that is making
    	// changes.
    	FieldManager string
    
    	// FieldValidation is the directive used to indicate how the server should perform
    	// field validation (Ignore, Warn, or Strict)
    	FieldValidation string
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	ch := make(chan struct{})
    	close(ch)
    	for _, a := range runs {
    		if r, ok := a.Actor.(*runTestActor); ok {
    			r.prev = ch
    			ch = make(chan struct{})
    			r.next = ch
    		}
    	}
    
    	// Ultimately the goal is to print the output.
    	root := &work.Action{Mode: "go test", Actor: work.ActorFunc(printExitStatus), Deps: prints}
    
    	// Force the printing of results to happen in order,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoaderTest.groovy

     * limitations under the License.
     */
    package org.gradle.tooling.internal.consumer.loader
    
    import org.gradle.initialization.BuildCancellationToken
    import org.gradle.internal.actor.ActorFactory
    import org.gradle.internal.classloader.ClasspathUtil
    import org.gradle.internal.classpath.ClassPath
    import org.gradle.internal.classpath.DefaultClassPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top