Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for underlining (0.22 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +kubebuilder:validation:Minimum=0
      optional int64 observedGeneration = 3;
    
      // lastTransitionTime is the last time the condition transitioned from one status to another.
      // This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.
      // +required
      // +kubebuilder:validation:Required
      // +kubebuilder:validation:Type=string
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

       * String a2 = peekingIterator.peek(); // also returns "a"
       * String a3 = peekingIterator.next(); // also returns "a"
       * }</pre>
       *
       * <p>Any structural changes to the underlying iteration (aside from those performed by the
       * iterator's own {@link PeekingIterator#remove()} method) will leave the iterator in an undefined
       * state.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 51.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

       * String a2 = peekingIterator.peek(); // also returns "a"
       * String a3 = peekingIterator.next(); // also returns "a"
       * }</pre>
       *
       * <p>Any structural changes to the underlying iteration (aside from those performed by the
       * iterator's own {@link PeekingIterator#remove()} method) will leave the iterator in an undefined
       * state.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    	if *godefs {
    		c.goVoidPtr = &ast.StarExpr{X: c.byte}
    	} else {
    		c.goVoidPtr = c.Ident("unsafe.Pointer")
    	}
    }
    
    // base strips away qualifiers and typedefs to get the underlying type.
    func base(dt dwarf.Type) dwarf.Type {
    	for {
    		if d, ok := dt.(*dwarf.QualType); ok {
    			dt = d.Type
    			continue
    		}
    		if d, ok := dt.(*dwarf.TypedefType); ok {
    			dt = d.Type
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        @Override
        public V next() {
          return nextEntry().getValue();
        }
      }
    
      /**
       * Custom Entry class used by EntryIterator.next(), that relays setValue changes to the underlying
       * map.
       */
      final class WriteThroughEntry extends AbstractMapEntry<K, V> {
        final K key; // non-null
        V value; // non-null
    
        WriteThroughEntry(K key, V value) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    	for index := range disks {
    		metadata[index].SetTierFreeVersionID(fvID)
    	}
    
    	diskVersions := make([][]byte, len(disks))
    	dataDirs := make([]string, len(disks))
    	// Rename file on all underlying storage disks.
    	for index := range disks {
    		index := index
    		g.Go(func() error {
    			if disks[index] == nil {
    				return errDiskNotFound
    			}
    
    			// Pick one FileInfo for a disk at index.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 77.2K bytes
    - Viewed (2)
  7. cmd/xl-storage.go

    	data := make([]byte, 8)
    	binary.LittleEndian.PutUint64(data, writeCount)
    	return xattr.LSet(s.formatFile, attr, data)
    }
    
    // DiskInfo provides current information about disk space usage,
    // total free inodes and underlying filesystem.
    func (s *xlStorage) DiskInfo(_ context.Context, _ DiskInfoOptions) (info DiskInfo, err error) {
    	info, err = s.diskInfoCache.Get()
    	info.NRRequests = s.nrRequests
    	info.Rotational = s.rotational
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
Back to top