Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 105 for formaction (0.16 sec)

  1. 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)
  2. android/guava/src/com/google/common/math/PairedStats.java

       * the data points and the best fit line). For this fit, this error is a fraction {@code sqrt(1 -
       * R*R)} of the population standard deviation of {@code y}, where {@code R} is the Pearson's
       * correlation coefficient (as given by {@link #pearsonsCorrelationCoefficient()}).
       *
       * <p>The corresponding root-mean-square error in {@code x} as a function of {@code y} is a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

                            workerExecutor.${isolationMode}Isolation().submit(BlockingWorkAction) { }
                        }
                    }
                }
    
                abstract class BlockingWorkAction implements WorkAction<WorkParameters.None> {
                    public void execute() {
                        new CountDownLatch(1).await(90, TimeUnit.SECONDS);
                    }
                }
                """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/deployment/util/deployment_util.go

    	if deploymentReplicasToAdd > 0 {
    		// Use the minimum between the replica set fraction and the maximum allowed replicas
    		// when scaling up. This way we ensure we will not scale up more than the allowed
    		// replicas we can add.
    		return min(rsFraction, allowed)
    	}
    	// Use the maximum between the replica set fraction and the maximum allowed replicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. src/go/constant/value_test.go

    	switch lit {
    	case "?":
    		return MakeUnknown()
    	case "true":
    		return MakeBool(true)
    	case "false":
    		return MakeBool(false)
    	}
    
    	if as, bs, ok := strings.Cut(lit, "/"); ok {
    		// assume fraction
    		a := MakeFromLiteral(as, token.INT, 0)
    		b := MakeFromLiteral(bs, token.INT, 0)
    		return BinaryOp(a, token.QUO, b)
    	}
    
    	tok := token.INT
    	switch first, last := lit[0], lit[len(lit)-1]; {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  7. 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)
  8. src/main/resources/fess_message_de.properties

    constraints.DecimalMin.message  = {item} muss größer ${inclusive == true ? 'oder gleich ' : 'als '}{value} sein.
    constraints.Digits.message      = {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected).
    constraints.Future.message      = {item} muss in der Zukunft liegen.
    constraints.Max.message         = {item} muss kleiner oder gleich {value} sein.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Oct 29 15:01:03 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_ru.properties

    constraints.DecimalMin.message  = {item} must be greater than ${inclusive == true ? 'or equal to ' : ''}{value}.
    constraints.Digits.message      = {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected).
    constraints.Future.message      = {item} must be in the future.
    constraints.Max.message         = {item} must be less than or equal to {value}.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 12:12:28 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // at the expense of every other priority level.
      // This field has a default value of zero.
      // +optional
      optional int32 nominalConcurrencyShares = 1;
    
      // `lendablePercent` prescribes the fraction of the level's NominalCL that
      // can be borrowed by other priority levels.  This value of this
      // field must be between 0 and 100, inclusive, and it defaults to 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top