Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Selections (0.23 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    
    	// Validate MatchExpressions only has additions (no deletions or mutations)
    	if l := len(oldTerm.MatchExpressions); l > 0 {
    		if len(newTerm.MatchExpressions) < l {
    			return false
    		}
    		if !apiequality.Semantic.DeepEqual(newTerm.MatchExpressions[:l], oldTerm.MatchExpressions) {
    			return false
    		}
    	}
    	// Validate MatchFields only has additions (no deletions or mutations)
    	if l := len(oldTerm.MatchFields); l > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.8.md

    * Fix metrics API group name in audit configuration ([#53493](https://github.com/kubernetes/kubernetes/pull/53493), [@piosz](https://github.com/piosz))
    * Use separate client for leader election in scheduler to avoid starving leader election by regular scheduler operations. ([#53793](https://github.com/kubernetes/kubernetes/pull/53793), [@wojtek-t](https://github.com/wojtek-t))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Client-go: Optimized leaders renewing leases by updating leader lock optimistically without getting the record from the API server first. Also, a new metric `leader_election_slowpath_total` was added to allow users to monitor how many leader elections are updated non-optimistically.
       ([#122069](https://github.com/kubernetes/kubernetes/pull/122069), [@linxiulei](https://github.com/linxiulei))
    - Locked the GA feature-gate `ConsistentHTTPGetHandlers` to default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.24.md

    ### Bug or Regression
    
    - Fix JobTrackingWithFinalizers that:
      - was declaring a job finished before counting all the created pods in the status
      - was leaving pods with finalizers, blocking pod and job deletions
      
      JobTrackingWithFinalizers is still disabled by default. ([#109486](https://github.com/kubernetes/kubernetes/pull/109486), [@alculquicondor](https://github.com/alculquicondor)) [SIG Apps and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    		t.Errorf("Found wrong number of endpoints after service deletion: expected %d, got %d", 0, numEndpoints)
    	}
    	assert.NotContains(t, fp.iptablesData.String(), "-X ", "iptables data unexpectedly contains chain deletions")
    
    	// But resyncing after a long-enough delay will delete the stale chains
    	fp.lastIPTablesCleanup = time.Now().Add(-fp.syncPeriod).Add(-1)
    	fp.syncProxyRules()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ants:({addVariant:i})=>{i("first-letter","&::first-letter"),i("first-line","&::first-line"),i("marker",[({container:e})=>(mn(e,["--tw-text-opacity"]),"& *::marker"),({container:e})=>(mn(e,["--tw-text-opacity"]),"&::marker")]),i("selection",["& *::selection","&::selection"]),i("file","&::file-selector-button"),i("placeholder","&::placeholder"),i("backdrop","&::backdrop"),i("before",({container:e})=>(e.walkRules(t=>{let r=!1;t.walkDecls("content",()=>{r=!0}),r||t.prepend(z.decl({prop:"content",val...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. src/net/http/h2_bundle.go

    	// as we don't want to interfere with HTTP/1.1 traffic
    	// on the user's server. We enforce TLS 1.2 later once
    	// we accept a connection. Ideally this should be done
    	// during next-proto selection, but using TLS <1.2 with
    	// HTTP/2 is still the client's bug.
    
    	s.TLSConfig.PreferServerCipherSuites = true
    
    	if !http2strSliceContains(s.TLSConfig.NextProtos, http2NextProtoTLS) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	DefaultTemplates []string `protobuf:"bytes,24,rep,name=defaultTemplates,proto3" json:"defaultTemplates,omitempty"`
    	// If enabled, the legacy webhook selection logic will be used. This relies on filtering of webhook
    	// requests in Istiod, rather than at the webhook selection level.
    	// This is option is intended for migration purposes only and will be removed in Istio 1.10.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    - Fixed `JobTrackingWithFinalizers` that:
      - was declaring a job finished before counting all the created pods in the status
      - was leaving pods with finalizers, blocking pod and job deletions
       `JobTrackingWithFinalizers` is still disabled by default. ([#109486](https://github.com/kubernetes/kubernetes/pull/109486), [@alculquicondor](https://github.com/alculquicondor))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		if arg.store {
    			s.storeType(et, addr, arg.v, 0, true)
    		} else {
    			s.move(et, addr, arg.v)
    		}
    	}
    
    	// The following deletions have no practical effect at this time
    	// because state.vars has been reset by the preceding state.startBlock.
    	// They only enforce the fact that these variables are no longer need in
    	// the current scope.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top