Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for GetSize (0.22 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/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        Returns:
          Total size of the directory or a file.
        """
        total = 0
        for root, _, files in os.walk(path):
          for filename in files:
            total += os.path.getsize(os.path.join(root, filename))
        return total
    
      def _any_log_contains(
          self, substring: str, log_record_list: List['logging.LogRecord']
      ) -> bool:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            SearchResponse response = option.apply(client.prepareSearch(index).setScroll(scrollForUpdate).setSize(sizeForUpdate)
                    .setPreference(Constants.SEARCH_PREFERENCE_LOCAL)).execute().actionGet(fessConfig.getIndexScrollSearchTimeout());
    
            int count = 0;
            String scrollId = response.getScrollId();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/link/internal/ppc64/asm.go

    		// The dynamic linker stores the address of the
    		// dynamic resolver and the DSO identifier in the two
    		// doublewords at the beginning of the .plt section
    		// before the PLT array. Reserve space for these.
    		plt.SetSize(16)
    	}
    }
    
    func machoreloc1(*sys.Arch, *ld.OutBuf, *loader.Loader, loader.Sym, loader.ExtReloc, int64) bool {
    	return false
    }
    
    // Return the value of .TOC. for symbol s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/xcoff.go

    	for name, size := range outerSymSize {
    		sym := ldr.Lookup(name, 0)
    		if sym == 0 {
    			Errorf(nil, "unknown outer symbol with name %s", name)
    		} else {
    			s := ldr.MakeSymbolUpdater(sym)
    			s.SetSize(size)
    		}
    	}
    
    	// These symbols won't show up in the first loop below because we
    	// skip sym.STEXT symbols. Normal sym.STEXT symbols are emitted by walking textp.
    	s := ldr.Lookup("runtime.text", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                stream(parameter.getSuggestFields()).of(stream -> stream.forEach(builder::addField));
                roleQueryHelper.build(SearchRequestType.SUGGEST).stream().forEach(builder::addRole);
                builder.setSize(parameter.getNum());
                stream(langs).of(stream -> stream.forEach(builder::addLang));
    
                stream(parameter.getTags()).of(stream -> stream.forEach(builder::addTag));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top