Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 234 for formaction (0.59 sec)

  1. src/hash/test_cases.txt

    C is as portable as Stonehedge!!
    Even if I could be Shakespeare, I think I should still choose to be Faraday. - A. Huxley
    The fugacity of a constituent in a mixture of gases at a given temperature is proportional to its mole fraction.  Lewis-Randall Rule
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  2. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

    import gradlebuild.basics.util.KotlinSourceParser
    import org.gradle.workers.WorkAction
    import org.jetbrains.kotlin.psi.KtCallableDeclaration
    import org.jetbrains.kotlin.psi.KtFile
    import org.jetbrains.kotlin.psi.KtNamedDeclaration
    import org.jetbrains.kotlin.psi.psiUtil.collectDescendantsOfType
    import java.io.File
    
    
    abstract class IncubatingApiReportWorkAction : WorkAction<IncubatingApiReportParameter> {
    
        override fun execute() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/least_allocated.go

    // leastResourceScorer favors nodes with fewer requested resources.
    // It calculates the percentage of memory, CPU and other resources requested by pods scheduled on the node, and
    // prioritizes based on the minimum of the average of the fraction of requested to capacity.
    //
    // Details:
    // (cpu((capacity-requested)*MaxNodeScore*cpuWeight/capacity) + memory((capacity-requested)*MaxNodeScore*memoryWeight/capacity) + ...)/weightSum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 12 01:50:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheWorkerApiIntegrationTest.groovy

                    }
                }
    
                interface SomeParams extends WorkParameters {
                    ${type} getValue()
                }
    
                abstract class SomeWorkAction implements WorkAction<SomeParams> {
                    void execute() {
                        println("value = \${parameters.value.get()}")
                    }
                }
    
                task worker(type: UsesWorker) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. src/math/exp_arm64.s

    	FSUBD	F15, F1, F16	// F16 = y = 1-((lo-(r*c)/(2-c))-hi)
    	// inline Ldexp(y, k), benefit:
    	// 1, no parameter pass overhead.
    	// 2, skip unnecessary checks for Inf/NaN/Zero
    	FMOVD	F16, R0
    	AND	$FracMask, R0, R2	// fraction
    	LSR	$52, R0, R5	// exponent
    	ADD	R1, R5		// R1 = int(k)
    	CMP	$1, R5
    	BGE	normal
    	ADD	$52, R5		// denormal
    	MOVD	$C1, R8
    	FMOVD	R8, F1		// m = 2**-52
    normal:
    	ORR	R5<<52, R2, R0
    	FMOVD	R0, F0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top