Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/webapp/js/admin/plugins/form-validator/theme-default.min.css

    kZSMKMk+VLK6zT2dN2M4MzirLbsmY38m+w3b8w5n/tmq1Te+vyKgkeF/Nv9iqqKX+5ULskovV4msDtxz+19auWVBygHt1eyHtpXJVd942h0Leux8yf8T+L1TQ1BZzjOXmnKOK964XVzXWt0u3LHp86O7i29Tn38V6auNd3Y0O8wIHh7aNDr7tS9rPtiDwZHix95jMk+RZ5Nvrg+0TBVOs2Y8ZgVflM9J/fu3AeT+cFPQZ8/LOR8Y188+EPsZ/Uvod+ly8sAwA/mQIdquAvLiAYSgRxEriGfUUnUHc1DW9E5TALzxXZh/TiGm+BZeCu+QNAmpBG6iASiC7GS+IZkSNpFek22Ih9jIjPRmZ4yOzH3suiydLBasN5m82N7Q9nEzsvexOHC8ZGznMuEa5b7MI8HLxvvLb7t/E4CXAJjgseFGMLmItwib0Wvix0TL6DGSnhKmktpSMvJiMsKywnJUxWUFPWVHNfQlDeoVKh2qb3UoGgaaTG0z...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 33.3K bytes
    - Viewed (0)
  2. src/archive/tar/reader_test.go

    	populateSparseMap := func(sa sparseArray, sps []string) []string {
    		for i := 0; len(sps) > 0 && i < sa.maxEntries(); i++ {
    			copy(sa.entry(i), sps[0])
    			sps = sps[1:]
    		}
    		if len(sps) > 0 {
    			copy(sa.isExtended(), "\x80")
    		}
    		return sps
    	}
    
    	makeInput := func(format Format, size string, sps ...string) (out []byte) {
    		// Write the initial GNU header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  3. src/runtime/arena_test.go

    		for i := range mpos {
    			mpos[i] = *mpo
    		}
    		runSubTestUserArenaSlice(t, mpos, true)
    
    		sps := make([]smallPointer, UserArenaChunkBytes/unsafe.Sizeof(smallPointer{})+1)
    		for i := range sps {
    			sps[i] = *sp
    		}
    		// Not in parallel because we don't want to hold this large allocation live.
    		runSubTestUserArenaSlice(t, sps, false)
    
    		// Test zero-sized types.
    		t.Run("struct{}", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. docs/debugging/xl-meta/main.go

    		if err != nil {
    			return nil, err
    		}
    		if len(b) < 32 {
    			return nil, fmt.Errorf("file %s too short", file)
    		}
    
    		// Extract block data.
    		ssz := shardSize(ei.V2Obj.EcBSize, ei.V2Obj.EcM)
    		b, err = bitrot(b, blockNum*ssz, ssz)
    		if err != nil {
    			return nil, err
    		}
    
    		if m.mapped == nil {
    			m.mapped = make([]byte, m.size)
    			m.filled = make([]byte, m.size)
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/phi.go

    // of the appropriate phi or definition.
    // TODO: make this part of cmd/compile/internal/ssa somehow?
    func (s *state) insertPhis() {
    	if len(s.f.Blocks) <= smallBlocks {
    		sps := simplePhiState{s: s, f: s.f, defvars: s.defvars}
    		sps.insertPhis()
    		return
    	}
    	ps := phiState{s: s, f: s.f, defvars: s.defvars}
    	ps.insertPhis()
    }
    
    type phiState struct {
    	s       *state                   // SSA state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadpe/ldpe.go

    		}
    
    		if sect == nil {
    			return nil, nil
    		}
    
    		// Check for COMDAT symbol.
    		if sz, ok1 := state.comdats[uint16(pesym.SectionNumber-1)]; ok1 {
    			if psz, ok2 := comdatDefinitions[l.SymName(s)]; ok2 {
    				if sz == psz {
    					//  OK to discard, we've seen an instance
    					// already.
    					continue
    				}
    			}
    		}
    		if l.OuterSym(s) != 0 {
    			if l.AttrDuplicateOK(s) {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

          .write(this, 0, size - 1)
          .writeByte(this[size - 1].toInt() xor 1)
          .readByteString()
      }
    
      private fun date(s: String): Date {
        return SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ").run {
          timeZone = TimeZone.getTimeZone("GMT")
          parse(s)
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CookieTest.kt

            }
          }
          assertThat(cookieA).isNotEqualTo(null)
        }
      }
    
      @Throws(ParseException::class)
      private fun date(s: String): Date {
        val format = SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ")
        format.timeZone = UTC
        return format.parse(s)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

              construct = { Point(it[0] as Long?, it[1] as Long?) },
            )
        }
      }
    
      private fun date(s: String): Date {
        return SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ").run {
          timeZone = TimeZone.getTimeZone("GMT")
          parse(s)
        }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/writebarrier.go

    			continue
    		}
    
    		if wbaddr == nil {
    			// lazily initialize global values for write barrier test and calls
    			// find SB and SP values in entry block
    			initpos := f.Entry.Pos
    			sp, sb = f.spSb()
    			wbsym := f.fe.Syslook("writeBarrier")
    			wbaddr = f.Entry.NewValue1A(initpos, OpAddr, f.Config.Types.UInt32Ptr, wbsym, sb)
    			wbZero = f.fe.Syslook("wbZero")
    			wbMove = f.fe.Syslook("wbMove")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top