Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Raisin (0.23 sec)

  1. docs/tr/docs/tutorial/cookie-params.md

    === "Python 3.10+ non-Annotated"
    
        !!! tip "İpucu"
            Mümkün mertebe 'Annotated' sınıfını kullanmaya çalışın.
    
        ```Python hl_lines="1"
        {!> ../../../docs_src/cookie_params/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+ non-Annotated"
    
        !!! tip "İpucu"
            Mümkün mertebe 'Annotated' sınıfını kullanmaya çalışın.
    
        ```Python hl_lines="3"
        {!> ../../../docs_src/cookie_params/tutorial001.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 14 19:35:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/time/internal_test.go

    func disablePlatformSources() (undo func()) {
    	platformZoneSources = nil
    	return func() {
    		platformZoneSources = origPlatformZoneSources
    	}
    }
    
    var Interrupt = interrupt
    var DaysIn = daysIn
    
    func empty(arg any, seq uintptr, delta int64) {}
    
    // Test that a runtimeTimer with a period that would overflow when on
    // expiration does not throw or cause other timers to hang.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/handling-errors.md

    The benefit of raising an exception over `return`ing a value will be more evident in the section about Dependencies and Security.
    
    In this example, when the client requests an item by an ID that doesn't exist, raise an exception with a status code of `404`:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

      void RaiseTargetSubgraphsForBlock(
          Block& block, OpBuilder& builder, ModuleOp module, bool skip_cpu,
          int& func_count, const TF::SideEffectAnalysis::Info& side_effect_info);
    };
    
    // After raising ops and adding the Func & Call op, call this function
    // to set attributes specific to this pass.
    void AddAttrs(OpsAdded& ops_added, OpBuilder& builder, int func_count) {
      func::FuncOp& added_func_op = ops_added.func_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. 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)
  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. 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)
  8. 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)
  9. pkg/controlplane/apiserver/options/options.go

    			delete(completed.APIEnablement.RuntimeConfig, key)
    		}
    	}
    
    	return CompletedOptions{
    		completedOptions: &completed,
    	}, nil
    }
    
    // ServiceIPRange checks if the serviceClusterIPRange flag is nil, raising a warning if so and
    // setting service ip range to the default value in kubeoptions.DefaultServiceIPCIDR
    // for now until the default is removed per the deprecation timeline guidelines.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/os/signal/doc.go

    and save any existing signal handler. If a signal is delivered to a
    non-Go thread, it will act as described above, except that if there is
    an existing non-Go signal handler, that handler will be installed
    before raising the signal.
    
    # Windows
    
    On Windows a ^C (Control-C) or ^BREAK (Control-Break) normally cause
    the program to exit. If Notify is called for [os.Interrupt], ^C or ^BREAK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top