Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. doc/go_spec.html

    and <code>0O</code> for binary, and octal literals, respectively.
    </li>
    <li>
    Hexadecimal <a href="#Floating-point_literals">floating-point literals</a> may be written using the prefixes
    <code>0x</code> and <code>0X</code>.
    </li>
    <li>
    The <a href="#Imaginary_literals">imaginary suffix</a> <code>i</code> may be used with any (binary, decimal, hexadecimal)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    // The index must be >= 0 and less than f.NumSettings().
    func (f *http2SettingsFrame) Setting(i int) http2Setting {
    	buf := f.p
    	return http2Setting{
    		ID:  http2SettingID(binary.BigEndian.Uint16(buf[i*6 : i*6+2])),
    		Val: binary.BigEndian.Uint32(buf[i*6+2 : i*6+6]),
    	}
    }
    
    func (f *http2SettingsFrame) NumSettings() int { return len(f.p) / 6 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. ChangeLog.md

    #### Fixes
    
    - [`KT-67218`](https://youtrack.jetbrains.com/issue/KT-67218) Native: nested classes in kx.serialization ProtoBuf produce empty array for release binary
    - [`KT-66390`](https://youtrack.jetbrains.com/issue/KT-66390) Universal binary in included binaries produces universal archive as output
    - [`KT-60817`](https://youtrack.jetbrains.com/issue/KT-60817) K2/N: Fix remaining tests
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    }
    
    // Deprecated: This is maintained to aid in porting old code that is not yet
    // dynamic shape aware and uses broadcasting modes that CHLO does not support.
    // Applies static binary broadcasting to a binary elementwise op.
    // This is a legacy helper to provide general broadcasting support in legacy,
    // static shaped code that relies on non-left-padded broadcasting semantics.
    template <typename BinaryOp>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Made `apiextensions-apiserver` binary linking static (also affects the deb and rpm packages). ([#114226](https://github.com/kubernetes/kubernetes/pull/114226), [@saschagrunert](https://github.com/saschagrunert))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Fixed Windows credential provider, cannot find binary. Windows credential provider binary path may have ".exe" suffix so it is better to use `LookPath()` to support it flexibly. ([#120291](https://github.com/kubernetes/kubernetes/pull/120291), [@lzhecheng](https://github.com/lzhecheng))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		}
    		return types.TUINT32
    	}
    }
    
    func (s *state) ssaOp(op ir.Op, t *types.Type) ssa.Op {
    	etype := s.concreteEtype(t)
    	x, ok := opToSSA[opAndType{op, etype}]
    	if !ok {
    		s.Fatalf("unhandled binary op %v %s", op, etype)
    	}
    	return x
    }
    
    type opAndTwoTypes struct {
    	op     ir.Op
    	etype1 types.Kind
    	etype2 types.Kind
    }
    
    type twoTypes struct {
    	etype1 types.Kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// The keys stored in Data must not overlap with the keys in
    	// the BinaryData field, this is enforced during validation process.
    	// +optional
    	Data map[string]string
    
    	// BinaryData contains the binary data.
    	// Each key must consist of alphanumeric characters, '-', '_' or '.'.
    	// BinaryData can contain byte sequences that are not in the UTF-8 range.
    	// The keys stored in BinaryData must not overlap with the ones in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"binaryData": "BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // The keys stored in Data must not overlap with the keys in
      // the BinaryData field, this is enforced during validation process.
      // +optional
      map<string, string> data = 2;
    
      // BinaryData contains the binary data.
      // Each key must consist of alphanumeric characters, '-', '_' or '.'.
      // BinaryData can contain byte sequences that are not in the UTF-8 range.
      // The keys stored in BinaryData must not overlap with the ones in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top