Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Upper (0.09 sec)

  1. ChangeLog.md

    - [`KT-64307`](https://youtrack.jetbrains.com/issue/KT-64307) K2: prefer function with default arguments at lower level to one without them at upper level during callable reference resolve
    - [`KT-64306`](https://youtrack.jetbrains.com/issue/KT-64306) K2: prefer SAM at lower level to a functional type at upper level
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Ref  uint32
    	Node uint32
    }
    
    type TIPCServiceRange struct {
    	Type  uint32
    	Lower uint32
    	Upper uint32
    }
    
    type TIPCServiceName struct {
    	Type     uint32
    	Instance uint32
    	Domain   uint32
    }
    
    type TIPCEvent struct {
    	Event uint32
    	Lower uint32
    	Upper uint32
    	Port  TIPCSocketAddr
    	S     TIPCSubscr
    }
    
    type TIPCGroupReq struct {
    	Type     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      auto lower = builder->create<mhlo::ConstantOp>(
          loc, builder->getI32IntegerAttr(lower_limit));
      auto upper = builder->create<mhlo::ConstantOp>(
          loc, builder->getI32IntegerAttr(upper_limit));
    
      return builder->create<mhlo::RngOp>(loc, lower, upper, shape_tensor,
                                          ::mlir::mhlo::RngDistribution::UNIFORM);
    }
    
    using WhileBodyFnType = llvm::function_ref<void(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    <p>
    For arrays or strings, the indices are <i>in range</i> if
    <code>0</code> &lt;= <code>low</code> &lt;= <code>high</code> &lt;= <code>len(a)</code>,
    otherwise they are <i>out of range</i>.
    For slices, the upper index bound is the slice capacity <code>cap(a)</code> rather than the length.
    A <a href="#Constants">constant</a> index must be non-negative and
    <a href="#Representability">representable</a> by a value of type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	// table used to decode header blocks, in octets. If zero, the default value
    	// of 4096 is used.
    	MaxDecoderHeaderTableSize uint32
    
    	// MaxEncoderHeaderTableSize optionally specifies an upper limit for the
    	// header compression table used for encoding request headers. Received
    	// SETTINGS_HEADER_TABLE_SIZE settings are capped at this limit. If zero,
    	// the default value of 4096 is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: [[SHAPE:%.*]] = mhlo.constant dense<16> : tensor<1xi64>
      // CHECK-DAG: [[LOWER:%.*]] = mhlo.constant dense<0> : tensor<i32>
      // CHECK-DAG: [[UPPER:%.*]] = mhlo.constant dense<-1> : tensor<i32>
      // CHECK: [[RNG:%.*]] = "mhlo.rng"([[LOWER]], [[UPPER]], [[SHAPE]]) <{rng_distribution = #mhlo.rng_distribution<UNIFORM>}>
      // CHECK: [[SORT:%.*]]:2 = "mhlo.sort"([[RNG]], [[INPUT]]) <{dimension = -1 : i64, is_stable = {{.*}}}> ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    - Lower and upper case feature flag values are now allowed, but the name still has to match. ([#121441](https://github.com/kubernetes/kubernetes/pull/121441), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Added scheduler preemption support for pods using `ReadWriteOncePod` PVCs ([#114051](https://github.com/kubernetes/kubernetes/pull/114051),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	Address string
    }
    
    // ResourceName is the name identifying various resources in a ResourceList.
    type ResourceName string
    
    // Resource names must be not more than 63 characters, consisting of upper- or lower-case alphanumeric characters,
    // with the -, _, and . characters allowed anywhere, except the first or last character.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    // maxGMSACredentialSpecLength is the max length, in bytes, for the actual contents
    // of a GMSA cred spec. In general, those shouldn't be more than a few hundred bytes,
    // so we want to give plenty of room here while still providing an upper bound.
    // The runAsUserName field will be used to execute the given container's entrypoint, and
    // it can be formatted as "DOMAIN/USER", where the DOMAIN is optional, maxRunAsUserNameDomainLength
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top