Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 291 for nFront (0.11 sec)

  1. src/log/slog/record.go

    	// the majority of log calls (based on examination of open-source
    	// code). It holds the start of the list of Attrs.
    	front [nAttrsInline]Attr
    
    	// The number of Attrs in front.
    	nFront int
    
    	// The list of Attrs except for those in front.
    	// Invariants:
    	//   - len(back) > 0 iff nFront == len(front)
    	//   - Unused array elements are zero. Used to detect mistakes.
    	back []Attr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:30:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/fr/stopwords.txt

    une
    vos
    votre
    vous
    c
    d
    j
    l
    à
    m
    n
    s
    t
    y
    été
    étée
    étées
    étés
    étant
    suis
    es
    est
    sommes
    êtes
    sont
    serai
    seras
    sera
    serons
    serez
    seront
    serais
    serait
    serions
    seriez
    seraient
    étais
    était
    étions
    étiez
    étaient
    fus
    fut
    fûmes
    fûtes
    furent
    sois
    soit
    soyons
    soyez
    soient
    fusse
    fusses
    fût
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 977 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--proxy-client-key-file=" + filepath.FromSlash("/var/lib/certs/front-proxy-client.key"),
    				"--requestheader-username-headers=X-Remote-User",
    				"--requestheader-group-headers=X-Remote-Group",
    				"--requestheader-extra-headers-prefix=X-Remote-Extra-",
    				"--requestheader-client-ca-file=" + filepath.Join(testCertsDir, "front-proxy-ca.crt"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      // non-cluster ops that have some outgoing (transitive) dependency to some
      // cluster op (`cluster_predecessor_ops`).
      auto rfront = Block::reverse_iterator(cluster_ops.front());
      auto rback = Block::reverse_iterator(cluster_ops.back());
      for (Operation& op : llvm::make_range(rback, rfront)) {
        if (cluster_ops.contains(&op)) continue;
        bool has_dependency_to_cluster =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  5. test/typeparam/list2.go

    // Len returns the number of elements of list l.
    // The complexity is O(1).
    func (l *_List[_]) Len() int { return l.len }
    
    // Front returns the first element of list l or nil if the list is empty.
    func (l *_List[T]) Front() *_Element[T] {
    	if l.len == 0 {
    		return nil
    	}
    	return l.root.next
    }
    
    // Back returns the last element of list l or nil if the list is empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/body.md

    * Ces schémas participeront à la constitution du schéma généré OpenAPI, et seront donc utilisés par les documentations automatiquement générées.
    
    ## Documentation automatique
    
    Les schémas JSON de vos modèles seront intégrés au schéma OpenAPI global de votre application, et seront donc affichés dans la documentation interactive de l'API :
    
    <img src="/img/tutorial/body/image01.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/certs_test.go

    				"ca.key":             caKey,
    				"front-proxy-ca.crt": caCert,
    				"front-proxy-ca.key": caKey,
    				"sa.pub":             publicKey,
    				"sa.key":             key,
    				"etcd/ca.crt":        caCert,
    				"etcd/ca.key":        caKey,
    			},
    		},
    		{
    			name: "missing ca.crt",
    			files: certstestutil.PKIFiles{
    				"ca.key":             caKey,
    				"front-proxy-ca.crt": caCert,
    				"front-proxy-ca.key": caKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_functional_to_executor.cc

      builder.create<tf_executor::FetchOp>(loc, to_fetch);
      // Build Island.
      island.getBody().push_back(new Block);
      island.getBody().front().getOperations().splice(
          island.getBody().front().begin(), body.getOperations(),
          copy_range.begin(), copy_range.end());
      builder.setInsertionPointToEnd(&island.getBody().front());
      builder.create<tf_executor::YieldOp>(loc, return_op.getOperands());
      for (auto item : llvm::enumerate(graph_op.getResults())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

        cloned_cond.eraseArgument(idx);
        cloned_body.front().getTerminator()->eraseOperand(idx);
        cloned_body.eraseArgument(idx);
      }
    
      // Patch up branch function types.
      for (func::FuncOp func : {cloned_cond, cloned_body}) {
        func.setType(
            FunctionType::get(func.getContext(), func.front().getArgumentTypes(),
                              func.front().getTerminator()->getOperandTypes()));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        RegionRange regions) {
      for (Region* region : regions) {
        assert(llvm::hasSingleElement(*region) && "Expected single block region");
        Block& front = region->front();
        auto old_return = front.getTerminator();
        assert(old_return->getNumOperands() == op_->getNumResults());
        auto new_return_operands = llvm::to_vector<4>(old_return->getOperands());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top