Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for Boundary (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/process/internal/streams/ExecOutputHandleRunnerTest.groovy

            then:
            output.toByteArray() == "hello".bytes
            completed.count == 0
        }
    
        @Issue("GRADLE-3329")
        def "Handles exec output with line containing multi-byte unicode character at buffer boundary"() {
            given:
            def bufferLength = 7
            def text1 = "a" * (bufferLength - 1)
            def text2 = "\u0151" + ("a" * 5)
            def text = text1 + text2
            def action = Mock(TextStream)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 08 14:24:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Context.puml

    ' Boundaries
    ' ##################################
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/runtime/memclr_mipsx.s

    	BNE	R3, small_zero
    
    ptr_align:
    	AND	$3, R1, R3
    	BEQ	R3, setup
    	SUBU	R1, R0, R3
    	AND	$3, R3		// R3 contains number of bytes needed to align ptr
    	MOVWHI	R0, 0(R1)	// MOVWHI will write zeros up to next word boundary
    	SUBU	R3, R2
    	ADDU	R3, R1
    
    setup:
    	AND	$31, R2, R6
    	AND	$3, R2, R5
    	SUBU	R6, R4, R6	// end pointer for 32-byte chunks
    	SUBU	R5, R4, R5	// end pointer for 4-byte chunks
    
    large:
    	BEQ	R1, R6, words
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. src/regexp/syntax/doc.go

    	$              at end of text (like \z not \Z) or line (flag m=true)
    	\A             at beginning of text
    	\b             at ASCII word boundary (\w on one side and \W, \A, or \z on the other)
    	\B             not at ASCII word boundary
    	\z             at end of text
    
    Escape sequences:
    
    	\a             bell (== \007)
    	\f             form feed (== \014)
    	\t             horizontal tab (== \011)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. test/finprofiled.go

    			// freed. That's fine. Avoid a divide-by-zero and skip.
    			continue
    		}
    		size := bytes / nobj
    		if size == tinyBlockSize {
    			totalBytes += bytes
    		}
    	}
    	// 2*tinyBlockSize slack is for any boundary effects.
    	if want := N*int64(unsafe.Sizeof(int32(0))) - 2*tinyBlockSize; totalBytes < want {
    		println("got", totalBytes, "want >=", want)
    		panic("some of the tiny objects are not profiled")
    	}
    	// Just to keep hold alive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 05:48:00 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/cost_model.h

    float GetTransferCost(const std::string& from_hardware_str,
                          const std::string& to_hardware_str,
                          func::CallOp from_graph, func::CallOp to_graph);
    
    // Get the cross quantization/dequantization boundary cost.
    float GetQuantDequantCost(InferenceType from_inference_type,
                              InferenceType to_inference_type,
                              func::CallOp from_graph, func::CallOp to_graph);
    
    }  // namespace tac
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/ingress/interface.go

    	AddressesForPort(port int) ([]string, []int)
    
    	// PodID returns the name of the ingress gateway pod of index i. Returns error if failed to get the pod
    	// or the index is out of boundary.
    	PodID(i int) (string, error)
    
    	// Cluster the ingress is deployed to
    	Cluster() cluster.Cluster
    
    	// Namespace of the ingress
    	Namespace() string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/internal/bytealg/equal_386.s

    	CMPL	CX, DX
    	SETEQ	(AX)
    	RET
    
    small:
    	CMPL	BX, $0
    	JEQ	equal
    
    	LEAL	0(BX*8), CX
    	NEGL	CX
    
    	MOVL	SI, DX
    	CMPB	DX, $0xfc
    	JA	si_high
    
    	// load at SI won't cross a page boundary.
    	MOVL	(SI), SI
    	JMP	si_finish
    si_high:
    	// address ends in 111111xx. Load up to bytes we want, move to correct position.
    	MOVL	-4(SI)(BX*1), SI
    	SHRL	CX, SI
    si_finish:
    
    	// same for DI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/readwriter.go

    package norm
    
    import "io"
    
    type normWriter struct {
    	rb  reorderBuffer
    	w   io.Writer
    	buf []byte
    }
    
    // Write implements the standard write interface.  If the last characters are
    // not at a normalization boundary, the bytes will be buffered for the next
    // write. The remaining bytes will be written on close.
    func (w *normWriter) Write(data []byte) (n int, err error) {
    	// Process data in pieces to keep w.buf size bounded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/test2json_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			diffJSON(t, buf.Bytes(), want)
    			if t.Failed() {
    				// If the line-at-a-time conversion fails, no point testing boundary conditions.
    				return
    			}
    
    			// Write entire input in bulk.
    			t.Run("bulk", func(t *testing.T) {
    				buf.Reset()
    				c = NewConverter(&buf, "", 0)
    				in = append([]byte{}, orig...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 7.2K bytes
    - Viewed (0)
Back to top