Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 405 for nFront (0.28 sec)

  1. src/sync/mutex.go

    	// waiter has good chances of losing. In such case it is queued at front
    	// of the wait queue. If a waiter fails to acquire the mutex for more than 1ms,
    	// it switches mutex to the starvation mode.
    	//
    	// In starvation mode ownership of the mutex is directly handed off from
    	// the unlocking goroutine to the waiter at the front of the queue.
    	// New arriving goroutines don't try to acquire the mutex even if it appears
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/authenticatorfactory/delegating.go

    func (c DelegatingAuthenticatorConfig) New() (authenticator.Request, *spec.SecurityDefinitions, error) {
    	authenticators := []authenticator.Request{}
    	securityDefinitions := spec.SecurityDefinitions{}
    
    	// front-proxy first, then remote
    	// Add the front proxy authenticator if requested
    	if c.RequestHeaderConfig != nil {
    		requestHeaderAuthenticator := headerrequest.NewDynamicVerifyOptionsSecure(
    			c.RequestHeaderConfig.CAContentProvider.VerifyOptions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 29 07:49:14 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/fifo_list.go

    	return l.getFirst(true)
    }
    
    func (l *requestFIFO) Peek() (*request, bool) {
    	return l.getFirst(false)
    }
    
    func (l *requestFIFO) getFirst(remove bool) (*request, bool) {
    	e := l.Front()
    	if e == nil {
    		return nil, false
    	}
    
    	if remove {
    		defer func() {
    			l.Remove(e)
    			e.Value = nil
    		}()
    	}
    
    	request, ok := e.Value.(*request)
    	if remove && ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 16:05:53 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

        func::FuncOp func,
        const TF::SideEffectAnalysis::Info& side_effect_analysis) {
      auto graph_op_range = func.front().without_terminator();
      tf_executor::GraphOp graph_op;
    
      if (llvm::hasSingleElement(graph_op_range))
        graph_op = dyn_cast<tf_executor::GraphOp>(func.front().front());
    
      if (!graph_op) {
        func.emitError("expected function to contain only a graph_op");
        signalPassFailure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication.go

    		req.Header.Del("Authorization")
    
    		// delete standard front proxy headers
    		headerrequest.ClearAuthenticationHeaders(
    			req.Header,
    			standardRequestHeaderConfig.UsernameHeaders,
    			standardRequestHeaderConfig.GroupHeaders,
    			standardRequestHeaderConfig.ExtraHeaderPrefixes,
    		)
    
    		// also delete any custom front proxy headers
    		if requestHeaderConfig != nil {
    			headerrequest.ClearAuthenticationHeaders(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

      tensorflow::tpu::TPUCompileMetadataProto metadata;
      metadata.ParseFromString(compile.getMetadata().str());
      llvm::SmallVector<llvm::SmallVector<int64_t, 4>, 4> input_mappings =
          tensorflow::GetMetadataArgumentMapping(metadata);
    
      bool metadata_updated = false;
      auto maybe_replicate =
          execute_launches.front()->getParentOfType<tf_device::ReplicateOp>();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/move_tpu_compile_to_front.mlir

    // RUN: tf-opt %s -allow-unregistered-dialect --tf-move-tpu-compile-to-front --split-input-file | FileCheck %s
    
    module {
    
    // CHECK-LABEL: does_basic_reordering
    func.func @does_basic_reordering() -> () {
       // CHECK: _TPUCompileMlir
       // CHECK-SAME: X
       // CHECK: _TPUCompileMlir
       // CHECK-SAME: Y
       // CHECK: OpA
       // CHECK: OpB
       // CHECK: OpC
       "tf.OpA"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 00:26:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/additional-responses.md

        Si vous débutez avec **FastAPI**, vous n'en aurez peut-être pas besoin.
    
    Vous pouvez déclarer des réponses supplémentaires, avec des codes HTTP, des types de médias, des descriptions, etc.
    
    Ces réponses supplémentaires seront incluses dans le schéma OpenAPI, elles apparaîtront donc également dans la documentation de l'API.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

          if (accum_dynamic_dim == nullptr) {
            accum_dynamic_dim = sliced_shape_op->getResults().front();
          } else {
            accum_dynamic_dim =
                builder.create<TF::MulOp>(loc, accum_dynamic_dim, sliced_shape_op)
                    ->getResults()
                    .front();
          }
        }
      }
    
      const int32_t zp_constant_offset = static_cast<int32_t>(input_zp) *
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

    // Updates function return type of the given functions to match the terminator
    // op operands' types.
    //
    // Requires the function has exactly one block.
    void UpdateFuncType(func::FuncOp func) {
      Operation* terminator = func.front().getTerminator();
      auto return_types = llvm::to_vector<4>(terminator->getOperandTypes());
    
      FunctionType func_type = func.getFunctionType();
      if (llvm::ArrayRef(return_types) == func_type.getResults()) return;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top