Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 491 for small7 (0.11 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

        javacopts = ["-XepDisableAllChecks"],
        visibility = ["//visibility:public"],
        deps = [
    ${subProjectDependencies}
        ]
    )
    
    junit_tests(
        name = "tests_for_project${subProjectNumber}",
        size = "small",
        srcs = glob(["src/test/java/**/*.java"]),
        deps = [
            "project${subProjectNumber}",
            ${subProjectDependencies}
        ],
    )
    """
            } else {
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/internal/bytealg/equal_amd64.s

    	JMP	memeqbody<>(SB)
    
    // Input:
    //   a in SI
    //   b in DI
    //   count in BX
    // Output:
    //   result in AX
    TEXT memeqbody<>(SB),NOSPLIT,$0-0
    	CMPQ	BX, $8
    	JB	small
    	CMPQ	BX, $64
    	JB	bigloop
    #ifndef hasAVX2
    	CMPB	internal∕cpu·X86+const_offsetX86HasAVX2(SB), $1
    	JE	hugeloop_avx2
    
    	// 64 bytes at a time using xmm registers
    	PCALIGN $16
    hugeloop:
    	CMPQ	BX, $64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:34:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. test/codegen/stack.go

    // arm64:"TEXT\t.*, [$]0-"
    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    // Note: that 386 currently has to spill a register.
    func KeepWanted(t *T) {
    	*t = T{A: t.A, B: t.B, C: t.C, D: t.D}
    }
    
    // Check that small array operations avoid using the stack (issue #15925).
    
    // Notes:
    // - 386 fails due to spilling a register
    // - arm & mips fail due to softfloat calls
    // amd64:"TEXT\t.*, [$]0-"
    // arm64:"TEXT\t.*, [$]0-"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/strings/clone.go

    package strings
    
    import (
    	"internal/stringslite"
    )
    
    // Clone returns a fresh copy of s.
    // It guarantees to make a copy of s into a new allocation,
    // which can be important when retaining only a small substring
    // of a much larger string. Using Clone can help such programs
    // use less memory. Of course, since using Clone makes a copy,
    // overuse of Clone can make programs use more memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 809 bytes
    - Viewed (0)
  5. pkg/volume/iscsi/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package iscsi contains the internal representation of Internet Small
    // Computer System Interface (iSCSI) volumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 750 bytes
    - Viewed (0)
  6. docs/extensions/s3zip/README.md

    ## Overview
    
    MinIO implements an S3 extension to list, stat and download files inside a ZIP file stored in any bucket. A perfect use case scenario is when you have a lot of small files archived in multiple ZIP files. Uploading them is faster than uploading small files individually. Besides, your S3 applications will be able to access to the data with little performance overhead.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 10 16:28:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue14164.dir/a.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    // F is an exported function, small enough to be inlined.
    // It defines a local interface with an unexported method
    // f, which will appear with a package-qualified method
    // name in the export data.
    func F(x interface{}) bool {
    	_, ok := x.(interface {
    		f()
    	})
    	return ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 01 20:29:19 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  8. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/internal/IsProbablyUtf8.kt

     * limitations under the License.
     */
    package okhttp3.logging.internal
    
    import java.io.EOFException
    import okio.Buffer
    
    /**
     * Returns true if the body in question probably contains human readable text. Uses a small
     * sample of code points to detect unicode control characters commonly used in binary file
     * signatures.
     */
    fun Buffer.isProbablyUtf8(): Boolean {
      try {
        val prefix = Buffer()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 07 16:05:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/internal/bytealg/count_ppc64x.s

    #ifndef GOPPC64_power10
    	RLDIMI	$8, R5, $48, R5
    	RLDIMI	$16, R5, $32, R5
    	RLDIMI	$32, R5, $0, R5	// fill reg with the byte to count
    #endif
    
    	CMPU	R4, $32		// Check if it's a small string (<32 bytes)
    	BLT	tail		// Jump to the small string case
    	SRD	$5, R4, R20
    	MOVD	R20, CTR
    	MOVD	$16, R21
    	XXLXOR	V4, V4, V4
    	XXLXOR	V5, V5, V5
    
    	PCALIGN	$16
    cmploop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion - that we here highly resolve that these dead shall not have died in vain - that this nation, under God, shall have a new birth of freedom - and that government of the people, by the people, for the people, shall not perish from this earth. Abraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania Four score and seven years ago our fathers brought forth on this continent, a...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
Back to top