Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 65 for boxes (1.52 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/c/eager/c_api_experimental.h

    // APIs for generically dealing with op attributes (e.g. when forwarding them
    // through custom device implementations).
    //
    // TODO(allenl): Currently these are black boxes, but we should have some way to
    // inspect values. This would let people e.g. copy over most attributes and then
    // modify some based on their values.
    
    // A reference to an op's name -> attribute mapping
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  10. src/main/webapp/images/admin/boxed-bg.jpg

    boxed-bg.jpg...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 31 23:16:54 UTC 2017
    - 120.9K bytes
    - Viewed (0)
Back to top