Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for nFront (0.1 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. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    go get -u=patch cmd/go
    
    # We can upgrade to a new version of a module with no root package.
    go get example.com/noroot@v1.0.0
    go list -m all
    stdout '^example.com/noroot v1.0.0$'
    go get example.com/noroot@patch
    go list -m all
    stdout '^example.com/noroot v1.0.1$'
    
    
    -- go.mod --
    module x
    
    require patch.example.com/direct v1.0.0
    
    -- main.go --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/python/mlir_wrapper/basic_classes.cc

          .def("front", &mlir::Region::front, py::return_value_policy::reference)
          .def("add_block", [](mlir::Region& r) { r.push_back(new mlir::Block); })
          .def("push_back", &mlir::Region::push_back)
          .def("size", [](mlir::Region& r) { return r.getBlocks().size(); })
          .def("front", &mlir::Region::front, py::return_value_policy::reference);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 22 04:26:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. src/container/list/list_test.go

    	l.MoveToFront(e3) // should be no-op
    	checkListPointers(t, l, []*Element{e3, e1, e4})
    
    	l.MoveToBack(e3) // move from front
    	checkListPointers(t, l, []*Element{e1, e4, e3})
    	l.MoveToBack(e3) // should be no-op
    	checkListPointers(t, l, []*Element{e1, e4, e3})
    
    	e2 = l.InsertBefore(2, e1) // insert before front
    	checkListPointers(t, l, []*Element{e2, e1, e4, e3})
    	l.Remove(e2)
    	e2 = l.InsertBefore(2, e4) // insert before middle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  7. test/typeparam/listimp2.dir/main.go

    	a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4})
    
    	l2.MoveToBack(e3) // move from front
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3})
    	l2.MoveToBack(e3) // should be no-op
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3})
    
    	e2 = l2.InsertBefore(2, e1) // insert before front
    	a.CheckListPointers(l2, []*(a.Element[int]){e2, e1, e4, e3})
    	l2.Remove(e2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 7.4K 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. src/container/list/list.go

    func New() *List { return new(List).Init() }
    
    // 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) Front() *Element {
    	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: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. src/runtime/mem_js.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js
    
    package runtime
    
    // resetMemoryDataView signals the JS front-end that WebAssembly's memory.grow instruction has been used.
    // This allows the front-end to replace the old DataView object with a new one.
    //
    //go:wasmimport gojs runtime.resetMemoryDataView
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 457 bytes
    - Viewed (0)
Back to top