Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GetSize (0.28 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

                    this.attrExpiration = System.currentTimeMillis() + th.getConfig().getAttributeCacheTimeout();
                }
                else if ( info instanceof FileStandardInfo ) {
                    this.size = info.getSize();
                    this.sizeExpiration = System.currentTimeMillis() + th.getConfig().getAttributeCacheTimeout();
                }
                return info;
            }
    
            /*
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

                                tflite::Model::Pack(input_builder, model));
    
      const std::string input_buffer(
          reinterpret_cast<const char*>(input_builder.GetBufferPointer()),
          input_builder.GetSize());
      auto status = mlir::lite::QuantizeModel(
          input_buffer, input_type, output_type, inference_tensor_type,
          /*operator_names=*/{}, disable_per_channel, fully_quantize, output_buffer,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto input = op.getImages();
        auto input_ty = mlir::cast<ShapedType>(input.getType());
        auto input_element_ty = input_ty.getElementType();
        auto out_size = op.getSize();
        auto out_size_ty = mlir::cast<ShapedType>(out_size.getType());
        auto out_size_element_ty = out_size_ty.getElementType();
    
        // Input should be rank 4.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    		/* dynamic symbol table - first entry all zeros */
    		dynsym := ldr.CreateSymForUpdate(".dynsym", 0)
    
    		dynsym.SetType(sym.SELFROSECT)
    		if elf64 {
    			dynsym.SetSize(dynsym.Size() + ELF64SYMSIZE)
    		} else {
    			dynsym.SetSize(dynsym.Size() + ELF32SYMSIZE)
    		}
    
    		/* dynamic string table */
    		dynstr := ldr.CreateSymForUpdate(".dynstr", 0)
    
    		dynstr.SetType(sym.SELFROSECT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    		// contents in symtab.go:symtab().
    		mdsb.SetSize(0)
    
    		// In addition, on ARM, the runtime depends on the linker
    		// recording the value of GOARM.
    		if ctxt.Arch.Family == sys.ARM {
    			goarm := ctxt.loader.LookupOrCreateSym("runtime.goarm", 0)
    			sb := ctxt.loader.MakeSymbolUpdater(goarm)
    			sb.SetType(sym.SDATA)
    			sb.SetSize(0)
    			sb.AddUint8(uint8(buildcfg.GOARM.Version))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top