Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for castle (0.12 sec)

  1. src/internal/runtime/atomic/atomic_s390x.s

    TEXT ·Casint64(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    // func Casuintptr(ptr *uintptr, old, new uintptr) bool
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    // func CasRel(ptr *uint32, old, new uint32) bool
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	BR	·Cas(SB)
    
    // func Loaduintptr(ptr *uintptr) uintptr
    TEXT ·Loaduintptr(SB), NOSPLIT, $0-16
    	BR	·Load64(SB)
    
    // func Loaduint(ptr *uint) uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. pkg/kube/client_config.go

    	return &api.Cluster{
    		Server:                   restConfig.Host,
    		TLSServerName:            restConfig.ServerName,
    		InsecureSkipTLSVerify:    restConfig.Insecure,
    		CertificateAuthority:     restConfig.CAFile,
    		CertificateAuthorityData: restConfig.CAData,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 17 16:52:06 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  3. cluster/gce/gci/apiserver_etcd_test.go

    				APIServerKeyPath:  "APIServerKeyPath",
    				APIServerCertPath: "APIServerCertPath",
    			},
    			want: []string{
    				"--etcd-servers=https://127.0.0.1:2379",
    				"--etcd-cafile=CACertPath",
    				"--etcd-certfile=APIServerCertPath",
    				"--etcd-keyfile=APIServerKeyPath",
    			},
    		},
    		{
    			desc: "mTLS disabled",
    			want: []string{"--etcd-servers=http://127.0.0.1:2379"},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_arm.go

    //go:noescape
    func LoadAcq(addr *uint32) uint32
    
    //go:noescape
    func LoadAcquintptr(ptr *uintptr) uintptr
    
    //go:noescape
    func Cas64(addr *uint64, old, new uint64) bool
    
    //go:noescape
    func CasRel(addr *uint32, old, new uint32) bool
    
    //go:noescape
    func Xadd64(addr *uint64, delta int64) uint64
    
    //go:noescape
    func Xchg64(addr *uint64, v uint64) uint64
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/common_test.go

    			},
    			expectedBytes: []byte(`[upgrade/config] Configuration used:
    	apiServer: {}
    	apiVersion: ` + kubeadmapiv1.SchemeGroupVersion.String() + `
    	controllerManager: {}
    	dns: {}
    	etcd:
    	  external:
    	    caFile: ""
    	    certFile: ""
    	    endpoints:
    	    - https://one-etcd-instance:2379
    	    keyFile: ""
    	kind: ClusterConfiguration
    	kubernetesVersion: v1.7.1
    	networking:
    	  serviceSubnet: 10.96.0.1/12
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_arm.s

    //
    TEXT ·armcas(SB),NOSPLIT,$0-13
    	MOVW	ptr+0(FP), R1
    	MOVW	old+4(FP), R2
    	MOVW	new+8(FP), R3
    casl:
    	LDREX	(R1), R0
    	CMP	R0, R2
    	BNE	casfail
    
    #ifndef GOARM_7
    	MOVB	internal∕cpu·ARM+const_offsetARMHasV7Atomics(SB), R11
    	CMP	$0, R11
    	BEQ	2(PC)
    #endif
    	DMB	MB_ISHST
    
    	STREX	R3, (R1), R0
    	CMP	$0, R0
    	BNE	casl
    	MOVW	$1, R0
    
    #ifndef GOARM_7
    	CMP	$0, R11
    	BEQ	2(PC)
    #endif
    	DMB	MB_ISH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_386.s

    	SETEQ	ret+12(FP)
    	RET
    
    TEXT ·Casint32(SB), NOSPLIT, $0-13
    	JMP	·Cas(SB)
    
    TEXT ·Casint64(SB), NOSPLIT, $0-21
    	JMP	·Cas64(SB)
    
    TEXT ·Casuintptr(SB), NOSPLIT, $0-13
    	JMP	·Cas(SB)
    
    TEXT ·CasRel(SB), NOSPLIT, $0-13
    	JMP	·Cas(SB)
    
    TEXT ·Loaduintptr(SB), NOSPLIT, $0-8
    	JMP	·Load(SB)
    
    TEXT ·Loaduint(SB), NOSPLIT, $0-8
    	JMP	·Load(SB)
    
    TEXT ·Storeint32(SB), NOSPLIT, $0-8
    	JMP	·Store(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/transport.go

    	clientConfig.CertData = nil
    	clientConfig.KeyData = nil
    	clientConfig.CertFile = ""
    	clientConfig.KeyFile = ""
    	clientConfig.CAData = nil
    	clientConfig.CAFile = ""
    	clientConfig.Insecure = false
    	clientConfig.NextProtos = nil
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/atomic_loong64.s

    	SCV	R7, (R4)
    	BEQ	R7, cas64_again
    	MOVV	$1, R4
    	MOVB	R4, ret+24(FP)
    	DBAR
    	RET
    cas64_fail:
    	MOVV	$0, R4
    	JMP	-4(PC)
    
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	JMP	·Cas64(SB)
    
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	JMP	·Cas(SB)
    
    TEXT ·Loaduintptr(SB),  NOSPLIT|NOFRAME, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Loaduint(SB), NOSPLIT|NOFRAME, $0-16
    	JMP	·Load64(SB)
    
    TEXT ·Storeuintptr(SB), NOSPLIT, $0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_riscv64.s

    	JMP	·Cas64(SB)
    
    TEXT ·Casint32(SB),NOSPLIT,$0-17
    	JMP	·Cas(SB)
    
    TEXT ·Casint64(SB),NOSPLIT,$0-25
    	JMP	·Cas64(SB)
    
    TEXT ·Casuintptr(SB),NOSPLIT,$0-25
    	JMP	·Cas64(SB)
    
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	JMP	·Cas(SB)
    
    TEXT ·Loaduintptr(SB),NOSPLIT,$0-16
    	JMP	·Load64(SB)
    
    TEXT ·Storeint32(SB),NOSPLIT,$0-12
    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB),NOSPLIT,$0-16
    	JMP	·Store64(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top