Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 454 for freezes (0.17 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    @RequiresOptIn("Analysis should not be allowed to be run from the EDT, as otherwise it may cause IDE freezes.")
    public annotation class KaAllowAnalysisOnEdt
    
    /**
     * Allows [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called on the EDT in the given [action], which is normally not allowed.
     *
     * Analysis is not supposed to be invoked from the EDT, as it may cause freezes. Use at your own risk!
     */
    @KaAllowAnalysisOnEdt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

      pm.addPass(mlir::TF::CreateTensorListOpsDecompositionPass());
      pm.addNestedPass<func::FuncOp>(
          mlir::TFDevice::CreateDecomposeResourceOpsPass());
    
      // FreezeVariables only freezes variables for TF v1 types. Separately handle
      // freezing of TF v2 GlobalTensor ops. (Ref: b/206855389)
      pm.addPass(mlir::tf_saved_model::CreateOptimizeGlobalTensorsPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      pm.addPass(mlir::createCanonicalizerPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::TFDevice::CreateDecomposeResourceOpsPass());
    
      // FreezeVariables only freezes variables for TF v1 types. Separately handle
      // freezing of TF v2 GlobalTensor ops. (Ref: b/206855389)
      pm.addPass(mlir::tf_saved_model::CreateOptimizeGlobalTensorsPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      if (!pass_config.disable_variable_freezing) {
        // This pass 'freezes' immutable global tensors and inlines them as tf
        // constant ops.
        pass_manager->addPass(mlir::tf_saved_model::CreateFreezeGlobalTensorsPass(
            /*allow_mutable_tensors=*/pass_config.enable_tflite_variables));
      }
    
      if (!saved_model_dir.empty()) {
        // This pass 'freezes' tf saved model asset ops and inlines as string values
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      // supported for Post-training Dynamic Range Quantization. By default, it is
      // set to 1024. To disable this, set the value to -1 explicitly.
      int64 min_num_elements_for_weights = 8;
    
      // When set to `true`, freezes all variables in the model into constants.
      // When set to `false` the model's large constants are converted to variables.
      // Setting this to `false` is an experimental feature and quantization may
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    	their needs before then. See https://go.dev/doc/gc-guide#Linux_transparent_huge_pages.
    
    	dontfreezetheworld: by default, the start of a fatal panic or throw
    	"freezes the world", preempting all threads to stop all running
    	goroutines, which makes it possible to traceback all goroutines, and
    	keeps their state close to the point of panic. Setting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    // ----------
    // Supports following actions:
    // - restart (restarts all the MinIO instances in a setup)
    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    func (a adminAPIHandlers) ServiceHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	vars := mux.Vars(r)
    	action := vars["action"]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. cmd/notification.go

    }
    
    // ServiceFreeze freezes all S3 API calls when 'freeze' is true,
    // 'freeze' is 'false' would resume all S3 API calls again.
    // NOTE: once a tenant is frozen either two things needs to
    // happen before resuming normal operations.
    //   - Server needs to be restarted 'mc admin service restart'
    //   - 'freeze' should be set to 'false' for this call
    //     to resume normal operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    		// only gets us to the caller's fp.
    		gp.sched.bp = sp - goarch.PtrSize
    	}
    	gp.sched.ret = 1
    	gogo(&gp.sched)
    }
    
    // fatalthrow implements an unrecoverable runtime throw. It freezes the
    // system, prints stack traces starting from its caller, and terminates the
    // process.
    //
    //go:nosplit
    func fatalthrow(t throwType) {
    	pc := getcallerpc()
    	sp := getcallersp()
    	gp := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    	// after it reaches 255 and so, if an edge is executed at least one time, the entry is
    	// never 0.
    	// Another policy presented in the paper is the Saturated Counters policy which
    	// freezes the counter when it reaches the value of 255. However, a range
    	// of experiments showed that that decreases overall performance.
    	o.append(ir.NewIfStmt(base.Pos,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top