Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for storeerr (0.17 sec)

  1. pkg/registry/core/namespace/storage/storage.go

    				}
    				return existingNamespace, nil
    			}),
    			dryrun.IsDryRun(options.DryRun),
    			nil,
    		)
    
    		if err != nil {
    			err = storageerr.InterpretGetError(err, api.Resource("namespaces"), name)
    			err = storageerr.InterpretUpdateError(err, api.Resource("namespaces"), name)
    			if _, ok := err.(*apierrors.StatusError); !ok {
    				err = apierrors.NewInternalError(err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_mipsx.go

    //go:noescape
    func Store8(ptr *uint8, val uint8)
    
    // NO go:noescape annotation; see atomic_pointer.go.
    func StorepNoWB(ptr unsafe.Pointer, val unsafe.Pointer)
    
    //go:noescape
    func StoreRel(ptr *uint32, val uint32)
    
    //go:noescape
    func StoreReluintptr(ptr *uintptr, val uintptr)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    			state, err := testStateFunc(ctx, envelopeService, clock.RealClock{}, tt.useSeedWrite)()
    			if err != nil {
    				t.Fatal(err)
    			}
    			var stateErr error
    
    			transformer := NewEnvelopeTransformer(envelopeService, testProviderName,
    				func() (State, error) { return state, stateErr }, testAPIServerID,
    			)
    
    			dataCtx := value.DefaultContext(testContextText)
    			originalText := []byte(testText)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    func (s *Server) initCAServer(ca caserver.CertificateAuthority, opts *caOptions) {
    	caServer, startErr := caserver.New(ca, maxWorkloadCertTTL.Get(), opts.Authenticators, s.multiclusterController)
    	if startErr != nil {
    		log.Fatalf("failed to create istio ca server: %v", startErr)
    	}
    	s.caServer = caServer
    }
    
    // RunCA will start the cert signing GRPC service on an existing server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_arm.go

    }
    
    // Not noescape -- it installs a pointer to addr.
    func StorepNoWB(addr unsafe.Pointer, v unsafe.Pointer)
    
    //go:noescape
    func Store(addr *uint32, v uint32)
    
    //go:noescape
    func StoreRel(addr *uint32, v uint32)
    
    //go:noescape
    func StoreReluintptr(addr *uintptr, v uintptr)
    
    //go:nosplit
    func goCas64(addr *uint64, old, new uint64) bool {
    	if uintptr(unsafe.Pointer(addr))&7 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_wasm.go

    		*ptr = new
    		return true
    	}
    	return false
    }
    
    //go:nosplit
    //go:noinline
    func Store(ptr *uint32, val uint32) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreRel(ptr *uint32, val uint32) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    func StoreRel64(ptr *uint64, val uint64) {
    	*ptr = val
    }
    
    //go:nosplit
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_amd64.s

    	RET
    
    TEXT ·Storeint32(SB), NOSPLIT, $0-12
    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·Storeuintptr(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·StoreRel(SB), NOSPLIT, $0-12
    	JMP	·Store(SB)
    
    TEXT ·StoreRel64(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    TEXT ·StoreReluintptr(SB), NOSPLIT, $0-16
    	JMP	·Store64(SB)
    
    // void	·Or8(byte volatile*, byte);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Store of zero => storezero
    (MOV(D|W|H|B)store [off] {sym} ptr (MOVDconst [0]) mem) => (MOV(D|W|H|B)storezero [off] {sym} ptr mem)
    
    // Fold offsets for storezero
    (MOV(D|W|H|B)storezero [off1] {sym} (ADDconst [off2] x) mem) && ((supportsPPC64PCRel() && is32Bit(int64(off1)+off2)) || (is16Bit(int64(off1)+off2))) =>
        (MOV(D|W|H|B)storezero [off1+int32(off2)] {sym} x mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_mipsx.s

    	JMP	·Xchg(SB)
    
    TEXT ·Xchgint64(SB),NOSPLIT,$0-20
    	JMP	·Xchg64(SB)
    
    TEXT ·Xchguintptr(SB),NOSPLIT,$0-12
    	JMP	·Xchg(SB)
    
    TEXT ·StorepNoWB(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    TEXT ·StoreRel(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    TEXT ·StoreReluintptr(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    // void	Or8(byte volatile*, byte);
    TEXT ·Or8(SB),NOSPLIT,$0-5
    	MOVW	ptr+0(FP), R1
    	MOVBU	val+4(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_arm.s

    	B	·Store(SB)
    
    TEXT ·Storeint64(SB),NOSPLIT,$0-12
    	B	·Store64(SB)
    
    TEXT ·Storeuintptr(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StorepNoWB(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StoreRel(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·StoreReluintptr(SB),NOSPLIT,$0-8
    	B	·Store(SB)
    
    TEXT ·Xaddint32(SB),NOSPLIT,$0-12
    	B	·Xadd(SB)
    
    TEXT ·Xaddint64(SB),NOSPLIT,$-4-20
    	B	·Xadd64(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top