Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for Size (0.07 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 1000 */
        String PAGE_USER_MAX_FETCH_SIZE = "page.user.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_ROLE_MAX_FETCH_SIZE = "page.role.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_GROUP_MAX_FETCH_SIZE = "page.group.max.fetch.size";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      }
    
      auto shape_large = shape_x.size() > shape_y.size() ? shape_x : shape_y;
      auto shape_small = shape_x.size() <= shape_y.size() ? shape_x : shape_y;
    
      llvm::SmallVector<int64_t, 4> broadcast_dimensions;
      // Explicit broadcast dimensions.
      for (const APInt &int_value : broadcast_dimensions_attr) {
        broadcast_dimensions.push_back(int_value.getSExtValue());
      }
      if (broadcast_dimensions.size() != shape_small.size()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		var op ssa.Op
    		if ft.Size() == tt.Size() {
    			switch ft.Size() {
    			case 8:
    				op = ssa.OpRound32F
    			case 16:
    				op = ssa.OpRound64F
    			default:
    				s.Fatalf("weird complex conversion %v -> %v", ft, tt)
    			}
    		} else if ft.Size() == 8 && tt.Size() == 16 {
    			op = ssa.OpCvt32Fto64F
    		} else if ft.Size() == 16 && tt.Size() == 8 {
    			op = ssa.OpCvt64Fto32F
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    }
    
    func http2getDataBufferChunk(size int64) []byte {
    	switch {
    	case size <= 1<<10:
    		return http2dataChunkPools[0].Get().(*[1 << 10]byte)[:]
    	case size <= 2<<10:
    		return http2dataChunkPools[1].Get().(*[2 << 10]byte)[:]
    	case size <= 4<<10:
    		return http2dataChunkPools[2].Get().(*[4 << 10]byte)[:]
    	case size <= 8<<10:
    		return http2dataChunkPools[3].Get().(*[8 << 10]byte)[:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    "min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"fit-content":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-temp...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Blksize          uint32
    	Attributes       uint64
    	Nlink            uint32
    	Uid              uint32
    	Gid              uint32
    	Mode             uint16
    	_                [1]uint16
    	Ino              uint64
    	Size             uint64
    	Blocks           uint64
    	Attributes_mask  uint64
    	Atime            StatxTimestamp
    	Btime            StatxTimestamp
    	Ctime            StatxTimestamp
    	Mtime            StatxTimestamp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %0 = "tf.Const"() {value = dense<"Unable to broadcast: dimension size mismatch in dimension"> : tensor<!tf_type.string>} : () -> tensor<!tf_type.string>
      %1 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  8. doc/go_spec.html

    make(T, n)       channel      buffered channel of type T, buffer size n
    </pre>
    
    <p>
    Each of the size arguments <code>n</code> and <code>m</code> must be of <a href="#Numeric_types">integer type</a>,
    have a <a href="#Interface_types">type set</a> containing only integer types,
    or be an untyped <a href="#Constants">constant</a>.
    A constant size argument must be non-negative and <a href="#Representability">representable</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. prow/config/calico.yaml

                      map.  This map must be large enough to hold an entry for each active
                      connection.  Warning: changing the size of the conntrack map can
                      cause disruption.'
                    type: integer
                  bpfMapSizeIPSets:
                    description: BPFMapSizeIPSets sets the size for ipsets map.  The IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: t.Size() == 4 && t.IsFloat()
    	// result: (FMOVSstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 4 && t.IsFloat()) {
    			break
    		}
    		v.reset(OpPPC64FMOVSstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 8 && !t.IsFloat()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top