Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for saresti (0.13 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"stabilizationWindowSeconds": "stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    // number of replicas is not set instantly, instead, the safest value from the stabilization
    // window is chosen.
    message HPAScalingRules {
      // stabilizationWindowSeconds is the number of seconds for which past recommendations should be
      // considered while scaling up or scaling down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2/generated.proto

    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    // number of replicas is not set instantly, instead, the safest value from the stabilization
    // window is chosen.
    message HPAScalingRules {
      // stabilizationWindowSeconds is the number of seconds for which past recommendations should be
      // considered while scaling up or scaling down.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta2/types_swagger_doc_generated.go

    	"stabilizationWindowSeconds": "stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down. StabilizationWindowSeconds...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	output := rawOutput
    	if isInf(output) || isNaN(output) {
    		// The input had a large enough magnitude that either it was already
    		// overflowed, or some operation with it overflowed.
    		// Set a flag and reset. That's the safest thing to do.
    		c.reset()
    		c.inputOverflow = true
    		return c.min, false
    	}
    	if output < c.min {
    		output = c.min
    	} else if output > c.max {
    		output = c.max
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    // They can limit the scaling velocity by specifying scaling policies.
    // They can prevent flapping by specifying the stabilization window, so that the
    // number of replicas is not set instantly, instead, the safest value from the stabilization
    // window is chosen.
    type HPAScalingRules struct {
    	// stabilizationWindowSeconds is the number of seconds for which past recommendations should be
    	// considered while scaling up or scaling down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry.go

    				specs = []*TracingSpec{&serverSpec}
    			}
    		}
    
    		if len(names) > 0 {
    			// NOTE: we only support a single provider per mode
    			// so, choosing the first provider returned in the list
    			// is the "safest"
    			fetched := t.fetchProvider(names[0])
    			for _, spec := range specs {
    				spec.Provider = fetched
    			}
    		}
    
    		// Now merge in any overrides
    		if m.DisableSpanReporting != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    possible use to the public, the best way to achieve this is to make it
    free software which everyone can redistribute and change under these terms.
    
    To do so, attach the following notices to the program. It is safest to
    attach them to the start of each source file to most effectively convey
    the exclusion of warranty; and each file should have at least the
    "copyright" line and a pointer to where the full notice is found.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    			if allocatedSize != nil {
    				newSize = *allocatedSize
    			}
    		default:
    			// It is impossible for ResizeStatus to be "" and allocatedSize to be not nil but somehow
    			// if we do end up in this state, it is safest to resume expansion to last recorded size in
    			// allocatedSize variable.
    			if resizeStatus == "" && allocatedSize != nil {
    				newSize = *allocatedSize
    			} else {
    				newSize = pvcSpecSize
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    1. If you use a slashy string (those delimited by '/') for the first argument, you _must_ include the parentheses for `rename()` as shown in the above example.
    2. It's safest to use single quotes for the second argument, otherwise you need to escape the '$' in group substitutions, i.e. `"\$1\$2"`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top