Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 652 for ptr (0.13 sec)

  1. pkg/apis/apps/v1beta1/defaults_test.go

    					ProgressDeadlineSeconds: ptr.To[int32](30),
    					RevisionHistoryLimit:    ptr.To[int32](2),
    				},
    			},
    			expected: &appsv1beta1.Deployment{
    				Spec: appsv1beta1.DeploymentSpec{
    					Replicas: ptr.To[int32](5),
    					Strategy: appsv1beta1.DeploymentStrategy{
    						Type: appsv1beta1.RecreateDeploymentStrategyType,
    					},
    					ProgressDeadlineSeconds: ptr.To[int32](30),
    					RevisionHistoryLimit:    ptr.To[int32](2),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      // possible after the object is created.
      explicit linked_ptr(T* ptr = NULL) { capture(ptr); }
      ~linked_ptr() { depart(); }
    
      // Copy an existing linked_ptr<>, adding ourselves to the list of references.
      template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
      linked_ptr(linked_ptr const& ptr) {  // NOLINT
        assert(&ptr != this);
        copy(&ptr);
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (AtomicCompareAndSwap32 ptr old new mem)
    	// result: (LoweredAtomicCas32 ptr (SignExt32to64 old) new mem)
    	for {
    		ptr := v_0
    		old := v_1
    		new := v_2
    		mem := v_3
    		v.reset(OpLOONG64LoweredAtomicCas32)
    		v0 := b.NewValue0(v.Pos, OpSignExt32to64, typ.Int64)
    		v0.AddArg(old)
    		v.AddArg4(ptr, v0, new, mem)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta2/defaults_test.go

    					ProgressDeadlineSeconds: ptr.To[int32](30),
    					RevisionHistoryLimit:    ptr.To[int32](2),
    				},
    			},
    			expected: &appsv1beta2.Deployment{
    				Spec: appsv1beta2.DeploymentSpec{
    					Replicas: ptr.To[int32](5),
    					Strategy: appsv1beta2.DeploymentStrategy{
    						Type: appsv1beta2.RecreateDeploymentStrategyType,
    					},
    					ProgressDeadlineSeconds: ptr.To[int32](30),
    					RevisionHistoryLimit:    ptr.To[int32](2),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_riscv64.s

    	MOV	ptr+0(FP), A0
    	LRW	(A0), A0
    	MOVW	A0, ret+8(FP)
    	RET
    
    // func Load8(ptr *uint8) uint8
    TEXT ·Load8(SB),NOSPLIT|NOFRAME,$0-9
    	MOV	ptr+0(FP), A0
    	FENCE
    	MOVBU	(A0), A1
    	FENCE
    	MOVB	A1, ret+8(FP)
    	RET
    
    // func Load64(ptr *uint64) uint64
    TEXT ·Load64(SB),NOSPLIT|NOFRAME,$0-16
    	MOV	ptr+0(FP), A0
    	LRD	(A0), A0
    	MOV	A0, ret+8(FP)
    	RET
    
    // func Store(ptr *uint32, val uint32)
    TEXT ·Store(SB), NOSPLIT, $0-12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    							ClientCAFile: constants.CACertName,
    						},
    						Anonymous: kubeletconfig.KubeletAnonymousAuthentication{
    							Enabled: ptr.To(kubeletAuthenticationAnonymousEnabled),
    						},
    						Webhook: kubeletconfig.KubeletWebhookAuthentication{
    							Enabled: ptr.To(kubeletAuthenticationWebhookEnabled),
    						},
    					},
    					Authorization: kubeletconfig.KubeletAuthorization{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/defaults_test.go

    					RevisionHistoryLimit:    ptr.To[int32](2),
    				},
    			},
    			expected: &appsv1.Deployment{
    				Spec: appsv1.DeploymentSpec{
    					Replicas: ptr.To[int32](5),
    					Strategy: appsv1.DeploymentStrategy{
    						Type: appsv1.RecreateDeploymentStrategyType,
    					},
    					ProgressDeadlineSeconds: ptr.To[int32](30),
    					RevisionHistoryLimit:    ptr.To[int32](2),
    					Template:                defaultTemplate,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        }
        case BuiltinOptions_RNNOptions: {
          auto ptr = reinterpret_cast<const tflite::RNNOptions *>(obj);
          return verifier.VerifyTable(ptr);
        }
        case BuiltinOptions_FullyConnectedOptions: {
          auto ptr = reinterpret_cast<const tflite::FullyConnectedOptions *>(obj);
          return verifier.VerifyTable(ptr);
        }
        case BuiltinOptions_SoftmaxOptions: {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker_test.go

    			Name:     ptr.To(""),
    			Port:     ptr.To[int32](11),
    			Protocol: ptr.To(v1.ProtocolUDP),
    		}}
    	}
    	unnamedPortLocal := func(eps *discovery.EndpointSlice) {
    		eps.Endpoints = []discovery.Endpoint{{
    			Addresses: []string{"1.1.1.1"},
    			NodeName:  ptr.To(testHostname),
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    			Name:     ptr.To(""),
    			Port:     ptr.To[int32](11),
    			Protocol: ptr.To(v1.ProtocolUDP),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/stubs.go

    //go:noescape
    func Storeint64(ptr *int64, new int64)
    
    //go:noescape
    func Storeuintptr(ptr *uintptr, new uintptr)
    
    //go:noescape
    func Loaduintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func Loaduint(ptr *uint) uint
    
    // TODO(matloob): Should these functions have the go:noescape annotation?
    
    //go:noescape
    func Loadint32(ptr *int32) int32
    
    //go:noescape
    func Loadint64(ptr *int64) int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top