Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 157 for interior (0.19 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    	// https://tools.ietf.org/html/rfc6962#section-2.1
    	h := sha256.New()
    	h.Write(zeroPrefix)
    	h.Write(data)
    	var h1 Hash
    	h.Sum(h1[:0])
    	return h1
    }
    
    // NodeHash returns the hash for an interior tree node with the given left and right hashes.
    func NodeHash(left, right Hash) Hash {
    	// SHA256(0x01 || left || right)
    	// https://tools.ietf.org/html/rfc6962#section-2.1
    	// We use a stack buffer to assemble the hash input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	// “This function accepts command lines that contain a program name; the
    	// program name can be enclosed in quotation marks or not.”
    	//
    	// Unfortunately, it provides no means of escaping interior quotation marks
    	// within that program name, and we have no way to report them here.
    	prog := args[0]
    	mustQuote := len(prog) == 0
    	for i := 0; i < len(prog); i++ {
    		c := prog[i]
    		if c <= ' ' || (c == '"' && i == 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Utf8.java

          }
        }
        return true;
      }
    
      private static boolean isWellFormedSlowPath(byte[] bytes, int off, int end) {
        int index = off;
        while (true) {
          int byte1;
    
          // Optimize for interior runs of ASCII bytes.
          do {
            if (index >= end) {
              return true;
            }
          } while ((byte1 = bytes[index++]) >= 0);
    
          if (byte1 < (byte) 0xE0) {
            // Two-byte form.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 14:11:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Utf8.java

          }
        }
        return true;
      }
    
      private static boolean isWellFormedSlowPath(byte[] bytes, int off, int end) {
        int index = off;
        while (true) {
          int byte1;
    
          // Optimize for interior runs of ASCII bytes.
          do {
            if (index >= end) {
              return true;
            }
          } while ((byte1 = bytes[index++]) >= 0);
    
          if (byte1 < (byte) 0xE0) {
            // Two-byte form.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 14:11:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. src/encoding/ascii85/ascii85.go

    		p = p[i:]
    		if e.nbuf < 4 {
    			return
    		}
    		nout := Encode(e.out[0:], e.buf[0:])
    		if _, e.err = e.w.Write(e.out[0:nout]); e.err != nil {
    			return n, e.err
    		}
    		e.nbuf = 0
    	}
    
    	// Large interior chunks.
    	for len(p) >= 4 {
    		nn := len(e.out) / 5 * 4
    		if nn > len(p) {
    			nn = len(p)
    		}
    		nn -= nn % 4
    		if nn > 0 {
    			nout := Encode(e.out[0:], p[0:nn])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    		}
    		if strings.Contains(text, "//go:build") {
    			check.goBuildLine(pos, text)
    		}
    	}
    	if strings.HasPrefix(text, "/*") {
    		if i := strings.Index(text, "\n"); i >= 0 {
    			// multiline /* */ comment - process interior lines
    			check.inStar = true
    			i++
    			pos += token.Pos(i)
    			text = text[i:]
    			for text != "" {
    				i := strings.Index(text, "\n")
    				if i < 0 {
    					i = len(text)
    				} else {
    					i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      // the merged pad will not change anything, while the un-merged will remove a
      // value, then insert a 0 at its place. This only holds for low and high pads,
      // the spec does not allow negative interior pads, so we don't check there.
      auto low_pads = pad_op.getEdgePaddingLow().getValues<IntegerAttr>();
      auto parent_low_pads =
          parent_pad.getEdgePaddingLow().getValues<IntegerAttr>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/fuse.go

    			return false
    		}
    	}
    	return true
    }
    
    // fuseBlockPlain handles a run of blocks with length >= 2,
    // whose interior has single predecessors and successors,
    // b must be BlockPlain, allowing it to be any node except the
    // last (multiple successors means not BlockPlain).
    // Cycles are handled and merged into b's successor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // Tests that a quantized `stablehlo.pad` without interior padding is
    // converted to `tfl.padv2`.
    
    func.func @pad_without_interior_padding(
        %arg0: tensor<2x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
        %arg1: tensor<!quant.uniform<i8:f32, 2.000000e+00:-1>>
      ) -> tensor<4x5x!quant.uniform<i8:f32, 2.000000e+00:-1>> {
      %0 = stablehlo.pad %arg0, %arg1, low = [0, 1], high = [2, 1], interior = [0, 0] : (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  10. src/runtime/mpallocbits.go

    			newSearchIdx = i*64 + uint(sys.TrailingZeros64(^bi))
    		}
    		start := uint(sys.TrailingZeros64(bi))
    		if end+start >= uint(npages) {
    			return i*64 - end, newSearchIdx
    		}
    		// Next, check the interior of the 64-bit chunk.
    		j := findBitRange64(^bi, uint(npages))
    		if j < 64 {
    			return i*64 + j, newSearchIdx
    		}
    		end = uint(sys.LeadingZeros64(bi))
    	}
    	return ^uint(0), newSearchIdx
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top