Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for Raisin (0.16 sec)

  1. okhttp/src/test/java/okhttp3/ConnectionListenerTest.kt

     */
    package okhttp3
    
    import assertk.assertThat
    import assertk.assertions.containsExactly
    import assertk.assertions.hasMessage
    import assertk.assertions.isEqualTo
    import assertk.assertions.isIn
    import java.io.IOException
    import java.net.InetSocketAddress
    import java.net.UnknownHostException
    import java.time.Duration
    import java.util.Arrays
    import java.util.concurrent.TimeUnit
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad_test.cc

    }
    
    TEST_F(CWiseUnaryGradTest, Asin) {
      auto x_fn = [this](const int i) { return RV({0, 0.25, -0.25, -0.5, 0.5}); };
      TestCWiseGrad<float, float>(ASIN, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Asin_Complex) {
      auto x_fn = [this](const int i) {
        return CRV({{0.5, 0}, {0, 0.5}, {0.25, -0.75}, {0.5, 0.25}});
      };
      // TODO(kbsriram)
      // Enable test when the asin kernel supports complex numbers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

        return false;
      }
    
      // If any of the result types are variants, don't try to constant fold them.
      // This creates opaque variant constants which lose information and would
      // require "raising" later.
      for (const Type type : inst->getResultTypes()) {
        if (const TensorType tensor_type = mlir::dyn_cast<TensorType>(type)) {
          if (mlir::isa<VariantType>(tensor_type.getElementType())) {
            return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. docs/fr/docs/async.md

    Donc pour équilibrer tout ça, imaginez l'histoire suivante :
    
    > Vous devez nettoyer une grande et sale maison.
    
    *Oui, c'est toute l'histoire*.
    
    ---
    
    Il n'y a plus d'attente 🕙 nulle part, juste beaucoup de travail à effectuer, dans différentes pièces de la maison.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. docs/tr/docs/benchmarks.md

        * Eğer Uvicorn'u karşılaştırıyorsanız, Daphne, Hypercorn, uWSGI, vb. uygulama sunucuları ile karşılaştırın.
    * **Starlette**:
        * Uvicorn'dan sonraki en iyi performansa sahip olacaktır. İşin aslı, Starlette çalışmak için Uvicorn'u kullanıyor. Dolayısıyla, daha fazla kod çalıştırmaası gerektiğinden muhtemelen Uvicorn'dan sadece "daha yavaş" olabilir.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 14:10:30 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. docs/az/docs/index.md

    * 2 interaktiv sənədləşmə veb interfeysini birbaşa təmin edəcək.
    
    ---
    
    Yeni başlamışıq, amma siz artıq işin məntiqini başa düşmüsünüz.
    
    İndi aşağıdakı sətri dəyişdirməyə çalışın:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...bundan:
    
    ```Python
            ... "item_name": item.name ...
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. src/time/zoneinfo_windows.go

    	if i < 0 {
    		i += 7
    	}
    	day += i
    	if week := int(d.Day) - 1; week < 4 {
    		day += week * 7
    	} else {
    		// "Last" instance of the day.
    		day += 4 * 7
    		if day > daysIn(Month(d.Month), year) {
    			day -= 7
    		}
    	}
    	return t.sec() + int64(day-1)*secondsPerDay + internalToUnix
    }
    
    func initLocalFromTZI(i *syscall.Timezoneinformation) {
    	l := &localLoc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

      mlir::OpPassManager& func_pm = pm_.nest<mlir::func::FuncOp>();
    
      // Prepare the imported graph.
      func_pm.addPass(mlir::CreateExecutorDialectToFunctionalConversionPass());
    
      // Run TFR lowering, inlining and raising to tf.
      func_pm.addPass(mlir::TFR::CreateDecomposeTFOpsPass(tfr_module_));
      func_pm.addPass(mlir::TFR::CreateRaiseToTFOpsPass(
          tfr_module_, /*materialize_derived_attrs=*/true));
    
      // Prepare to be exported.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    // Binary op patterns.
    // Note that these are legalized from chlo.broadcast_* ops, since those are
    // semantically compatible with the corresponding TF ops. Depending on
    // context, getting to these ops may require some raising.
    //===----------------------------------------------------------------------===//
    
    foreach fromToBinPair = [[MHLO_AddOp, CHLO_BroadcastAddOp, TF_AddV2Op],
                             [MHLO_DivOp, CHLO_BroadcastDivOp, TF_DivOp],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. src/time/time_test.go

    	{2011, 12, 31}, // December, last month, 31 days
    }
    
    func TestDaysIn(t *testing.T) {
    	// The daysIn function is not exported.
    	// Test the daysIn function via the `var DaysIn = daysIn`
    	// statement in the internal_test.go file.
    	for _, tt := range daysInTests {
    		di := DaysIn(Month(tt.month), tt.year)
    		if di != tt.di {
    			t.Errorf("got %d; expected %d for %d-%02d",
    				di, tt.di, tt.year, tt.month)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top