Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,204 for vtable (0.1 sec)

  1. pkg/kube/inject/testdata/inject/enable-core-dump.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/unicode/tables.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package unicode
    
    // Version is the Unicode edition from which the tables are derived.
    const Version = "15.0.0"
    
    // Categories is the set of Unicode category tables.
    var Categories = map[string]*RangeTable{
    	"C":  C,
    	"Cc": Cc,
    	"Cf": Cf,
    	"Co": Co,
    	"Cs": Cs,
    	"L":  L,
    	"Ll": Ll,
    	"Lm": Lm,
    	"Lo": Lo,
    	"Lt": Lt,
    	"Lu": Lu,
    	"M":  M,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/bcache/cache.go

    func (c *Cache[K, V]) Register() {
    	registerCache(unsafe.Pointer(&c.ptable))
    }
    
    // cacheSize is the number of entries in the hash table.
    // The hash is the pointer value mod cacheSize, a prime.
    // Collisions are resolved by maintaining a linked list in each hash slot.
    const cacheSize = 1021
    
    // table returns a pointer to the current cache hash table,
    // coping with the possibility of the GC clearing it out from under us.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Tables.java

       * <p>The returned table will be serializable if the specified table is serializable.
       *
       * @param table the table to be wrapped in a synchronized view
       * @return a synchronized view of the specified table
       * @since 22.0
       */
      public static <R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
          Table<R, C, V> synchronizedTable(Table<R, C, V> table) {
        return Synchronized.table(table, null);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    Cherry Mui <******@****.***> 1669134308 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    Dmitri Shuralyov <******@****.***> 1652737741 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  7. src/internal/trace/base.go

    //
    // We don't just store it as an Event in generation to minimize
    // the amount of pointer data floating around.
    func (s cpuSample) asEvent(table *evTable) Event {
    	// TODO(mknyszek): This is go122-specific, but shouldn't be.
    	// Generalize this in the future.
    	e := Event{
    		table: table,
    		ctx:   s.schedCtx,
    		base: baseEvent{
    			typ:  go122.EvCPUSample,
    			time: s.time,
    		},
    	}
    	e.base.args[0] = uint64(s.stack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/enable-core-dump-annotation.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalarmult.go

    	// "mass" of the scalar onto sparse coefficients (meaning
    	// fewer additions).
    
    	basepointNafTable := basepointNafTable()
    	var aTable nafLookupTable5
    	aTable.FromP3(A)
    	// Because the basepoint is fixed, we can use a wider NAF
    	// corresponding to a bigger table.
    	aNaf := a.nonAdjacentForm(5)
    	bNaf := b.nonAdjacentForm(8)
    
    	// Find the first nonzero coefficient.
    	i := 255
    	for j := i; j >= 0; j-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    		return curCtx, false, err
    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return curCtx, true, nil
    }
    
    func (o *ordering) advanceGCBegin(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	seq := ev.args[0]
    	if o.gcState == gcUndetermined {
    		o.gcSeq = seq
    		o.gcState = gcRunning
    		o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    		return curCtx, true, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top