Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 234 for formaction (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

            @Override
            public void run(BuildOperationContext context) {
                ProjectEvaluationListener nextBatch = project.getProjectEvaluationBroadcaster();
                Action<ProjectEvaluationListener> fireAction = new Action<ProjectEvaluationListener>() {
                    @Override
                    public void execute(ProjectEvaluationListener listener) {
                        listener.afterEvaluate(project, state);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidateAction.java

    import org.gradle.internal.reflect.DefaultTypeValidationContext;
    import org.gradle.util.internal.TextUtil;
    import org.gradle.work.DisableCachingByDefault;
    import org.gradle.workers.WorkAction;
    import org.gradle.workers.WorkParameters;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.Opcodes;
    
    import java.io.File;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousWorkerDaemonServiceIntegrationTest.groovy

                import org.gradle.api.file.ProjectLayout
                import org.gradle.workers.WorkParameters
                import org.gradle.workers.internal.WorkerDaemonFactory
    
                abstract class TestWorkAction implements WorkAction<WorkParameters.None> {
                    void execute() {
                        println "Runnable executed..."
                    }
                }
    
                abstract class DaemonTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccessIntegrationTest.groovy

                        workerExecutor.processIsolation().submit(TestWorkAction) { }
                        ${server.callFromBuild("waiting")}
                    }
                }
                abstract class TestWorkAction implements WorkAction<WorkParameters.None> { void execute() { } }
            """
    
            when:
            // start a build with a IsolationMode.PROCESS worker that will initialize the worker classpath cache and wait until the cache was initialized
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/cluster_formation.mlir

    // RUN: tf-opt %s -split-input-file -tf-device-cluster-formation | FileCheck %s
    
    // Simple case, single device cluster.
    
    module {
      // CHECK-LABEL: func @singlecluster
      // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<?xi32>)
      func.func @singlecluster(%arg0: tensor<?xi32>) -> tensor<?xi32> {
        // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"(%[[ARG_0]])
        %2 = "tf.A"(%arg0) : (tensor<?xi32>) -> tensor<?xi32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/WorkerExecutorFixture.groovy

            WorkActionClass(String name, String packageName, WorkParameterClass parameters) {
                super(name, packageName)
                this.parameters = parameters
                this.imports += ["org.gradle.workers.WorkAction"]
            }
    
            @Override
            WorkActionClass writeToBuildSrc() {
                parameters.writeToBuildSrc()
                addImportToBuildScript("${packageName}.${name.capitalize()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 12:36:12 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    	}
    	if D0 <= r && r <= D31 {
    		return fmt.Sprintf("D%d", int(r-D0))
    	}
    	return fmt.Sprintf("Reg(%d)", int(r))
    }
    
    // A RegX represents a fraction of a multi-value register.
    // The Index field specifies the index number,
    // but the size of the fraction is not specified.
    // It must be inferred from the instruction and the register type.
    // For example, in a VMOV instruction, RegX{D5, 1} represents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  9. src/math/jn.go

    // Note 2. About jn(n,x), yn(n,x)
    //      For n=0, j0(x) is called,
    //      for n=1, j1(x) is called,
    //      for n<x, forward recursion is used starting
    //      from values of j0(x) and j1(x).
    //      for n>x, a continued fraction approximation to
    //      j(n,x)/j(n-1,x) is evaluated and then backward
    //      recursion is used starting from a supposed value
    //      for j(n,x). The resulting value of j(0,x) is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  10. 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)
Back to top