Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 181 for Lspare (0.11 sec)

  1. samples/security/spire/spire-quickstart.yaml

      verbs: ["get", "patch"]
    
    ---
    # RoleBinding granting the spire-server-role to the SPIRE server
    # service account.
    kind: RoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: spire-server-role-binding
      namespace: spire
    subjects:
    - kind: ServiceAccount
      name: spire-server
      namespace: spire
    roleRef:
      kind: Role
      name: spire-server-role
      apiGroup: rbac.authorization.k8s.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  2. samples/security/spire/sleep-spire.yaml

    spec:
      replicas: 1
      selector:
        matchLabels:
          app: sleep
      template:
        metadata:
          labels:
            app: sleep
            spiffe.io/spire-managed-identity: "true"
          # Injects custom sidecar template
          annotations:
            inject.istio.io/templates: "sidecar,spire"
        spec:
          terminationGracePeriodSeconds: 0
          serviceAccountName: sleep
          containers:
          - name: sleep
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/text/template/parse/lex_test.go

    		tLeft,
    		mkItem(itemNumber, "1"),
    		tSpace,
    		mkItem(itemNumber, "02"),
    		tSpace,
    		mkItem(itemNumber, "0x14"),
    		tSpace,
    		mkItem(itemNumber, "0X14"),
    		tSpace,
    		mkItem(itemNumber, "-7.2i"),
    		tSpace,
    		mkItem(itemNumber, "1e3"),
    		tSpace,
    		mkItem(itemNumber, "1E3"),
    		tSpace,
    		mkItem(itemNumber, "+1.2e-4"),
    		tSpace,
    		mkItem(itemNumber, "4.2i"),
    		tSpace,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/sparsemap.go

    package ssa
    
    // from https://research.swtch.com/sparse
    // in turn, from Briggs and Torczon
    
    type sparseEntry struct {
    	key ID
    	val int32
    }
    
    type sparseMap struct {
    	dense  []sparseEntry
    	sparse []int32
    }
    
    // newSparseMap returns a sparseMap that can map
    // integers between 0 and n-1 to int32s.
    func newSparseMap(n int) *sparseMap {
    	return &sparseMap{dense: nil, sparse: make([]int32, n)}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. src/archive/tar/testdata/gnu-sparse-big.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go

    	Gid     uint32
    	_1      int32
    	Rdev    uint64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Btim    Timespec
    	Size    int64
    	Blocks  int64
    	Blksize int32
    	Flags   uint32
    	Gen     uint64
    	Spare   [10]uint64
    }
    
    type Statfs_t struct {
    	Version     uint32
    	Type        uint32
    	Flags       uint64
    	Bsize       uint64
    	Iosize      uint64
    	Blocks      uint64
    	Bfree       uint64
    	Bavail      int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. src/archive/tar/testdata/pax-nil-sparse-hole.tar

    sparse.db...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 3K bytes
    - Viewed (0)
  8. src/internal/trace/base.go

    	minID := ^EI(0)
    	for id := range d.sparse {
    		if id > maxID {
    			maxID = id
    		}
    		if id < minID {
    			minID = id
    		}
    	}
    	if maxID >= math.MaxInt {
    		// We can't create a slice big enough to hold maxID elements
    		return
    	}
    	// We're willing to waste at most 2x memory.
    	if int(maxID-minID) > max(len(d.sparse), 2*len(d.sparse)) {
    		return
    	}
    	if int(minID) > len(d.sparse) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. api/go1.12.txt

    pkg syscall (freebsd-386), type Stat_t struct, Padding0 int16
    pkg syscall (freebsd-386), type Stat_t struct, Padding1 int32
    pkg syscall (freebsd-386), type Stat_t struct, Rdev uint64
    pkg syscall (freebsd-386), type Stat_t struct, Spare [10]uint64
    pkg syscall (freebsd-386), type Statfs_t struct, Mntfromname [1024]int8
    pkg syscall (freebsd-386), type Statfs_t struct, Mntonname [1024]int8
    pkg syscall (freebsd-386-cgo), const S_IRWXG = 56
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 21:21:53 UTC 2019
    - 13.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Atim    Timespec
    	_       int32
    	Mtim    Timespec
    	_       int32
    	Ctim    Timespec
    	_       int32
    	Btim    Timespec
    	Size    int64
    	Blocks  int64
    	Blksize int32
    	Flags   uint32
    	Gen     uint64
    	Spare   [10]uint64
    }
    
    type Statfs_t struct {
    	Version     uint32
    	Type        uint32
    	Flags       uint64
    	Bsize       uint64
    	Iosize      uint64
    	Blocks      uint64
    	Bfree       uint64
    	Bavail      int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top