Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for ts (0.04 sec)

  1. android/guava/src/com/google/common/collect/Iterators.java

          }
    
          @Override
          public List<@Nullable T> next() {
            if (!hasNext()) {
              throw new NoSuchElementException();
            }
            @SuppressWarnings("unchecked") // we only put Ts in it
            @Nullable
            T[] array = (@Nullable T[]) new Object[size];
            int count = 0;
            for (; count < size && iterator.hasNext(); count++) {
              array[count] = iterator.next();
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Iterators.java

          }
    
          @Override
          public List<@Nullable T> next() {
            if (!hasNext()) {
              throw new NoSuchElementException();
            }
            @SuppressWarnings("unchecked") // we only put Ts in it
            @Nullable
            T[] array = (@Nullable T[]) new Object[size];
            int count = 0;
            for (; count < size && iterator.hasNext(); count++) {
              array[count] = iterator.next();
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			}
    			if loggingEnabled {
    				state.logf("    piece %d -> dwreg %d", k, dwreg)
    			}
    			if len(inp.Registers) > 1 {
    				list = append(list, dwarf.DW_OP_piece)
    				ts := rtypes[k].Size()
    				list = dwarf.AppendUleb128(list, uint64(ts))
    				if padding[k] > 0 {
    					if loggingEnabled {
    						state.logf(" [pad %d bytes]", padding[k])
    					}
    					list = append(list, dwarf.DW_OP_piece)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    		if pod.Labels == nil {
    			pod.Labels = make(map[string]string)
    		}
    		pod.Labels[label] = value
    		return pod
    	}
    	withDeletionTimestamp := func(pod *v1.Pod, ts time.Time, gracePeriod *int64) *v1.Pod {
    		pod.DeletionTimestamp = &metav1.Time{Time: ts}
    		pod.DeletionGracePeriodSeconds = gracePeriod
    		return pod
    	}
    	intp := func(i int64) *int64 {
    		return &i
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    			gd, ok := d.(*ast.GenDecl)
    			if !ok || gd.Tok != token.TYPE {
    				continue
    			}
    			for _, spec := range gd.Specs {
    				ts, ok := spec.(*ast.TypeSpec)
    				if !ok {
    					continue
    				}
    				if ts.Name.Name == t.Name {
    					return p.hasPointer(f, ts.Type, top)
    				}
    			}
    		}
    		if def := typedef[t.Name]; def != nil {
    			return p.hasPointer(f, def.Go, top)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    }
    
    // specialName parses:
    //
    //	<special-name> ::= TV <type>
    //	               ::= TT <type>
    //	               ::= TI <type>
    //	               ::= TS <type>
    //	               ::= TA <template-arg>
    //	               ::= GV <(object) name>
    //	               ::= T <call-offset> <(base) encoding>
    //	               ::= Tc <call-offset> <call-offset> <(base) encoding>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top