Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for f64ref (0.1 sec)

  1. android/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/cmd/compile/internal/ssagen/phi.go

    		// Otherwise, give up and insert a new FwdRef and resolve it later.
    		if len(b.Preds) != 1 {
    			break
    		}
    		b = b.Preds[0].Block()
    		if !s.reachable[b.ID] {
    			// This is rare; it happens with oddly interleaved infinite loops in dead code.
    			// See issue 19783.
    			break
    		}
    	}
    	// Generate a FwdRef for the variable and return that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

    func.func @merge_with_ref_type(%arg0: tensor<4x!tf_type.f32ref>, %arg1: tensor<4xf32>) -> tensor<4xf32> {
      %result = tf_executor.graph {
    
    // CHECK: tf_executor.Merge{{.*}}(tensor<4x!tf_type.f32ref>, tensor<4xf32>) -> (tensor<4xf32>, tensor<i32>, !tf_executor.control)
        %value, %idx, %ctlMerge = "tf_executor.Merge"(%arg0, %arg1) : (tensor<4x!tf_type.f32ref>, tensor<4xf32>) -> (tensor<4xf32>, tensor<i32>, !tf_executor.control)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/webapp/css/font-awesome.min.css

    :"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-capti...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
Back to top