Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 939 for oldR (0.06 sec)

  1. releasenotes/notes/47740.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
      **Updated** `istioctl experimental proxy-stauts` has been promoted to `istioctl proxy-status`. The old `istioctl proxy-status` command has been removed.
      This promotion should not result in any loss of functionality. However, the request is now sent based on xDS instead of HTTP, and we have introduced a 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 443 bytes
    - Viewed (0)
  2. pkg/registry/storage/csinode/strategy_test.go

    			testPrepareForUpdate(t, test.new, test.old, test.expected)
    		})
    	}
    }
    
    func testPrepareForUpdate(t *testing.T, obj, old, expected *storage.CSINode) {
    	ctx := genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{
    		APIGroup:   "storage.k8s.io",
    		APIVersion: "v1beta1",
    		Resource:   "csinodes",
    	})
    	Strategy.PrepareForUpdate(ctx, obj, old)
    	if !reflect.DeepEqual(*expected, *obj) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/sync/atomic/61395.md

    <!-- Issue #61395 -->
    The new [And] and [Or] operators apply a bitwise `AND` or `OR` to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 130 bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_s390x.go

    //go:noescape
    func Xchg64(ptr *uint64, new uint64) uint64
    
    //go:noescape
    func Xchguintptr(ptr *uintptr, new uintptr) uintptr
    
    //go:noescape
    func Cas64(ptr *uint64, old, new uint64) bool
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. pkg/controller/certificates/certificate_controller.go

    			logger.V(4).Info("Adding certificate request", "csr", csr.Name)
    			cc.enqueueCertificateRequest(obj)
    		},
    		UpdateFunc: func(old, new interface{}) {
    			oldCSR := old.(*certificates.CertificateSigningRequest)
    			logger.V(4).Info("Updating certificate request", "old", oldCSR.Name)
    			cc.enqueueCertificateRequest(new)
    		},
    		DeleteFunc: func(obj interface{}) {
    			csr, ok := obj.(*certificates.CertificateSigningRequest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. pkg/kube/krt/internal.go

    // Typically this is converting to or from `any`.
    func castEvent[I, O any](o Event[I]) Event[O] {
    	e := Event[O]{
    		Event: o.Event,
    	}
    	if o.Old != nil {
    		e.Old = ptr.Of(any(*o.Old).(O))
    	}
    	if o.New != nil {
    		e.New = ptr.Of(any(*o.New).(O))
    	}
    	return e
    }
    
    func buildCollectionOptions(opts ...CollectionOption) collectionOptions {
    	c := &collectionOptions{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/net/main_conf_test.go

    // and returns a fixup function to restore the old settings.
    func forceGoDNS() func() {
    	c := systemConf()
    	oldGo := c.netGo
    	oldCgo := c.netCgo
    	fixup := func() {
    		c.netGo = oldGo
    		c.netCgo = oldCgo
    	}
    	c.netGo = true
    	c.netCgo = false
    	return fixup
    }
    
    // forceCgoDNS forces the resolver configuration to use the cgo resolver
    // and returns a fixup function to restore the old settings.
    func forceCgoDNS() func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:29:27 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/runtime/netpoll.go

    		gpp = &pd.wg
    	}
    
    	for {
    		old := gpp.Load()
    		if old == pdReady {
    			return nil
    		}
    		if old == pdNil && !ioready {
    			// Only set pdReady for ioready. runtime_pollWait
    			// will check for timeout/cancel before waiting.
    			return nil
    		}
    		new := pdNil
    		if ioready {
    			new = pdReady
    		}
    		if gpp.CompareAndSwap(old, new) {
    			if old == pdWait {
    				old = pdNil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. .github/workflows/upgrade-ci-cd.yaml

    name: Upgrade old version tests
    
    on:
      pull_request:
        branches:
          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: Go ${{ matrix.go-version }} on ${{ matrix.os }}
        runs-on: ${{ matrix.os }}
        strategy:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 729 bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // instead of overriding the old value.  In other words, appending scope B to
    // scope A creates the conjunction of the scopes A and B (i.e, A & B) and,
    // in effect, the node gets both the old and new scopes.  As a unique scope
    // disallows a node being merged with nodes in other scopes, the scope
    // conjunction preserves the semantic of the old scope (i.e., the node still
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top