Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for interop (1.04 sec)

  1. src/index/suffixarray/sais.go

    // induceSubL_8_32 leaves behind only the leftmost L-type text
    // index for each LMS-substring. That is, it removes the final S-type
    // indexes that are present on entry, and it inserts but then removes
    // the interior L-type indexes too.
    // (Only the leftmost L-type index is needed by induceSubS_8_32.)
    func induceSubL_8_32(text []byte, sa, freq, bucket []int32) {
    	// Initialize positions for left side of character buckets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. src/encoding/base32/base32.go

    		p = p[i:]
    		if e.nbuf < 5 {
    			return
    		}
    		e.enc.Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:8]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 5 {
    		nn := len(e.out) / 8 * 5
    		if nn > len(p) {
    			nn = len(p)
    			nn -= nn % 5
    		}
    		e.enc.Encode(e.out[0:], p[0:nn])
    		if _, e.err = e.w.Write(e.out[0 : nn/5*8]); e.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    		// No change to our present, so no update of config file.
    		return nil
    	}
    
    	// Flush our extended timeline back out to the configuration file.
    	// If the configuration file has been updated in the interim,
    	// we need to merge any updates made there as well.
    	// Note that writeConfig is an atomic compare-and-swap.
    	for {
    		msg, err := c.ops.ReadConfig(c.name + "/latest")
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. src/encoding/base64/base64.go

    		p = p[i:]
    		if e.nbuf < 3 {
    			return
    		}
    		e.enc.Encode(e.out[:], e.buf[:])
    		if _, e.err = e.w.Write(e.out[:4]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 3 {
    		nn := len(e.out) / 4 * 3
    		if nn > len(p) {
    			nn = len(p)
    			nn -= nn % 3
    		}
    		e.enc.Encode(e.out[:], p[:nn])
    		if _, e.err = e.w.Write(e.out[0 : nn/3*4]); e.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/inline.go

    look for link or image:
    
    	find topmost [ or ![
    	if none, emit literal ]
    	if its inactive, remove and emit literal ]
    	parse ahead to look for rest of link; if none, remove and emit literal ]
    	run process emphasis on the interior,
    	remove opener
    	if this was a link (not an image), set all [ before opener to inactive, to avoid links inside links
    
    process emphasis
    
    	walk forward in list to find a closer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. docs/pt/docs/alternatives.md

    Ele também não controla modelos aninhados muito bem. Então, se o corpo JSON na requisição for um objeto JSON que contém campos internos que contém objetos JSON aninhados, ele não consegue ser validado e documentado apropriadamente.
    
    !!! check "**FastAPI** inspirado para"
        Usar tipos Python para ter um ótimo suporte do editor.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_same_scale.mlir

        %8 = "quantfork.dcast"(%7) : (tensor<!quant.uniform<i8:f32, 0.13170163023705575:-1>>) -> tensor<f32>
        %9 = stablehlo.pad %6, %8, low = [0, 1], high = [2, 1], interior = [0, 2] : (tensor<1x3xf32>, tensor<f32>) -> tensor<3x9xf32>
        %10 = "quantfork.qcast"(%9) {volatile} : (tensor<3x9xf32>) -> tensor<3x9x!quant.uniform<i8:f32, 0.13170163023705575:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. src/go/ast/ast.go

    		// Walk lines, stripping trailing white space and adding to list.
    		for _, l := range cl {
    			lines = append(lines, stripTrailingWhitespace(l))
    		}
    	}
    
    	// Remove leading blank lines; convert runs of
    	// interior blank lines to a single blank line.
    	n := 0
    	for _, line := range lines {
    		if line != "" || n > 0 && lines[n-1] != "" {
    			lines[n] = line
    			n++
    		}
    	}
    	lines = lines[0:n]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux.go

    		word := *((*uintptr)(unsafe.Pointer(&buf[0])))
    		err = ptrace(pokeReq, pid, addr-addr%sizeofPtr, word)
    		if err != nil {
    			return 0, err
    		}
    		data = data[n:]
    	}
    
    	// Interior.
    	for len(data) > sizeofPtr {
    		word := *((*uintptr)(unsafe.Pointer(&data[0])))
    		err = ptrace(pokeReq, pid, addr+uintptr(n), word)
    		if err != nil {
    			return n, err
    		}
    		n += sizeofPtr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/rangefunc/rewrite.go

    		// Unlabeled break or continue that's not nfor must be inside nfor. Leave alone.
    		return x
    	}
    	for i >= 0 && r.forStack[i].nfor != targ {
    		i--
    	}
    	// exitFrom is the index of the loop interior to the target of the control flow,
    	// if such a loop exists (it does not if i == len(r.forStack) - 1)
    	exitFrom := i + 1
    
    	// Compute the value to assign to #next and the specific return to use.
    	var next int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top