Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 171 for formaction (0.57 sec)

  1. src/runtime/time_windows_arm.s

    	MOVW	$1000000000, R5	// 10**9
    	MULLU	R6,R5,(R9,R8)   // R9:R8 = R7:R6 * R5
    	MULA	R7,R5,R9,R9
    	SUB.S	R8,R1		// R2:R1 -= R9:R8
    	SBC	R9,R2
    
    	// because reciprocal was a truncated repeating fraction, quotient
    	// may be slightly too small -- adjust to make remainder < 10**9
    	CMP	R5,R1	// if remainder > 10**9
    	SUB.HS	R5,R1   //    remainder -= 10**9
    	ADD.HS	$1,R6	//    sec += 1
    
    	MOVW	R6,sec_lo+0(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/math/big/ratconv.go

    	}
    	return nil
    }
    
    // SetString sets z to the value of s and returns z and a boolean indicating
    // success. s can be given as a (possibly signed) fraction "a/b", or as a
    // floating-point number optionally followed by an exponent.
    // If a fraction is provided, both the dividend and the divisor may be a
    // decimal integer or independently use a prefix of “0b”, “0” or “0o”,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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