Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 5,168 for Size (0.22 sec)

  1. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      int32_t num_strings = offset_.size() - 1;
      // Total bytes include:
      //   * size of content (data_.size)
      //   * offset of each tensor (sizeof(int32_t) * num_strings)
      //   * length of whole buffer (int32_t)
      //   * num of strings (int32_t).
      int32_t bytes = data_.size()                            // size of content
                      + sizeof(int32_t) * (num_strings + 2);  // size of header
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-syscall-steal-proc-simple.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
    GoSyscallBegin dt=1 p_seq=1 stack=0
    GoSyscallEndBlocked dt=1
    EventBatch gen=1 m=1 time=0 size=14
    ProcStatus dt=1 p=2 pstatus=1
    GoStatus dt=1 g=2 m=1 gstatus=2
    ProcSteal dt=1 p=0 p_seq=2 m=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 535 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        public Integer crudMode;
    
        @Required
        @Size(max = 200)
        public String name;
    
        @Size(max = 1000)
        public String description;
    
        @Required
        @UriType(protocolType = ProtocolType.WEB)
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String urls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedUrls;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/google/MultimapSizeTester.java

        assertEquals(expectedSize, multimap.size());
    
        int size = 0;
        for (Entry<K, V> entry : multimap.entries()) {
          assertTrue(multimap.containsEntry(entry.getKey(), entry.getValue()));
          size++;
        }
        assertEquals(expectedSize, size);
    
        int size2 = 0;
        for (Entry<K, Collection<V>> entry2 : multimap.asMap().entrySet()) {
          size2 += entry2.getValue().size();
        }
        assertEquals(expectedSize, size2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

            revisedLines = revisedLines.subList(offsetHead, revisedLines.size() - offsetTail);
    
            original = new int[originalLines.size() + 1];
            revised = new int[revisedLines.size() + 1];
            lcs = new int[originalLines.size() + 1][revisedLines.size() + 1];
    
            for (int i = 0; i < originalLines.size(); i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. pkg/kubelet/images/puller.go

    		imageRef, err := pip.imageService.PullImage(ctx, spec, pullSecrets, podSandboxConfig)
    		var size uint64
    		if err == nil && imageRef != "" {
    			// Getting the image size with best effort, ignoring the error.
    			size, _ = pip.imageService.GetImageSize(ctx, spec)
    		}
    		pullChan <- pullResult{
    			imageRef:     imageRef,
    			imageSize:    size,
    			err:          err,
    			pullDuration: time.Since(startTime),
    		}
    	}()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            qrList = new QueryResponseList(null, 0, 20, 0) {
                @Override
                public int size() {
                    return 20;
                }
            };
            qrList.allRecordCount = 20;
            qrList.calculatePageInfo();
            pnList = qrList.getPageNumberList();
            assertEquals(1, pnList.size());
            assertEquals("1", pnList.get(0));
    
            qrList = new QueryResponseList(null, 0, 20, 0) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. src/runtime/cgocheck.go

    func cgoCheckUsingType(typ *_type, src unsafe.Pointer, off, size uintptr) {
    	if !typ.Pointers() {
    		return
    	}
    
    	// Anything past typ.PtrBytes is not a pointer.
    	if typ.PtrBytes <= off {
    		return
    	}
    	if ptrdataSize := typ.PtrBytes - off; size > ptrdataSize {
    		size = ptrdataSize
    	}
    
    	if typ.Kind_&abi.KindGCProg == 0 {
    		cgoCheckBits(src, typ.GCData, off, size)
    		return
    	}
    	switch typ.Kind_ & abi.KindMask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

          shape.push_back(static_cast<int64_t>(op->window_strides.size()));
          attributes.emplace_back(builder.getNamedAttr(
              "window_strides",
              BuildVhloTensorV1Attr(shape, op->window_strides, builder)));
        } else {
          std::vector<int64_t> data(op->input_spatial_dimensions.size(), 1);
          std::vector<int64_t> shape;
          shape.push_back(static_cast<int64_t>(data.size()));
          attributes.emplace_back(builder.getNamedAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    }
    
    func (m *Endpoint) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *Endpoint) MarshalTo(dAtA []byte) (int, error) {
    	size := m.Size()
    	return m.MarshalToSizedBuffer(dAtA[:size])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
Back to top