Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 217 for formaction (0.23 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DefaultWorkerExecutorTest.groovy

    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.util.UsesNativeServices
    import org.gradle.util.internal.RedirectStdOutAndErr
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkerSpec
    import org.junit.Rule
    import spock.lang.Specification
    
    @UsesNativeServices
    class DefaultWorkerExecutorTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 15:27:52 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. test/initexp.go

    package p
    
    // The init cycle diagnosis used to take exponential time
    // to traverse the call graph paths. This test case takes
    // at least two minutes on a modern laptop with the bug
    // and runs in a fraction of a second without it.
    // 10 seconds (-t 10 above) should be plenty if the code is working.
    
    var x = f() + z() // ERROR "initialization cycle"
    
    func f() int { return a1() + a2() + a3() + a4() + a5() + a6() + a7() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    )
    
    // mostResourceScorer favors nodes with most requested resources.
    // It calculates the percentage of memory and CPU requested by pods scheduled on the node, and prioritizes
    // based on the maximum of the average of the fraction of requested to capacity.
    //
    // Details:
    // (cpu(MaxNodeScore * requested * cpuWeight / capacity) + memory(MaxNodeScore * requested * memoryWeight / capacity) + ...) / weightSum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top