Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for mmpt (0.04 sec)

  1. test/map.go

    			panic(fmt.Sprintf("update mspa[%s][%d] = %s\n", s, i%2, mspa[s][i%2]))
    
    		}
    
    		mipT[i].i += 1
    		if mipT[i].i != int64(i)+1 {
    			panic(fmt.Sprintf("update mipT[%d].i = %d\n", i, mipT[i].i))
    
    		}
    		mipT[i].f = float32(i + 1)
    		if mipT[i].f != float32(i+1) {
    			panic(fmt.Sprintf("update mipT[%d].f = %g\n", i, mipT[i].f))
    
    		}
    
    		mipM[i][i]++
    		if mipM[i][i] != (i+1)+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 06 21:02:55 UTC 2014
    - 14.9K bytes
    - Viewed (0)
  2. test/gcgort.go

    	case a.arrayT == nil:
    		return errors.New(a.name + " missing arrayT")
    	case a.sliceT == nil:
    		return errors.New(a.name + " missing sliceT")
    	case a.mapT == nil:
    		return errors.New(a.name + " missing mapT")
    	case a.mapPointerKeyT == nil:
    		return errors.New(a.name + " missing mapPointerKeyT")
    	case a.chanT == nil:
    		return errors.New(a.name + " missing chanT")
    	case a.interfaceT == nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 21:15:48 UTC 2018
    - 34.5K bytes
    - Viewed (0)
  3. src/encoding/gob/debug.go

    		fmt.Fprintf(os.Stderr, "%selemid %d\n", indent+1, wire.ArrayT.Elem)
    	case wire.MapT != nil:
    		deb.printCommonType(indent, "map", &wire.MapT.CommonType)
    		fmt.Fprintf(os.Stderr, "%skey id=%d\n", indent+1, wire.MapT.Key)
    		fmt.Fprintf(os.Stderr, "%selem id=%d\n", indent+1, wire.MapT.Elem)
    	case wire.SliceT != nil:
    		deb.printCommonType(indent, "slice", &wire.SliceT.CommonType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. src/encoding/gob/decode.go

    			op = func(i *decInstr, state *decoderState, value reflect.Value) {
    				state.dec.ignoreArray(state, *elemOp, wire.ArrayT.Len)
    			}
    
    		case wire.MapT != nil:
    			keyId := dec.wireType[wireId].MapT.Key
    			elemId := dec.wireType[wireId].MapT.Elem
    			keyOp := dec.decIgnoreOpFor(keyId, inProgress, depth+1)
    			elemOp := dec.decIgnoreOpFor(elemId, inProgress, depth+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  5. src/encoding/gob/type.go

    		return unknown
    	}
    	switch {
    	case w.ArrayT != nil:
    		return w.ArrayT.Name
    	case w.SliceT != nil:
    		return w.SliceT.Name
    	case w.StructT != nil:
    		return w.StructT.Name
    	case w.MapT != nil:
    		return w.MapT.Name
    	case w.GobEncoderT != nil:
    		return w.GobEncoderT.Name
    	case w.BinaryMarshalerT != nil:
    		return w.BinaryMarshalerT.Name
    	case w.TextMarshalerT != nil:
    		return w.TextMarshalerT.Name
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.mindjet.mindmanager">
        <_comment>MindManager</_comment>
        <sub-class-of type="application/zip"/>
        <glob pattern="*.mmp"/>
        <glob pattern="*.mmap"/>
        <glob pattern="*.mmpt"/>
        <glob pattern="*.mmat"/>
        <glob pattern="*.mmmp"/>
        <glob pattern="*.mmas"/>
      </mime-type>
    
      <mime-type type="application/vnd.minisoft-hp3000-save"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    		!le.IsLeader() {
    		if le.config.KeyComparison != nil && le.config.KeyComparison(oldLeaderElectionRecord.HolderKey) {
    			// Lock is held and not expired, but our key is higher than the existing one.
    			// We will pre-empt the existing leader.
    			// nolint: lll
    			klog.V(4).Infof("lock is held by %v with key %v, but our key (%v) evicts it", oldLeaderElectionRecord.HolderIdentity, oldLeaderElectionRecord.HolderKey, le.config.Lock.Key())
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/encoding/gob/doc.go

    description, constructed from these types:
    
    	type wireType struct {
    		ArrayT           *ArrayType
    		SliceT           *SliceType
    		StructT          *StructType
    		MapT             *MapType
    		GobEncoderT      *gobEncoderType
    		BinaryMarshalerT *gobEncoderType
    		TextMarshalerT   *gobEncoderType
    
    	}
    	type arrayType struct {
    		CommonType
    		Elem typeId
    		Len  int
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

       * max-heap. Conceptually, these might each have their own array for storage, but for efficiency's
       * sake they are stored interleaved on alternate heap levels in the same array (MMPQ.queue).
       */
      @WeakOuter
      class Heap {
        final Ordering<E> ordering;
    
        @SuppressWarnings("nullness:initialization.field.uninitialized")
        @Weak
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

       * max-heap. Conceptually, these might each have their own array for storage, but for efficiency's
       * sake they are stored interleaved on alternate heap levels in the same array (MMPQ.queue).
       */
      @WeakOuter
      class Heap {
        final Ordering<E> ordering;
    
        @SuppressWarnings("nullness:initialization.field.uninitialized")
        @Weak
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top