Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Size (0.37 sec)

  1. src/cmd/compile/internal/ssa/rewritegeneric.go

    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (Load <t1> p1 (Store {t2} p2 _ (Store {t3} p3 _ (Store {t4} p4 x _))))
    	// cond: isSamePtr(p1, p4) && t1.Compare(x.Type) == types.CMPeq && t1.Size() == t2.Size() && disjoint(p4, t4.Size(), p2, t2.Size()) && disjoint(p4, t4.Size(), p3, t3.Size())
    	// result: x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    With inconsistent num_segments, the op still runs. only difference is,
    the output takes the size of num_segments irrespective of size of segment_ids and data.
    for num_segments less than expected output size, the last elements are ignored
    for num_segments more than the expected output size, last elements are assigned 
    smallest possible value for the specific numeric type.
    
    For example:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*AddrType).Common", Method, 0},
    		{"(*AddrType).Size", Method, 0},
    		{"(*AddrType).String", Method, 0},
    		{"(*ArrayType).Common", Method, 0},
    		{"(*ArrayType).Size", Method, 0},
    		{"(*ArrayType).String", Method, 0},
    		{"(*BasicType).Basic", Method, 0},
    		{"(*BasicType).Common", Method, 0},
    		{"(*BasicType).Size", Method, 0},
    		{"(*BasicType).String", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. cmd/testdata/xl-many-parts.meta

    �`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�&�m�Size�
    6m:M�MTime�{���t�MetaSys��X-Minio-Internal-actual-size�56720007533�#x-minio-internal-replication-status�^arn:minio:replication::36280125-1e9d-414e-bff5-8c88a1b5352e:disney-prod-vod-repository=FAILED;�9X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key��eyJhZWFkIj...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 02 21:40:38 UTC 2023
    - 808.8K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          rule: self.all(key, key.size() != 0)
                    type: object
                type: object
                x-kubernetes-validations:
                - message: portLevelMtls requires selector
                  rule: (has(self.selector) && has(self.selector.matchLabels) && self.selector.matchLabels.size()
                    > 0) || !has(self.portLevelMtls)
              status:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                          rule: self.all(key, key.size() != 0)
                    type: object
                type: object
                x-kubernetes-validations:
                - message: portLevelMtls requires selector
                  rule: (has(self.selector) && has(self.selector.matchLabels) && self.selector.matchLabels.size()
                    > 0) || !has(self.portLevelMtls)
              status:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/gateway-api-crd.yaml

                      rule: '!(has(self.caCertificateRefs) && size(self.caCertificateRefs)
                        > 0 && has(self.wellKnownCACertificates) && self.wellKnownCACertificates
                        != "")'
                    - message: must specify either CACertificateRefs or WellKnownCACertificates
                      rule: (has(self.caCertificateRefs) && size(self.caCertificateRefs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

          op: "Const"
          attr {
            key: "_output_shapes"
            value {
              list {
                shape {
                  dim {
                    size: 150
                  }
                  dim {
                    size: 150
                  }
                }
              }
            }
          }
          attr {
            key: "dtype"
            value {
              type: DT_DOUBLE
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM64.go

    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 1
    	// result: (MOVBstore ptr val mem)
    	for {
    		t := auxToType(v.Aux)
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		if !(t.Size() == 1) {
    			break
    		}
    		v.reset(OpARM64MOVBstore)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    	// match: (Store {t} ptr val mem)
    	// cond: t.Size() == 2
    	// result: (MOVHstore ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	b := v.Block
    	// match: (MOVLf2i <t> (Arg <u> [off] {sym}))
    	// cond: t.Size() == u.Size()
    	// result: @b.Func.Entry (Arg <t> [off] {sym})
    	for {
    		t := v.Type
    		if v_0.Op != OpArg {
    			break
    		}
    		u := v_0.Type
    		off := auxIntToInt32(v_0.AuxInt)
    		sym := auxToSym(v_0.Aux)
    		if !(t.Size() == u.Size()) {
    			break
    		}
    		b = b.Func.Entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top