Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Binary1 (0.22 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <!-- DXF can be the text or binary representation -->
        <glob pattern="*.dxf"/>
      </mime-type>
      <mime-type type="image/vnd.dxf;format=binary">
        <sub-class-of type="image/vnd.dxf"/>
        <_comment>AutoCAD DXF in Binary form</_comment>
        <magic priority="50">
          <match value="AutoCAD Binary DXF\r\n0x1A00" type="string" offset="0"/>
        </magic>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.8.md

    * Fix hyperkube kubelet --experimental-dockershim ([#55250](https://github.com/kubernetes/kubernetes/pull/55250), [@ivan4th](https://github.com/ivan4th))
    * ScaleIO driver completely removes dependency on drv_cfg binary so a Kubernetes cluster can easily run a containerized kubelet. ([#54956](https://github.com/kubernetes/kubernetes/pull/54956), [@vladimirvivien](https://github.com/vladimirvivien))
    
    
    
    # v1.8.3
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.24.md

    ### Bug or Regression
    
    - Fix "dbus: connection closed by user" error after dbus daemon restart
      CVE-2023-27561 CVE-2023-25809 CVE-2023-28642: Bump fix runc v1.1.4 -> v1.1.5
      Fixed cgroup removal error when using runc binary >= 1.1.6 ([#117892](https://github.com/kubernetes/kubernetes/pull/117892), [@kolyshkin](https://github.com/kolyshkin)) [SIG Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  10. 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)
Back to top