Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 221 for Boundary (0.3 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      Status AddFunctionCallNodes(
          const absl::flat_hash_map<const Node*, Node*>& node_images,
          Graph* graph_out);
    
      // Finds the image of an edge source in the output graph. If the edge crosses
      // a subgraph boundary it is the output of a call node, otherwise it is a node
      // in the output graph.
      Status FindOutputImageOfEdgeSrc(
          const string& src_func_id, const string& dst_func_id,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. src/regexp/syntax/regexp.go

    	OpBeginText                    // matches empty string at beginning of text
    	OpEndText                      // matches empty string at end of text
    	OpWordBoundary                 // matches word boundary `\b`
    	OpNoWordBoundary               // matches word non-boundary `\B`
    	OpCapture                      // capturing subexpression with index Cap, optional name Name
    	OpStar                         // matches Sub[0] zero or more times
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/internal/bytealg/count_amd64.s

    	ANDQ R10, DX
    	POPCNTL DX, DX
    	ADDQ DX, R12
    end:
    	MOVQ R12, (R8)
    	RET
    
    // handle for lengths < 16
    small:
    	TESTQ	BX, BX
    	JEQ	endzero
    
    	// Check if we'll load across a page boundary.
    	LEAQ	16(SI), AX
    	TESTW	$0xff0, AX
    	JEQ	endofpage
    
    	// We must ignore high bytes as they aren't part of our slice.
    	// Create mask.
    	MOVB BX, CX
    	MOVQ $1, R10
    	SALQ CL, R10
    	SUBQ $1, R10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:54:43 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    query.highlight.fragment.size=60
    query.highlight.number.of.fragments=2
    query.highlight.type=fvh
    query.highlight.tag.pre=<strong>
    query.highlight.tag.post=</strong>
    query.highlight.boundary.chars=u0009u000Au0013u0020
    query.highlight.boundary.max.scan=20
    query.highlight.boundary.scanner=chars
    query.highlight.encoder=default
    query.highlight.force.source=false
    query.highlight.fragmenter=span
    query.highlight.fragment.offset=-1
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/map.go

    // toTitlecase(X): Find the word boundaries in X according to Unicode Standard
    // Annex #29, "Unicode Text Segmentation." For each word boundary, find the
    // first cased character F following the word boundary. If F exists, map F to
    // Titlecase_Mapping(F); then map all characters C between F and the following
    // word boundary to Lowercase_Mapping(C).
    func (t *titleCaser) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/gen/arithBoundaryGen.go

    						fmt.Fprintf(w, ", div: %d, mod: %d", icast(i/j, s), icast(i%j, s))
    					}
    					fmt.Fprint(w, "},\n")
    				}
    			}
    			fmt.Fprintf(w, "}\n")
    		}
    	}
    
    	fmt.Fprintf(w, "//TestArithmeticBoundary tests boundary results for arithmetic operations.\n")
    	fmt.Fprintf(w, "func TestArithmeticBoundary(t *testing.T) {\n\n")
    
    	verify, err := template.New("tst").Parse(
    		`if got := {{.Name}}_{{.Stype}}_ssa(v.a, v.b); got != v.{{.Name}} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    	y := uint32(x)
    	return append(dst, byte(y>>24), byte(y>>16), byte(y>>8), byte(y))
    }
    
    // HuffmanEncodeLength returns the number of bytes required to encode
    // s in Huffman codes. The result is round up to byte boundary.
    func HuffmanEncodeLength(s string) uint64 {
    	n := uint64(0)
    	for i := 0; i < len(s); i++ {
    		n += uint64(huffmanCodeLen[s[i]])
    	}
    	return (n + 7) / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    //
    // Returns a ^uint(0) index on failure and the new searchIdx should be ignored.
    //
    // findSmallN assumes npages <= 64, where any such contiguous run of pages
    // crosses at most one aligned 64-bit boundary in the bits.
    func (b *pallocBits) findSmallN(npages uintptr, searchIdx uint) (uint, uint) {
    	end, newSearchIdx := uint(0), ^uint(0)
    	for i := searchIdx / 64; i < uint(len(b)); i++ {
    		bi := b[i]
    		if ^bi == 0 {
    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. pkg/registry/core/service/portallocator/allocator_test.go

    		{
    			name: "very small node port range",
    			args: args{
    				pr: net.PortRange{
    					Base: 30000,
    					Size: 10,
    				},
    			},
    			want: 0,
    		},
    		{
    			name: "small node port range (lower boundary)",
    			args: args{
    				pr: net.PortRange{
    					Base: 30000,
    					Size: 16,
    				},
    			},
    			want: 0,
    		},
    		{
    			name: "small node port range",
    			args: args{
    				pr: net.PortRange{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. src/internal/bytealg/equal_ppc64x.s

    	RET
    
    check0_7:
    	CMP	R5,$0
    	MOVD	$1, R3
    	BEQLR		// return if len == 0
    
    	// Check < 8B loads with a single compare, but select the load address
    	// such that it cannot cross a page boundary. Load a few bytes from the
    	// lower address if that does not cross the lower page. Or, load a few
    	// extra bytes from the higher addresses. And align those values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top