Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for aligned (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // "RIGHT_LEFT".
        StringRef align = op->getAttrOfType<StringAttr>("align").getValue();
        enum Alignment { kLeft, kRight };
    
        // default is RIGHT_LEFT
        Alignment superdiagonal_align = kRight;
        Alignment subdiagonal_align = kLeft;
    
        if (align == "RIGHT_LEFT") {
          superdiagonal_align = kRight;
          subdiagonal_align = kLeft;
        } else if (align == "RIGHT_RIGHT") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-66208`](https://youtrack.jetbrains.com/issue/KT-66208) PowerAssert: some built-in operators are not aligned correctly for some values
    - [`KT-65810`](https://youtrack.jetbrains.com/issue/KT-65810) PowerAssert: Infix transformation doesn't capture full context
    - [`KT-65640`](https://youtrack.jetbrains.com/issue/KT-65640) PowerAssert: Infix function not aligned correctly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	alias := func(pkg, fn, pkg2, fn2 string, archs ...*sys.Arch) {
    		aliased := false
    		for _, a := range archs {
    			if b, ok := intrinsics[intrinsicKey{a, pkg2, fn2}]; ok {
    				intrinsics[intrinsicKey{a, pkg, fn}] = b
    				aliased = true
    			}
    		}
    		if !aliased {
    			panic(fmt.Sprintf("attempted to alias undefined intrinsic: %s.%s", pkg, fn))
    		}
    	}
    
    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. doc/go_spec.html

    <li>For a variable <code>x</code> of any type: <code>unsafe.Alignof(x)</code> is at least 1.
    </li>
    
    <li>For a variable <code>x</code> of struct type: <code>unsafe.Alignof(x)</code> is the largest of
       all the values <code>unsafe.Alignof(x.f)</code> for each field <code>f</code> of <code>x</code>, but at least 1.
    </li>
    
    <li>For a variable <code>x</code> of array type: <code>unsafe.Alignof(x)</code> is the same as
    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. CHANGELOG/CHANGELOG-1.25.md

    - Added a new `align-by-socket` policy option to cpu manager `static` policy.  When enabled CPU's to be aligned at socket boundary rather than NUMA boundary. ([#111278](https://github.com/kubernetes/kubernetes/pull/111278), [@arpitsardhana](https://github.com/arpitsardhana))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.26.md

    - `DynamicKubeletConfig` feature gate has been removed from the API server.
      Dynamic kubelet reconfiguration now can't be used even when older nodes are still
      attempting to rely on it. This is aligned with the Kubernetes version skew policy.
       ([#112643](https://github.com/kubernetes/kubernetes/pull/112643), [@SergeyKanzhelev](https://github.com/SergeyKanzhelev))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.24.md

    ### Signing Release Artifacts
    
    Release artifacts are [signed](https://github.com/kubernetes/enhancements/issues/3031) using [cosign](https://github.com/sigstore/cosign)
    signatures
    and there is experimental support for [verifying image signatures](https://kubernetes.io/docs/tasks/administer-cluster/verify-signed-images/).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.15.md

    - Fix handling of aws-load-balancer-security-groups annotation. Security-Groups assigned with this annotation are no longer modified by kubernetes which is the expected behaviour of most users. Also no unnecessary Security-Groups are created anymore if this annotation is used. ([#88691](https://github.com/kubernetes/kubernetes/pull/88691),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.20.md

      It changes the dual-stack API wrt Service from a single ipFamily field to 3
      fields: ipFamilyPolicy (SingleStack, PreferDualStack, RequireDualStack),
      ipFamilies (a list of families assigned), and clusterIPs (inclusive of
      clusterIP).  Most users do not need to set anything at all, defaulting will
      handle it for them.  Services are single-stack unless the user asks for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.12.md

        * Some refactoring of error/status messages and functions to align with new approach.
    * This PR will leverage subtests on the existing table tests for the scheduler units. ([#63661](https://github.com/kubernetes/kubernetes/pull/63661), [@xchapter7x](https://github.com/xchapter7x))
        * Some refactoring of error/status messages and functions to align with new approach.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top