Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for formaction (0.2 sec)

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

                import ${Inject.name}
                import ${TaskAction.name}
                import ${WorkAction.name}
                import ${WorkParameters.name}
                import ${WorkQueue.name}
                import ${WorkerExecutor.name}
                ${snippets.imports}
    
                public abstract class SneakyAction implements WorkAction<WorkParameters.None> {
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

            where:
            isolationMode << ISOLATION_MODES
        }
    
        def "can create and use a work action defined in an external jar in #isolationMode"() {
            def workActionJarName = "workAction.jar"
            withWorkActionClassInExternalJar(file(workActionJarName))
    
            buildFile << """
                buildscript {
                    dependencies {
                        classpath files("$workActionJarName")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

                    void executeTask() {
                        workerExecutor.processIsolation().submit(NoOpWorkAction) { }
                    }
                }
    
                abstract class NoOpWorkAction implements WorkAction<WorkParameters.None> {
                    public void execute() {}
                }
            """
    
            when:
            succeeds("doWork")
    
            then:
            nativeDir.exists() == initialized
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                import org.gradle.internal.service.scopes.GradleUserHomeScopeServices
                import org.gradle.workers.WorkParameters
                import org.gradle.workers.WorkAction
                import org.gradle.internal.instrumentation.agent.AgentStatus
                import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory
    
                abstract class WorkerTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      // After construction:
      //  For basic block argument source this will be a first operation in the
      //  basic block, and for operations it will be an operation iself.
      //
      // During the union-find cluster formation:
      //  The root member will have the location in the basic block, where the
      //  cluster operation will be inserted. We use the location of the last
      //  operation in the cluster, so that during cluster construction we can
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        that the device attribute exists.
      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateVerifyClusteringPass()";
    }
    
    def TPUClusterFormationPass : Pass<"tf-tpu-cluster-formation", "ModuleOp"> {
      let summary = "Forms clusters from operations assigned to the same TPU computation";
    
      let description = [{
        TPU computations from the frontend are composed of a `tf.TPUReplicateMetadata`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

            (TF_LogicalOrOp
              (TF_GreaterOp
                (TF_SubOp:$fraction $input, (TF_FloorOp:$round_val $input)),
                (TF_ConstOp:$half (GetScalarOfFloatType<"0.5"> $input))
              ),
              (TF_LogicalAndOp
                // If the input is equal to 0.5 ...
                (TF_EqualOp
                  $fraction,
                  $half,
                  /*incompatible_shape_error*/ConstBoolAttrTrue
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. cmd/globals.go

    	// Maximum size of default bucket encryption configuration allowed
    	maxBucketSSEConfigSize = 1 * humanize.MiByte
    
    	// diskFillFraction is the fraction of a disk we allow to be filled.
    	diskFillFraction = 0.99
    
    	// diskReserveFraction is the fraction of a disk where we will fill other server pools first.
    	// If all pools reach this, we will use all pools with regular placement.
    	diskReserveFraction = 0.15
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/BuildProgressCrossVersionSpec.groovy

        }
    
        private ProgressEvents.Operation runBuildWithWorkerAction() {
            buildFile << """
                import org.gradle.workers.*
                abstract class MyWorkerAction implements WorkAction<WorkParameters.None>{
                    @Override public void execute() {
                        // Do nothing
                    }
                }
                task runInWorker {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

        private defineGradleWorkAction() {
            """
            interface WorkActionParams extends WorkParameters {
                Property<String> getName()
            }
            abstract class TestWorkAction implements WorkAction<WorkActionParams> {
                public void execute() {
                    ${server.callFromBuildUsingExpression('parameters.name.get()')}
                }
            }
    
            class ParTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top