Search Options

Results per page
Sort
Preferred Languages
Advance

Results 611 - 620 of 665 for 16 (0.03 sec)

  1. android/guava-tests/test/com/google/common/collect/SetsTest.java

      }
    
      public void testPowerSetSize() {
        assertPowerSetSize(1);
        assertPowerSetSize(2, 'a');
        assertPowerSetSize(4, 'a', 'b');
        assertPowerSetSize(8, 'a', 'b', 'c');
        assertPowerSetSize(16, 'a', 'b', 'd', 'e');
        assertPowerSetSize(
            1 << 30, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p',
            'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '1', '2', '3', '4');
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 45.3K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    	"github.com/puzpuzpuz/xsync/v3"
    )
    
    type erasureServerPools struct {
    	poolMetaMutex sync.RWMutex
    	poolMeta      poolMeta
    
    	rebalMu   sync.RWMutex
    	rebalMeta *rebalanceMeta
    
    	deploymentID     [16]byte
    	distributionAlgo string
    
    	serverPools []*erasureSets
    
    	// Active decommission canceler
    	decommissionCancelers []context.CancelFunc
    
    	s3Peer *S3PeerSys
    
    	mpCache *xsync.MapOf[string, MultipartInfo]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 89.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

         */
        private void doRecvSMB2(final CommonServerMessageBlock response) throws IOException, SMBProtocolDecodingException {
            int size = Encdec.dec_uint16be(this.sbuf, 2) & 0xFFFF | (this.sbuf[1] & 0xFF) << 16;
            if (size < Smb2Constants.SMB2_HEADER_LENGTH + 1) {
                throw new IOException("Invalid payload size: " + size);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"audio/evrcb1",
    				"audio/evrcwb",
    				"audio/evrcwb0",
    				"audio/evrcwb1",
    				"audio/example",
    				"audio/g719",
    				"audio/g722",
    				"audio/g7221",
    				"audio/g723",
    				"audio/g726-16",
    				"audio/g726-24",
    				"audio/g726-32",
    				"audio/g726-40",
    				"audio/g728",
    				"audio/g729",
    				"audio/g7291",
    				"audio/g729d",
    				"audio/g729e",
    				"audio/gsm",
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. docs/debugging/xl-meta/main.go

    		if err != nil {
    			return err
    		}
    		if err = fn(i, tHdr, tMeta); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    type xlMetaV2VersionHeaderV2 struct {
    	VersionID [16]byte
    	ModTime   int64
    	Signature [4]byte
    	Type      uint8
    	Flags     uint8
    	EcN, EcM  uint8 // Note that these will be 0/0 for non-v2 objects and older xl.meta
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  6. cmd/data-scanner.go

    	"github.com/minio/pkg/v3/console"
    	uatomic "go.uber.org/atomic"
    )
    
    const (
    	dataScannerSleepPerFolder        = time.Millisecond                 // Time to wait between folders.
    	dataUsageUpdateDirCycles         = 16                               // Visit all folders every n cycles.
    	dataScannerCompactLeastObject    = 500                              // Compact when there is less than this many objects in a branch.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.5K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    			accessKey:            credentials.AccessKey,
    			secretKey:            credentials.SecretKey,
    			expectedRespStatus:   http.StatusOK,
    		},
    		// Test case - 16, copy metadata from newObject1 with unsatisfying unmodified header.
    		16: {
    			bucketName:           bucketName,
    			newObjectName:        "newObject1",
    			copySourceHeader:     url.QueryEscape(SlashSeparator + bucketName + SlashSeparator + objectName),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 163.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    	}
    }
    
    func (p *Parser) registerListARM(a *obj.Addr) {
    	// One range per loop.
    	var maxReg int
    	var bits uint16
    	var arrangement int64
    	switch p.arch.Family {
    	case sys.ARM:
    		maxReg = 16
    	case sys.ARM64:
    		maxReg = 32
    	default:
    		p.errorf("unexpected register list")
    	}
    	firstReg := -1
    	nextReg := -1
    	regCnt := 0
    ListLoop:
    	for {
    		tok := p.next()
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Feb 14 15:13:11 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg debug/macho, type Section32 struct, Name [16]uint8
    pkg debug/macho, type Section32 struct, Nreloc uint32
    pkg debug/macho, type Section32 struct, Offset uint32
    pkg debug/macho, type Section32 struct, Reloff uint32
    pkg debug/macho, type Section32 struct, Reserve1 uint32
    pkg debug/macho, type Section32 struct, Reserve2 uint32
    pkg debug/macho, type Section32 struct, Seg [16]uint8
    pkg debug/macho, type Section32 struct, Size uint32
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  10. go.sum

    github.com/shirou/gopsutil/v3 v3.24.5/go.mod h1:bsoOS1aStSs9ErQ1WWfxllSeS1K5D+U30r2NfcubMVk=
    github.com/shoenig/go-m1cpu v0.1.6 h1:nxdKQNcEB6vzgA2E2bvzKIYRuNj7XNJ4S/aRSwKzFtM=
    github.com/shoenig/go-m1cpu v0.1.6/go.mod h1:1JJMcUBvfNwpq05QDQVAnx3gUHr9IYF7GNg9SUEw2VQ=
    github.com/shoenig/test v0.6.4 h1:kVTaSd7WLz5WZ2IaoM0RSzRsUD+m8wRR+5qvntpn4LU=
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 79.9K bytes
    - Viewed (0)
Back to top