Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for Sizes (0.1 sec)

  1. src/math/big/int_test.go

    	y := new(Int)
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		x.DivMod(aa, bb, y)
    	}
    }
    
    func BenchmarkDiv(b *testing.B) {
    	sizes := []int{
    		10, 20, 50, 100, 200, 500, 1000,
    		1e4, 1e5, 1e6, 1e7,
    	}
    	for _, i := range sizes {
    		j := 2 * i
    		b.Run(fmt.Sprintf("%d/%d", j, i), func(b *testing.B) {
    			benchmarkDiv(b, j, i)
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      // Move binary op before reshape:
      // binary(reshape(lhs), reshape(rhs)) => reshape(binary(lhs, rhs))
      // This is valid only when both side of the binary operand is reshaped, and
      // the sizes are the same both before and after the reshape.
      def MoveBinaryOpBeforeReshape#BinaryOp : Pat<
        (BinaryOp (TFL_ReshapeOp:$lhs $input1, (Arith_ConstantOp:$shape1 $s1)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        }
    
        private boolean sameIncomingEdgesAsPreviousPass(int incomingEdgeCount) {
            // This is a heuristic, more than truth: it is possible that the 2 long hashs
            // are identical AND that the sizes of collections are identical, but it's
            // extremely unlikely (never happened on test cases even on large dependency graph)
            return cachedModuleResolutionFilter != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. src/runtime/mbitmap.go

    // heapBitsInSpan returns true if the size of an object implies its ptr/scalar
    // data is stored at the end of the span, and is accessible via span.heapBits.
    //
    // Note: this works for both rounded-up sizes (span.elemsize) and unrounded
    // type sizes because minSizeForMallocHeader is guaranteed to be at a size
    // class boundary.
    //
    //go:nosplit
    func heapBitsInSpan(userSize uintptr) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. cmd/test-utils_test.go

    	}
    }
    
    // Uploads an object using DummyDataGen directly via the http
    // handler. Each part in a multipart object is a new DummyDataGen
    // instance (so the part sizes are needed to reconstruct the whole
    // object). When `len(partSizes) == 1`, asMultipart is used to upload
    // the object as multipart with 1 part or as a regular single object.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {
    	// It is always safe to convert memmove into Move when its arguments are disjoint.
    	// Move ops may or may not be faster for large sizes depending on how the platform
    	// lowers them, so we only perform this optimization on platforms that we know to
    	// have fast Move ops.
    	switch c.arch {
    	case "amd64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

    :root {
        /* body, block and code fonts */
        --body-font-family: Lato, Arial, Helvetica, sans-serif;
        --block-font-family: Lato, Georgia, "Times New Roman", Times, serif;
        --code-font-family: monospace;
        /* Base font sizes for body and code elements */
        --body-font-size: 14px;
        --code-font-size: 14px;
        /* Text colors for body and block elements */
        --body-text-color: #353833;
        --block-text-color: #474747;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. src/os/os_test.go

    			t.Fatalf("RemoveAll failed: %v", err)
    		}
    	}(tmpdir)
    
    	// Test the boundary of 247 and fewer bytes (normal) and 248 and more bytes (adjusted).
    	sizes := []int{247, 248, 249, 400}
    	for len(tmpdir) < 400 {
    		tmpdir += "/dir3456789"
    	}
    	for _, sz := range sizes {
    		t.Run(fmt.Sprintf("length=%d", sz), func(t *testing.T) {
    			sizedTempDir := tmpdir[:sz-1] + "x" // Ensure it does not end with a slash.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller.go

    	generation, err := util.GetTemplateGeneration(ds)
    	if err != nil {
    		generation = nil
    	}
    	template := util.CreatePodTemplate(ds.Spec.Template, generation, hash)
    	// Batch the pod creates. Batch sizes start at SlowStartInitialBatchSize
    	// and double with each successful iteration in a kind of "slow start".
    	// This handles attempts to start large numbers of pods that would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    		return i
    	}
    	// symbol already exists
    	if osym.Dupok() {
    		if l.flags&FlagStrictDups != 0 {
    			l.checkdup(name, r, li, oldi)
    		}
    		// Fix for issue #47185 -- given two dupok symbols with
    		// different sizes, favor symbol with larger size. See
    		// also issue #46653.
    		szdup := l.SymSize(oldi)
    		sz := int64(r.Sym(li).Siz())
    		if szdup < sz {
    			// new symbol overwrites old symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top