Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for boxes (0.07 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    #stack-holder {
      width: 100%;
      flex-grow: 1;
      overflow-y: auto;
      background: #eee; /* Light grey gives better contrast with boxes */
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Flame graph */
    #stack-chart {
      width: 100%;
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Shows details of frame that is under the mouse */
    #current-details {
      position: absolute;
      top: 5px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

    }
    
    }  // namespace
    
    void ConvertNMSPaddedFunc::RewriteFunc() {
      func_->setAttr(kTFImplements,
                     StringAttr::get(func_.getContext(), kTfNMSPadded));
      Value boxes = func_.getArgument(0);
      Value scores = func_.getArgument(1);
      Value max_output_size = func_.getArgument(2);
      Value iou_threshold = func_.getArgument(3);
      Value score_threshold = func_.getArgument(4);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/README.md

    ```
    
    where the `[*]` represents a routing decision, and all of the boxes except in the top row
    represent netfilter hooks. More detailed versions of this diagram can be seen at
    https://en.wikipedia.org/wiki/Netfilter#/media/File:Netfilter-packet-flow.svg and
    https://wiki.nftables.org/wiki-nftables/index.php/Netfilter_hooks but note that in the the
    standard version of this diagram, the top two boxes are squished together into "local
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      let matches = new Set();  // Indices of sources that match search
      let elems = new Map();    // Mapping from source index to display elements
      let displayList = [];     // List of boxes to display.
      let actionMenuOn = false; // Is action menu visible?
      let actionTarget = null;  // Box on which action menu is operating.
      let diff = false;         // Are we displaying a diff?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeNonMaxSuppressionV4 : Pat<
      (TF_NonMaxSuppressionV4Op $boxes, $scores, $max_output_size, $iou_threshold,
        $score_threshold, $pad_to_max_output_size),
      (TFL_NonMaxSuppressionV4Op $boxes, $scores, $max_output_size, $iou_threshold,
        $score_threshold)>;
    
    def LegalizeNonMaxSuppressionV5 : Pat<
      (TF_NonMaxSuppressionV5Op $boxes, $scores, $max_output_size, $iou_threshold,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      TFL_OperandHasRank<4, 0>]> {
      let summary = [{
    Greedily selects a subset of bounding boxes in descending order of score,
      }];
    
      let description = [{
    pruning away boxes that have high intersection-over-union (IOU) overlap
    with previously selected boxes.  Bounding boxes with score less than
    `score_threshold` are removed.  Bounding boxes are supplied as
    [y1, x1, y2, x2], where (y1, x1) and (y2, x2) are the coordinates of any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    // data flow analysis in the future, which will enable more optimizations.
    // This could happen in two steps:
    // (1) build multiple dependency chains (one per variable), still treating
    //     function/subgraph calls as black boxes (i.e., all variables would
    //     be assumed to be read and modified within control operations)
    // (2) Extend the variable dependency analysis across function boundaries.
    class PinOpsWithSideEffectsPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

        private void unbox(String boxedType, String unboxMethod, String unboxMethodDescriptor) {
            _CHECKCAST(boxedType);
            _INVOKEVIRTUAL(boxedType, unboxMethod, unboxMethodDescriptor);
        }
    
        /**
         * Boxes the value at the top of the stack, if primitive
         */
        public void _AUTOBOX(Class<?> valueClass, Type valueType) {
            if (valueClass.isPrimitive()) {
                // Box value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = [{
    Greedily selects a subset of bounding boxes in descending order of score,
      }];
    
      let description = [{
    pruning away boxes that have high intersection-over-union (IOU) overlap
    with previously selected boxes.  Bounding boxes with score less than
    `score_threshold` are removed.  Bounding boxes are supplied as
    [y1, x1, y2, x2], where (y1, x1) and (y2, x2) are the coordinates of any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. src/crypto/aes/aes_test.go

    						s ^= powx[k+l]
    					}
    				}
    			}
    			if x := mul(i, j); x != uint32(s) {
    				t.Fatalf("mul(%#x, %#x) = %#x, want %#x", i, j, x, s)
    			}
    		}
    	}
    }
    
    // Check that S-boxes are inverses of each other.
    // They have more structure that we could test,
    // but if this sanity check passes, we'll assume
    // the cut and paste from the FIPS PDF worked.
    func TestSboxes(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top