Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for prepending (0.16 sec)

  1. CHANGELOG/CHANGELOG-1.5.md

    * Reduce time needed to attach Azure disks ([#40066](https://github.com/kubernetes/kubernetes/pull/40066), [@codablock](https://github.com/codablock))
    * Fixes request header authenticator by presenting the request header client CA so that the front proxy will authenticate using its client certificate. ([#40301](https://github.com/kubernetes/kubernetes/pull/40301), [@deads2k](https://github.com/deads2k))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    			// in this case we shouldn't allow scale down, though, the naive formula will suggest that scaleDownlimit is more then CurrentReplicas (100+30-10% > 100)
    			name:                         "scaleDown with previous events preventing further scale down",
    			scaleDownEvents:              generateEventsUniformDistribution([]int{10, 10, 10}, 120),
    			specMinReplicas:              1,
    			specMaxReplicas:              1000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              },
              "type": {
                "default": "",
                "type": "string"
              }
            },
            "required": [
              "type",
              "object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

              },
              "type": {
                "default": "",
                "type": "string"
              }
            },
            "required": [
              "type",
              "object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    			sink += b
    		}
    	}
    	if r.closemuScanHold {
    		t.Errorf("closemu held; should not be")
    	}
    
    	// There are 3 rows. We canceled after reading 2 so we expect either
    	// 2 or 3 depending on how the awaitDone goroutine schedules.
    	switch numRows {
    	case 0, 1:
    		t.Errorf("got %d rows; want 2+", numRows)
    	case 2:
    		if err := r.Err(); err != context.Canceled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

              },
              "type": {
                "default": "",
                "type": "string"
              }
            },
            "required": [
              "type",
              "object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

              },
              "type": {
                "default": "",
                "type": "string"
              }
            },
            "required": [
              "type",
              "object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVHstorezeroidx2 ptr (MOVDconst [c]) mem) && is32Bit(c<<1) => (MOVHstorezero [int32(c<<1)] ptr mem)
    
    // replace load from same location as preceding store with zero/sign extension (or copy in case of full width)
    // these seem to have bad interaction with other rules, resulting in slower code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. src/reflect/value.go

    func (v Value) CanConvert(t Type) bool {
    	vt := v.Type()
    	if !vt.ConvertibleTo(t) {
    		return false
    	}
    	// Converting from slice to array or to pointer-to-array can panic
    	// depending on the value.
    	switch {
    	case vt.Kind() == Slice && t.Kind() == Array:
    		if t.Len() > v.Len() {
    			return false
    		}
    	case vt.Kind() == Slice && t.Kind() == Pointer && t.Elem().Kind() == Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__policy__v1_openapi.json

              },
              "type": {
                "default": "",
                "type": "string"
              }
            },
            "required": [
              "type",
              "object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top