Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for f64ref (0.12 sec)

  1. guava/src/com/google/common/base/FinalizableReferenceQueue.java

      final PhantomReference<Object> frqRef;
    
      /** Whether or not the background thread started successfully. */
      final boolean threadStarted;
    
      /** Constructs a new queue. */
      public FinalizableReferenceQueue() {
        // We could start the finalizer lazily, but I'd rather it blow up early.
        queue = new ReferenceQueue<>();
        frqRef = new PhantomReference<>(this, queue);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  2. src/encoding/xml/read_test.go

        <UI8>  112  </UI8>
        <UI16>  6703  </UI16>
        <UI32>  266703  </UI32>
        <UI64>  266703  </UI64>
        <F32>  266.703  </F32>
        <F32Neg>  -266.703  </F32Neg>
        <F64>  266.703  </F64>
        <F64Neg>  -266.703  </F64Neg>
    </WhitespaceValuesParent>
    `
    
    // golang.org/issues/22146
    func TestUnmarshalWhitespaceValues(t *testing.T) {
    	v := WhitespaceValuesParent{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/footer.html

            }
            return currentChapterFileName;
        }
    
        // The media query indicating that a device is a desktop.
        // The `min-width: 64rem` definition should be aligned to
        // the one of `css/manual.css`.
        const desktopMediaQuery = window.matchMedia("screen and (min-width: 64rem)");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/base.css

    @media screen and (min-width: 45rem) {
        .main-content {
            display: flex;
            justify-content: center;
        }
    }
    
    /* User guide navigation appears for desktops */
    @media screen and (min-width: 64rem) {
        .docs-navigation {
            display: block;
            flex: 0 0 auto;
            width: 13.75rem;
        }
    
        .main-content > .appendix,
        .main-content > .book,
        .main-content > .chapter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

      func.func @dont_update_for_ref() -> () {
        // CHECK: () -> tensor<4x!tf_type.f32ref>
        %11 = "tf.VariableV2"() {container = "", device = "", shape = #tf_type.shape<4>, shared_name = ""} : () -> tensor<4x!tf_type.f32ref>
        // CHECK: (tensor<4x!tf_type.f32ref>) -> tensor<4xf32>
        %12 = "tf.Identity"(%11) {device = ""} : (tensor<4x!tf_type.f32ref>) -> tensor<4xf32>
        // CHECK: (tensor<4xf32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    	position: relative;
    }
    
    @media screen and (min-width: 45rem) {
    	.main-content {
    		display: flex;
    	}
    }
    
    /* User guide navigation appears for desktops */
    @media screen and (min-width: 64rem) {
    	.docs-navigation {
    		flex: 0 0 auto;
    		width: 13.75rem;
    	}
    
    	.main-content>.appendix,
    	.main-content>.book,
    	.main-content>.chapter {
    		flex: 0 0 auto;
    		margin: 0 auto;
    	}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "StoreReg", argLength: 1},
    	{name: "LoadReg", argLength: 1},
    
    	// Used during ssa construction. Like Copy, but the arg has not been specified yet.
    	{name: "FwdRef", aux: "Sym", symEffect: "None"},
    
    	// Unknown value. Used for Values whose values don't matter because they are dead code.
    	{name: "Unknown"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    			n.Kind = "type"
    			needType = append(needType, n)
    			continue
    		}
    
    		if (goos == "darwin" || goos == "ios") && strings.HasSuffix(n.C, "Ref") {
    			// For FooRef, find out if FooGetTypeID exists.
    			s := n.C[:len(n.C)-3] + "GetTypeID"
    			n := &Name{Go: s, C: s}
    			names = append(names, n)
    			optional[n] = true
    		}
    
    		// Otherwise, we'll need to find out from gcc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	vars map[ir.Node]*ssa.Value
    
    	// fwdVars are variables that are used before they are defined in the current block.
    	// This map exists just to coalesce multiple references into a single FwdRef op.
    	// *Node is the unique identifier (an ONAME Node) for the variable.
    	fwdVars map[ir.Node]*ssa.Value
    
    	// all defined variables at the end of each block. Indexed by block ID.
    	defvars []map[ir.Node]*ssa.Value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. gradle/verification-keyring.keys

    vdNpmeylqTLpzVcK93f5GlaKxQQJXZ9N5pe4ac9h2waaJ05mi9oE2yR4D6UReUwf
    b/jB5z5Of0QfKcOxcPNPIphk2P73YqIMtou7P80vJJiNRZ8YFGS4gQBoY02UV8Ow
    2fcTK72uB3igoZ32SJIY7rRLMIl5cn1qfdSMeMsLSluSxj1rMUoxgz0ZmOVxS45Q
    14REf+XpYIQyT7NQcfYJrYDCDgWPQ1ABt7ZCcc93okhQVI4DXpJbOJb/Qa3s3wLn
    p/SfXCZ96u3LvmWK3a+DB3F9Y9IXZZledmpxVs7NPlvmnwm2lGWUt2at8ejpt6xi
    SrBu06sq9DoMYKxlmmPkmKda6JGnXtytDAXd/uNZAgKPkiOeDXZVAY69vB6vScdj
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (1)
Back to top