Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 850 for Size (0.2 sec)

  1. src/crypto/tls/handshake_messages_test.go

    }
    
    func (*endOfEarlyDataMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &endOfEarlyDataMsg{}
    	return reflect.ValueOf(m)
    }
    
    func (*keyUpdateMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &keyUpdateMsg{}
    	m.updateRequested = rand.Intn(10) > 5
    	return reflect.ValueOf(m)
    }
    
    func (*newSessionTicketMsgTLS13) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &newSessionTicketMsgTLS13{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func raceread(uintptr)
    func racewrite(uintptr)
    func racereadrange(addr, size uintptr)
    func racewriterange(addr, size uintptr)
    
    // memory sanitizer
    func msanread(addr, size uintptr)
    func msanwrite(addr, size uintptr)
    func msanmove(dst, src, size uintptr)
    
    // address sanitizer
    func asanread(addr, size uintptr)
    func asanwrite(addr, size uintptr)
    
    func checkptrAlignment(unsafe.Pointer, *byte, uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/end2end/fake_quant_per_channel.pbtxt

        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            dim {
              size: 1
            }
            dim {
              size: 1
            }
            dim {
              size: 1
            }
            dim {
              size: 256
            }
          }
        }
      }
    }
    node {
      name: "BoxPredictor_4/ClassPredictor/weights"
      op: "Const"
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. src/runtime/stack.go

    	}
    	x := c.stackcache[order].list
    	size := c.stackcache[order].size
    	lock(&stackpool[order].item.mu)
    	for size > _StackCacheSize/2 {
    		y := x.ptr().next
    		stackpoolfree(x, order)
    		x = y
    		size -= fixedStack << order
    	}
    	unlock(&stackpool[order].item.mu)
    	c.stackcache[order].list = x
    	c.stackcache[order].size = size
    }
    
    //go:systemstack
    func stackcache_clear(c *mcache) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. src/runtime/mbarrier.go

    func reflectcallmove(typ *_type, dst, src unsafe.Pointer, size uintptr, regs *abi.RegArgs) {
    	if writeBarrier.enabled && typ != nil && typ.Pointers() && size >= goarch.PtrSize {
    		// Pass nil for the type. dst does not point to value of type typ,
    		// but rather points into one, so applying the optimization is not
    		// safe. See the comment on this function.
    		bulkBarrierPreWrite(uintptr(dst), uintptr(src), size, nil)
    	}
    	memmove(dst, src, size)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      OpBuilder b(yield_op);
      llvm::SmallVector<Value, 4> args;
      auto loop_carried_yield_operands =
          yield_op->getOperands().take_front(num_loop_carried);
      args.reserve(loop_carried_yield_operands.size() + new_args.size());
      if (passthru_extra_args) {
        // Add operands of yield to the return, inserting casts if needed.
        for (auto it : llvm::zip_first(loop_carried_yield_operands, types)) {
          auto value = std::get<0>(it);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/BroadcastDispatch.java

                }
            }
    
            @Override
            public boolean isEmpty() {
                return false;
            }
    
            @Override
            public int size() {
                return dispatchers.size();
            }
    
            @Override
            public void dispatch(MethodInvocation message) {
                dispatch(message, dispatchers);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:00:00 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

            op.details.repositories.size() == 2
            op.details.repositories*.id.unique(false).size() == 2
            op.details.repositories[0].name == 'withoutCreds'
            op.details.repositories[1].name == 'withCreds'
            def repo1Id = op.details.repositories[1].id
            def resolvedComponents = op.result.components
            resolvedComponents.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

              format(
                  "estimated size of spliterator after trySplit (%s) is larger than original size (%s)",
                  spliterator.estimateSize(), originalSize));
        }
        if (trySplit != null) {
          if (trySplit.estimateSize() > originalSize) {
            fail(
                format(
                    "estimated size of trySplit result (%s) is larger than original size (%s)",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/index/suffixarray/suffixarray_test.go

    			if testing.Short() && len(data) > 5e6 {
    				data = data[:5e6]
    			}
    			for _, size := range []int{100e3, 500e3, 1e6, 5e6, 10e6, 50e6} {
    				if len(data) < size {
    					continue
    				}
    				data := data[:size]
    				name := fmt.Sprintf("%dK", size/1e3)
    				if size >= 1e6 {
    					name = fmt.Sprintf("%dM", size/1e6)
    				}
    				b.Run("size="+name, func(b *testing.B) {
    					for _, bits := range []int{32, 64} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top