Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for chunkOf (0.17 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

                while (!tasks.isEmpty()) {
                    val (chunks, element) = tasks.removeFirst()
                    assert(chunks.isNotEmpty())
    
                    if (element !is KtNamedDeclaration || element.nameAsName != chunks[0]) {
                        continue
                    }
    
                    if (chunks.size == 1) {
                        yieldIfNotNull(element as? KtClassLikeDeclaration)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/symbolDeclarationOverridesProvider/AbstractOverriddenDeclarationProviderTest.kt

                        else -> null
                    }
    
                    if (qualifiedName != null) {
                        chunks += qualifiedName
                        continue
                    }
                }
    
                chunks += (parent as? KaNamedSymbol)?.name?.asString() ?: "<no name>"
            }
    
            return chunks.joinToString(".")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/path/filepath/match.go

    			match := false
    			nrange := 0
    			for {
    				if len(chunk) > 0 && chunk[0] == ']' && nrange > 0 {
    					chunk = chunk[1:]
    					break
    				}
    				var lo, hi rune
    				if lo, chunk, err = getEsc(chunk); err != nil {
    					return "", false, err
    				}
    				hi = lo
    				if chunk[0] == '-' {
    					if hi, chunk, err = getEsc(chunk[1:]); err != nil {
    						return "", false, err
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/internal/chacha8rand/chacha8.go

    	}
    	used := byteorder.BeUint64(data[1*8:])
    	if used > (ctrMax/ctrInc)*chunk-reseed {
    		return new(errUnmarshalChaCha8)
    	}
    	for i := range s.seed {
    		s.seed[i] = byteorder.LeUint64(data[(2+i)*8:])
    	}
    	s.c = ctrInc * (uint32(used) / chunk)
    	block(&s.seed, &s.buf, s.c)
    	s.i = uint32(used) % chunk
    	s.n = chunk
    	if s.c == ctrMax-ctrInc {
    		s.n = chunk - reseed
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/crypto/sha256/sha256.go

    	boring.Unreachable()
    	nn = len(p)
    	d.len += uint64(nn)
    	if d.nx > 0 {
    		n := copy(d.x[d.nx:], p)
    		d.nx += n
    		if d.nx == chunk {
    			block(d, d.x[:])
    			d.nx = 0
    		}
    		p = p[n:]
    	}
    	if len(p) >= chunk {
    		n := len(p) &^ (chunk - 1)
    		block(d, p[:n])
    		p = p[n:]
    	}
    	if len(p) > 0 {
    		d.nx = copy(d.x[:], p)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/slices/iter.go

    	SortStableFunc(s, cmp)
    	return s
    }
    
    // Chunk returns an iterator over consecutive sub-slices of up to n elements of s.
    // All but the last sub-slice will have size n.
    // All sub-slices are clipped to have no capacity beyond the length.
    // If s is empty, the sequence is empty: there is no empty slice in the sequence.
    // Chunk panics if n is less than 1.
    func Chunk[Slice ~[]E, E any](s Slice, n int) iter.Seq[Slice] {
    	if n < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/crypto/sha1/sha1.go

    const BlockSize = 64
    
    const (
    	chunk = 64
    	init0 = 0x67452301
    	init1 = 0xEFCDAB89
    	init2 = 0x98BADCFE
    	init3 = 0x10325476
    	init4 = 0xC3D2E1F0
    )
    
    // digest represents the partial evaluation of a checksum.
    type digest struct {
    	h   [5]uint32
    	x   [chunk]byte
    	nx  int
    	len uint64
    }
    
    const (
    	magic         = "sha\x01"
    	marshaledSize = len(magic) + 5*4 + chunk + 8
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    // whether or not a given page is scavenged in a single
    // structure. It's effectively a pallocBits with
    // additional functionality.
    //
    // Update the comment on (*pageAlloc).chunks should this
    // structure change.
    type pallocData struct {
    	pallocBits
    	scavenged pageBits
    }
    
    // allocRange sets bits [i, i+n) in the bitmap to 1 and
    // updates the scavenged bits appropriately.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. cmd/handler-utils.go

    			// to a custom value for example: "aws-chunked,gzip".
    			metadata[strings.ToLower(xhttp.ContentEncoding)] = contentEncoding
    		} else {
    			// Trimmed content encoding is empty when the header
    			// value is set to "aws-chunked" only.
    
    			// Make sure to delete the content-encoding parameter
    			// for a streaming signature which is set to value
    			// for example: "aws-chunked"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

                "in": "query",
                "name": "limit",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
Back to top