Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 765 for Size (0.06 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

                throw new IllegalArgumentException(
                        "progressed file size cannot be greater than size: " + progressedSize + " > " + size);
            }
    
            if (size >= 0L && progressedSize != size) {
                ScaleUnit unit = ScaleUnit.getScaleUnit(size);
                format(builder, progressedSize, unit, true);
                builder.append("/");
                format(builder, size, unit, false);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/runtime/mksizeclasses.go

    			continue
    		}
    		classes = append(classes, class{size: size, npages: npages})
    	}
    
    	// Increase object sizes if we can fit the same number of larger objects
    	// into the same number of pages. For example, we choose size 8448 above
    	// with 6 objects in 7 pages. But we can well use object size 9472,
    	// which is also 6 objects in 7 pages but +1024 bytes (+12.12%).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/attributes.mlir

      %0 = "tf.ReadVariableOp"(%arg0) {_output_shapes = ["tfshape$dim { size: 1 } dim { size: 3 }"], device = "/device:CPU:0", dtype = !tf_type.quint8} : (tensor<!tf_type.resource<tensor<1x3x!tf_type.quint8>>>) -> tensor<1x3x!tf_type.quint8>
    
      // CHECK: tf.ReadVariableOp
      // CHECK-SAME: dtype = !corert.quint16
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-task-across-generations.test

    SUCCESS
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=15
    ProcStatus dt=1 p=0 pstatus=1
    GoStatus dt=1 g=1 m=0 gstatus=2
    UserTaskBegin dt=1 task=2 parent_task=0 name_string=1 stack=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=11
    Strings
    String id=1
    	data="my task"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 767 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

                it.getModel(GradleBuild)
            }
    
            expect:
            model.includedBuilds.size() == 1
    
            def included = model.includedBuilds[0]
            included.buildIdentifier.rootDir == file("child")
            included.includedBuilds.size() == 1
            included.editableBuilds.empty
    
            model.editableBuilds.size() == 5
    
            def buildSrc = model.editableBuilds[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_layout_helper.cc

                               int inner_size) {
      if (attr.empty()) return attr;
    
      assert(attr.size() % inner_size == 0);
      assert(attr.size() / inner_size == permutation.size());
    
      SmallVector<Attribute, 8> values{attr.begin(), attr.end()};
      SmallVector<Attribute, 8> shuffled(values.size());
    
      for (size_t i = 0; i < permutation.size(); ++i) {
        for (size_t j = 0; j < inner_size; ++j) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/runtime/msize.go

    // Malloc small size classes.
    //
    // See malloc.go for overview.
    // See also mksizeclasses.go for how we decide what size classes to use.
    
    package runtime
    
    // Returns size of the memory block that mallocgc will allocate if you ask for the size,
    // minus any inline space for metadata.
    func roundupsize(size uintptr, noscan bool) (reqSize uintptr) {
    	reqSize = size
    	if reqSize <= maxSmallSize-mallocHeaderSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/style.css

        font-size: 12pt;
        margin: 3em;
        color: #444;
    }
    
    h2 {
        font-size: 14pt;
        margin-top: 2em;
    }
    
    h3 {
        margin-top: 2em;
        margin-bottom: 1.4em;
    }
    
    #footer {
        margin-top: 4em;
        font-size: 8pt;
    }
    
    table {
        border-collapse: collapse;
    }
    
    table.history, table.test-details {
        margin-top: 20px;
        font-size: 10pt;
    }
    
    th, td {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/slices/sort_benchmark_test.go

    			}
    		})
    	}
    }
    
    func BenchmarkSortFuncStruct(b *testing.B) {
    	for _, size := range []int{16, 32, 64, 128, 512, 1024} {
    		b.Run(fmt.Sprintf("Size%d", size), func(b *testing.B) {
    			structs := make([]*myStruct, size)
    			for i := range structs {
    				structs[i] = &myStruct{
    					a: fmt.Sprintf("string%d", i%10),
    					n: i * 11 % size,
    				}
    			}
    			cmpFunc := func(a, b *myStruct) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. src/slices/iter_test.go

    	for size := 0; size < 10; size++ {
    		var s []int
    		for i := range size {
    			s = append(s, i)
    		}
    		ei, ev := size-1, size-1
    		cnt := 0
    		for i, v := range Backward(s) {
    			if i != ei || v != ev {
    				t.Errorf("at iteration %d got %d, %d want %d, %d", cnt, i, v, ei, ev)
    			}
    			ei--
    			ev--
    			cnt++
    		}
    		if cnt != size {
    			t.Errorf("read %d values expected %d", cnt, size)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top