Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 110 for ditamap (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	// deletions, and then apply delta to deletions as a patch, which should be strictly additive.
    	deltaMapDiffOptions := DiffOptions{
    		IgnoreDeletions: true,
    		SetElementOrder: true,
    	}
    	deltaMap, err := diffMaps(currentMap, modifiedMap, schema, deltaMapDiffOptions)
    	if err != nil {
    		return nil, err
    	}
    	deletionsMapDiffOptions := DiffOptions{
    		SetElementOrder:           true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/ipset/ipset_test.go

    				Name:       "foo",
    				SetType:    BitmapPort,
    				HashFamily: ProtocolFamilyIPV6,
    				HashSize:   65535,
    				MaxElem:    2048,
    			},
    			expectErr: true,
    			desc:      "should specify right port range for bitmap type set",
    		},
    		{ // case[3]
    			ipset: &IPSet{
    				Name:       "bar",
    				SetType:    HashIPPort,
    				HashFamily: ProtocolFamilyIPV6,
    				HashSize:   0,
    				MaxElem:    2048,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/MediaType.java

       *
       * @since 20.0
       */
      public static final MediaType VTT_UTF_8 = createConstantUtf8(TEXT_TYPE, "vtt");
    
      /* image types */
      /**
       * <a href="https://en.wikipedia.org/wiki/BMP_file_format">Bitmap file format</a> ({@code bmp}
       * files).
       *
       * @since 13.0
       */
      public static final MediaType BMP = createConstant(IMAGE_TYPE, "bmp");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    		if b&0x80 == 0 {
    			break
    		}
    		shift += 7
    	}
    	return n, v
    }
    
    type stackmap struct {
    	n        int32   // number of bitmaps
    	nbit     int32   // number of bits in each bitmap
    	bytedata [1]byte // bitmaps, each starting on a byte boundary
    }
    
    // stackmapdata should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/MediaType.java

       *
       * @since 20.0
       */
      public static final MediaType VTT_UTF_8 = createConstantUtf8(TEXT_TYPE, "vtt");
    
      /* image types */
      /**
       * <a href="https://en.wikipedia.org/wiki/BMP_file_format">Bitmap file format</a> ({@code bmp}
       * files).
       *
       * @since 13.0
       */
      public static final MediaType BMP = createConstant(IMAGE_TYPE, "bmp");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"image/x-freehand",
    				"image/x-jp2-codestream",
    				"image/x-jp2-container",
    				"image/x-niff",
    				"image/x-pcx",
    				"image/x-pict",
    				"image/x-portable-anymap",
    				"image/x-portable-bitmap",
    				"image/x-portable-graymap",
    				"image/x-portable-pixmap",
    				"image/x-raw-adobe",
    				"image/x-raw-hasselblad",
    				"image/x-raw-fuji",
    				"image/x-raw-canon",
    				"image/x-raw-kodak",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. src/regexp/regexp.go

    func (re *Regexp) ReplaceAllFunc(src []byte, repl func([]byte) []byte) []byte {
    	return re.replaceAll(src, "", 2, func(dst []byte, match []int) []byte {
    		return append(dst, repl(src[match[0]:match[1]])...)
    	})
    }
    
    // Bitmap used by func special to check whether a character needs to be escaped.
    var specialBytes [16]byte
    
    // special reports whether byte b needs to be escaped by QuoteMeta.
    func special(b byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    		// may be larger than we expect.
    		return
    	}
    	_, _, line, _ := runtime.Caller(1)
    	t.Errorf("line %d: heapBits incorrect for %v\nhave %v\nwant %v", line, typ, heapBits, bits)
    }
    
    func verifyGCBitsSlice(t *testing.T, typ Type, cap int, bits []byte) {
    	// Creating a slice causes the runtime to repeat a bitmap,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/reflect/type.go

    		etyp = ptrTo(etyp)
    	}
    
    	// Prepare GC data if any.
    	// A bucket is at most bucketSize*(1+maxKeySize+maxValSize)+ptrSize bytes,
    	// or 2064 bytes, or 258 pointer-size words, or 33 bytes of pointer bitmap.
    	// Note that since the key and value are known to be <= 128 bytes,
    	// they're guaranteed to have bitmaps instead of GC programs.
    	var gcdata *byte
    	var ptrdata uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    	// consistency, a P going idle must the idle mask simultaneously with
    	// updates to the idle P list under the sched.lock, otherwise a racing
    	// pidleget may clear the mask before pidleput sets the mask,
    	// corrupting the bitmap.
    	//
    	// N.B., procresize takes ownership of all Ps in stopTheWorldWithSema.
    	idlepMask pMask
    
    	// Bitmask of Ps that may have a timer, one bit per P. Reads and writes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top