Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 385 for quoting (0.14 sec)

  1. pkg/apis/flowcontrol/validation/validation.go

    			fmt.Sprintf("must not be greater than %d", priorityLevelConfigurationQueuingMaxQueues)))
    	}
    
    	if queuing.HandSize <= 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("handSize"), queuing.HandSize, "must be positive"))
    	} else if queuing.HandSize > queuing.Queues {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("handSize"), queuing.HandSize,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/Quantiles.java

          int quotient = (int) LongMath.divide(numerator, scale, RoundingMode.DOWN);
          int remainder = (int) (numerator - (long) quotient * scale);
          selectInPlace(quotient, dataset, 0, dataset.length - 1);
          if (remainder == 0) {
            return dataset[quotient];
          } else {
            selectInPlace(quotient + 1, dataset, quotient + 1, dataset.length - 1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/v1beta2/zz_generated.defaults.go

    	if in.Spec.Limited != nil {
    		SetDefaults_LimitedPriorityLevelConfiguration(in.Spec.Limited)
    		if in.Spec.Limited.LimitResponse.Queuing != nil {
    			SetDefaults_QueuingConfiguration(in.Spec.Limited.LimitResponse.Queuing)
    		}
    	}
    	if in.Spec.Exempt != nil {
    		SetDefaults_ExemptPriorityLevelConfiguration(in.Spec.Exempt)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/v1beta3/zz_generated.defaults.go

    	SetDefaults_PriorityLevelConfiguration(in)
    	if in.Spec.Limited != nil {
    		SetDefaults_LimitedPriorityLevelConfiguration(in.Spec.Limited)
    		if in.Spec.Limited.LimitResponse.Queuing != nil {
    			SetDefaults_QueuingConfiguration(in.Spec.Limited.LimitResponse.Queuing)
    		}
    	}
    	if in.Spec.Exempt != nil {
    		SetDefaults_ExemptPriorityLevelConfiguration(in.Spec.Exempt)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/validation/validation_test.go

    					LimitResponse: flowcontrol.LimitResponse{
    						Type: flowcontrol.LimitResponseTypeReject},
    				},
    			},
    		},
    		expectedErrors: field.ErrorList{},
    	}, {
    		name: "forbid queuing details when not queuing",
    		priorityLevelConfiguration: &flowcontrol.PriorityLevelConfiguration{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "system-foo",
    			},
    			Spec: flowcontrol.PriorityLevelConfigurationSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1beta3/defaults_test.go

    						LimitResponse: flowcontrolv1beta3.LimitResponse{
    							Type: flowcontrolv1beta3.LimitResponseTypeReject,
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "Defaulting for queuing configuration",
    			original: &flowcontrolv1beta3.PriorityLevelConfiguration{
    				Spec: flowcontrolv1beta3.PriorityLevelConfigurationSpec{
    					Type: flowcontrolv1beta3.PriorityLevelEnablementLimited,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. src/math/big/rat.go

    		b2 = b2.shl(b2, uint(-shift))
    	}
    
    	// 2. Compute quotient and remainder (q, r).  NB: due to the
    	// extra shift, the low-order bit of q is logically the
    	// high-order bit of r.
    	var q nat
    	q, r := q.div(a2, a2, b2) // (recycle a2)
    	mantissa := low32(q)
    	haveRem := len(r) > 0 // mantissa&1 && !haveRem => remainder is exactly half
    
    	// 3. If quotient didn't fit in Msize2 bits, redo division by b2<<1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. architecture/standards/0004-use-a-platform-architecture.md

    This platform provides specific support for Swift, C++ and C.
    
    ### Cross-cutting architecture modules
    
    There are some additional cross-cutting architecture modules that aren't themselves platforms:
    
    #### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    #### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    #### Build infrastructure
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    				NominalConcurrencyShares: ptr.To(int32(30)),
    				LendablePercent:          ptr.To(int32(33)),
    				LimitResponse: flowcontrol.LimitResponse{
    					Type: flowcontrol.LimitResponseTypeQueue,
    					Queuing: &flowcontrol.QueuingConfiguration{
    						Queues:           64,
    						HandSize:         6,
    						QueueLengthLimit: 50,
    					},
    				},
    			},
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  10. docs/em/docs/deployment/server-workers.md

    [19499] [INFO] Listening at: http://0.0.0.0:80 (19499)
    [19499] [INFO] Using worker: uvicorn.workers.UvicornWorker
    [19511] [INFO] Booting worker with pid: 19511
    [19513] [INFO] Booting worker with pid: 19513
    [19514] [INFO] Booting worker with pid: 19514
    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top