Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for Float (1.21 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	DCBT (R3)                       // 7c001a2c
    	ICBI (R3)(R4)                   // 7c041fac
    	ICBI (R3)(R0)                   // 7c001fac
    	ICBI (R3)                       // 7c001fac
    
    	// float constants
    	FMOVD $(0.0), F1                // f0210cd0
    	FMOVD $(-0.0), F1               // f0210cd0fc200850
    
    	FMOVD 8(R3), F1                 // c8230008
    	FMOVD (R3)(R4), F1              // 7c241cae
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    index.admin.array.fields=lang,role,label,anchor,virtual_host
    index.admin.date.fields=expires,created,timestamp,last_modified
    index.admin.integer.fields=
    index.admin.long.fields=content_length,favorite_count,click_count
    index.admin.float.fields=boost
    index.admin.double.fields=
    index.admin.required.fields=url,title,role,boost
    
    # timeout
    index.search.timeout=3m
    index.scroll.search.timeout=3m
    index.index.timeout=3m
    index.bulk.timeout=3m
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    They cannot be the types of values or variables, or components of other,
    non-interface types.
    </p>
    
    <pre>
    var x Float                     // illegal: Float is not a basic interface
    
    var x interface{} = Float(nil)  // illegal
    
    type Floatish struct {
    	f Float                 // illegal
    }
    </pre>
    
    <p>
    An interface type <code>T</code> may not embed a type element
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& t1.Size() == t2.Size()
    	&& disjoint(p5, t5.Size(), p2, t2.Size())
    	&& disjoint(p5, t5.Size(), p3, t3.Size())
    	&& disjoint(p5, t5.Size(), p4, t4.Size())
    	=> x
    
    // Pass constants through math.Float{32,64}bits and math.Float{32,64}frombits
    (Load <t1> p1 (Store {t2} p2 (Const64  [x]) _)) && isSamePtr(p1,p2) && sizeof(t2) == 8 && is64BitFloat(t1) && !math.IsNaN(math.Float64frombits(uint64(x))) => (Const64F [math.Float64frombits(uint64(x))])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    		{`package a0; const _ = false`, `false`, `untyped bool`, `false`},
    		{`package a1; const _ = 0`, `0`, `untyped int`, `0`},
    		{`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`},
    		{`package a3; const _ = 0.`, `0.`, `untyped float`, `0`},
    		{`package a4; const _ = 0i`, `0i`, `untyped complex`, `(0 + 0i)`},
    		{`package a5; const _ = "foo"`, `"foo"`, `untyped string`, `"foo"`},
    
    		{`package b0; var _ = false`, `false`, `bool`, `false`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVWstore  [off] {sym} ptr (FMOVSfpgp val) mem) => (FMOVSstore [off] {sym} ptr val mem)
    (FMOVSstore [off] {sym} ptr (FMOVSgpfp val) mem) => (MOVWstore [off] {sym} ptr val mem)
    
    // float <=> int register moves, with no conversion.
    // These come up when compiling math.{Float64bits, Float64frombits, Float32bits, Float32frombits}.
    (MOVDload  [off] {sym} ptr (FMOVDstore [off] {sym} ptr val _)) => (FMOVDfpgp val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_ADMIN_LONG_FIELDS = "index.admin.long.fields";
    
        /** The key of the configuration. e.g. boost */
        String INDEX_ADMIN_FLOAT_FIELDS = "index.admin.float.fields";
    
        /** The key of the configuration. e.g.  */
        String INDEX_ADMIN_DOUBLE_FIELDS = "index.admin.double.fields";
    
        /** The key of the configuration. e.g. url,title,role,boost */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    const c = 15 / 4.0         // c == 3.75  (untyped floating-point constant)
    const Θ float64 = 3/2      // Θ == 1.0   (type float64, 3/2 is integer division)
    const Π float64 = 3/2.     // Π == 1.5   (type float64, 3/2. is float division)
    const d = 1 &lt;&lt; 3.0         // d == 8     (untyped integer constant)
    const e = 1.0 &lt;&lt; 3         // e == 8     (untyped integer constant)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-45604`](https://youtrack.jetbrains.com/issue/KT-45604) KJS / IR: Use `globalThis` instead of top level `this`
    
    #### Fixes
    
    - [`KT-66922`](https://youtrack.jetbrains.com/issue/KT-66922) K2 JS: Intrinsic Float/Double toString producing wrong numbers
    - [`KT-64135`](https://youtrack.jetbrains.com/issue/KT-64135) K2 / KJS: Incorrect value class support when used with inline fun
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top