Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 256 for decreasing (0.15 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    	if err != nil {
    		t.Errorf("Expected no error for decreasing a limited resource without quota, got %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | `@link:{javadocPath}/org/gradle/api/tasks/Console.html[Console]`
    | Any type
    | Indicates that the property is neither an input nor an output. It simply affects the console output of the task in some way, such as increasing or decreasing the verbosity of the task.
    
    | `@link:{javadocPath}/org/gradle/api/tasks/Internal.html[Internal]`
    | Any type
    | Indicates that the property is used internally but is neither an input nor an output.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. releasenotes/notes/48461.yaml

        Its default value is 1 and will not be executed concurrently. 
        When `initSidecarScopes` consumes a lot of time and you want to reduce time consumption by increasing CPU consumption,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 10:56:07 UTC 2024
    - 559 bytes
    - Viewed (0)
  4. src/sort/sort.go

    func (x StringSlice) Sort() { Sort(x) }
    
    // Convenience wrappers for common cases
    
    // Ints sorts a slice of ints in increasing order.
    //
    // Note: as of Go 1.22, this function simply calls [slices.Sort].
    func Ints(x []int) { intsImpl(x) }
    
    // Float64s sorts a slice of float64s in increasing order.
    // Not-a-number (NaN) values are ordered before other values.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. releasenotes/notes/bug-report-rps-limit.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
      **Added** `--rps-limit` flag to `istioctl bug-report` that allows increasing
      the requests per second limit to the Kubernetes API server which can greatly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 23 16:44:39 UTC 2022
    - 276 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/0-namespaces.yaml

    # These namespaces can be used for examples without recreating them each time.
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: gateway-api-example-ns1
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 233 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/testing_coverage.txt

    	C1 := testing.Coverage()
    	foo(29)
    	C2 := testing.Coverage()
    	if C1 == 0.0 || C2 == 0.0 {
    		t.Errorf("unexpected zero values C1=%f C2=%f", C1, C2)
    	}
    	if C1 >= C2 {
    		t.Errorf("testing.Coverage() not monotonically increasing C1=%f C2=%f", C1, C2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 941 bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/testing/defaults/defaults.go

    		},
    	},
    	Score: config.PluginSet{
    		Enabled: []config.Plugin{
    			// Weight is tripled because:
    			// - This is a score coming from user preference.
    			// - Usage of node tainting to group nodes in the cluster is increasing becoming a use-case
    			// for many user workloads
    			{Name: names.TaintToleration, Weight: 3},
    			// Weight is doubled because:
    			// - This is a score coming from user preference.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/runtime/retry.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package runtime
    
    // retryOnEAGAIN retries a function until it does not return EAGAIN.
    // It will use an increasing delay between calls, and retry up to 20 times.
    // The function argument is expected to return an errno value,
    // and retryOnEAGAIN will return any errno value other than EAGAIN.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:44:45 UTC 2022
    - 760 bytes
    - Viewed (0)
  10. src/runtime/metrics/histogram.go

    	//
    	// Given N buckets, Count[n] is the weight of the range
    	// [bucket[n], bucket[n+1]), for 0 <= n < N.
    	Counts []uint64
    
    	// Buckets contains the boundaries of the histogram buckets, in increasing order.
    	//
    	// Buckets[0] is the inclusive lower bound of the minimum bucket while
    	// Buckets[len(Buckets)-1] is the exclusive upper bound of the maximum bucket.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 03:43:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top