Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for boxes (0.12 sec)

  1. tensorflow/cc/gradients/image_grad_test.cc

          data_flat(i) = T(i);
        }
        return data;
      }
    
      template <typename T>
      void MakeOp(const Tensor& x_data, const Input& boxes, const Input& box_ind,
                  const Input& crop_size, Output* x, Output* y) {
        *x = Const<T>(scope_, x_data);
        *y = CropAndResize(scope_, *x, boxes, box_ind, crop_size,
                           CropAndResize::Method("bilinear"));
        TF_ASSERT_OK(scope_.status());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 04:08:05 UTC 2019
    - 12.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/jcifs/smb1/util/DES.java

            int count = length / 8;
    
            for (int i=0; i<count; i++)
                encrypt(cipherText, i*8, clearText, i*8);
    
            return clearText;
        }
    
    
        // Tables, permutations, S-boxes, etc.
    
        private static byte[] bytebit = {
            (byte)0x80, (byte)0x40, (byte)0x20, (byte)0x10,
            (byte)0x08, (byte)0x04, (byte)0x02, (byte)0x01
        };
        private static int[] bigbyte = {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    		if attrs.URL != "" {
    			attr += fmt.Sprintf(` URL="%s" target="_blank"`, attrs.URL)
    		}
    	}
    
    	fmt.Fprintf(b, "N%d [%s]\n", nodeID, attr)
    }
    
    // addNodelets generates the DOT boxes for the node tags if they exist.
    func (b *builder) addNodelets(node *Node, nodeID int) bool {
    	var nodelets string
    
    	// Populate two Tag slices, one for LabelTags and one for NumericTags.
    	var ts []*Tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  8. src/net/conf.go

    	// systems did not support the go resolver.
    	// Keep it this way for better compatibility.
    	// Perhaps we can revisit this some day.
    	case "windows", "plan9":
    		return true
    
    	// Darwin pops up annoying dialog boxes if programs try to
    	// do their own DNS requests, so prefer cgo.
    	case "darwin", "ios":
    		return true
    
    	// DNS requests don't work on Android, so prefer the cgo resolver.
    	// Issue #10714.
    	case "android":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. docs/en/docs/contributing.md

    * Do not change anything enclosed in "``" (inline code).
    
    * In lines starting with `===` or `!!!`, translate only the ` "... Text ..."` part. Leave the rest unchanged.
    
    * You can translate info boxes like `!!! warning` with for example `!!! warning "Achtung"`. But do not change the word immediately after the `!!!`, it determines the color of the info box.
    
    * Do not change the paths in links to images, code files, Markdown documents.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * where the compiled class files are placed
    
    You can see how these relate to one another in this diagram:
    
    .Source sets and Java compilation
    image::java-sourcesets-compilation.png[]
    
    The shaded boxes represent properties of the source set itself.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
Back to top