Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Embedded (0.21 sec)

  1. doc/go_spec.html

    in a struct type:
    </p>
    
    <pre>
    struct {
    	T     // conflicts with embedded field *T and *P.T
    	*T    // conflicts with embedded field T and *P.T
    	*P.T  // conflicts with embedded field T and *T
    }
    </pre>
    
    <p>
    A field or <a href="#Method_declarations">method</a> <code>f</code> of an
    embedded field in a struct <code>x</code> is called <i>promoted</i> if
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    	}
    
    	// Extracted session policy name string can be removed as its not useful
    	// at this point.
    	delete(m, sessionPolicyNameExtracted)
    
    	// sessionPolicy is nil and there is embedded policy attached we remove
    	// embedded policy at that point.
    	if _, ok := m[policy.SessionPolicyName]; ok && opts.sessionPolicy == nil {
    		delete(m, policy.SessionPolicyName)
    		m[iamPolicyClaimNameSA()] = inheritedPolicyType
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  3. RELEASE.md

            specified or `NNAPI` CPU Fallback is disabled.
        *   TFLite now supports `tf.math.reciprocal1` op by lowering to `tf.div op`.
        *   TFLite's unpack op now supports boolean tensor inputs.
        *   Microcontroller and embedded code moved from experimental to main
            TensorFlow Lite folder
        *   Check for large TFLite tensors.
        *   Fix GPU delegate crash with C++17.
        *   Add 5D support to TFLite `strided_slice`.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  4. docs/en/docs/release-notes.md

    * Fix body validation error response, do not include body variable when it is not embedded. PR [#1553](https://github.com/tiangolo/fastapi/pull/1553) by [@amacfie](https://github.com/amacfie).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
Back to top