Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for var_y_data (0.16 sec)

  1. tensorflow/compiler/aot/tests/tfcompile_test.cc

      VariableSequentialUpdatesComp fn;
      fn.var_x() = 2;
      *const_cast<float*>(fn.var_y_data()) = 1;
    
      fn.set_thread_pool(&device);
      // First calculate x[3]
      fn.Run();
      EXPECT_NEAR(fn.var_x(), 1.187f, 1e-6);
    
      const float y = 1;
      fn.set_var_y_data(&y);
    
      // Now const_cast<float*>(fn.var_y_data()) is not longer legal since we've set
      // the buffer to point to a constant location.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  2. src/crypto/tls/ticket.go

    	//       opaque secret<1..2^8-1>;
    	//       Extra extra<0..2^24-1>;
    	//       uint8 ext_master_secret = { 0, 1 };
    	//       uint8 early_data = { 0, 1 };
    	//       CertificateEntry certificate_list<0..2^24-1>;
    	//       CertificateChain verified_chains<0..2^24-1>; /* excluding leaf */
    	//       select (SessionState.early_data) {
    	//           case 0: Empty;
    	//           case 1: opaque alpn<1..2^8-1>;
    	//       };
    	//       select (SessionState.type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/codegen_test_h.golden

      //
      // void set_var_X_data(T* data)
      //   Sets the buffer for variable X.  Must be called before Run if the
      //   allocation mode is RESULTS_PROFILES_AND_TEMPS_ONLY.
      //
      // T* var_X_data()
      //   Returns the buffer of type T for variable X.  If the allocation mode is
      //   RESULTS_PROFILES_AND_TEMPS_ONLY then this buffer is the same as the
      //   buffer passed to set_var_X_data.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen.cc

      //
      // void set_var_X_data(T* data)
      //   Sets the buffer for variable X.  Must be called before Run if the
      //   allocation mode is RESULTS_PROFILES_AND_TEMPS_ONLY.
      //
      // T* var_X_data()
      //   Returns the buffer of type T for variable X.  If the allocation mode is
      //   RESULTS_PROFILES_AND_TEMPS_ONLY then this buffer is the same as the
      //   buffer passed to set_var_X_data.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_tls13.go

    		}
    	}
    
    	if !hs.hello.earlyData && encryptedExtensions.earlyData {
    		c.sendAlert(alertUnsupportedExtension)
    		return errors.New("tls: server sent an unexpected early_data extension")
    	}
    	if hs.hello.earlyData && !encryptedExtensions.earlyData {
    		c.quicRejectedEarlyData()
    	}
    	if encryptedExtensions.earlyData {
    		if hs.session.cipherSuite != c.cipherSuite {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_tls13.go

    	}
    
    	if hs.clientHello.earlyData && c.quic != nil {
    		if len(hs.clientHello.pskIdentities) == 0 {
    			c.sendAlert(alertIllegalParameter)
    			return errors.New("tls: early_data without pre_shared_key")
    		}
    	} else if hs.clientHello.earlyData {
    		// See RFC 8446, Section 4.2.10 for the complicated behavior required
    		// here. The scenario is that a different server at our address offered
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/config/validators/minimum_clusters/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/early_data/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/dependency/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/common/fault/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="https://tools.ietf.org/html/rfc8470">{@code Early-Data}</a> header field
       * name.
       *
       * @since 27.0
       */
      public static final String EARLY_DATA = "Early-Data";
      /** The HTTP {@code Expect} header field name. */
      public static final String EXPECT = "Expect";
      /** The HTTP {@code From} header field name. */
      public static final String FROM = "From";
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="https://tools.ietf.org/html/rfc8470">{@code Early-Data}</a> header field
       * name.
       *
       * @since 27.0
       */
      public static final String EARLY_DATA = "Early-Data";
      /** The HTTP {@code Expect} header field name. */
      public static final String EXPECT = "Expect";
      /** The HTTP {@code From} header field name. */
      public static final String FROM = "From";
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
Back to top