Home
last modified time | relevance | path

Searched refs:editions (Results 1 – 25 of 1619) sorted by relevance

12345678910>>...65

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/
H A DCompareRemoteResourcesAction.java34 ICVSRemoteResource[] editions = getSelectedRemoteResources(); in execute() local
35 if (editions == null || editions.length != 2) { in execute()
39 if (isSameFolder(editions)) { in execute()
40 …RemoteCompareOperation.create(null, editions[0], RemoteCompareOperation.getTag(editions[1])).run(); in execute()
42 ResourceEditionNode left = new ResourceEditionNode(editions[0]); in execute()
43 ResourceEditionNode right = new ResourceEditionNode(editions[1]); in execute()
51 protected boolean isSameFolder(ICVSRemoteResource[] editions) { in isSameFolder() argument
52 …return editions[0].isContainer() && editions[0].getRepository().equals(editions[1].getRepository()) in isSameFolder()
53 && editions[0].getRepositoryRelativePath().equals(editions[1].getRepositoryRelativePath()); in isSameFolder()
/dports/security/keybase/client-v5.7.1/pvl-tools/
H A Dyarn.lock33 editions "^1.1.1"
36 editions@^1.1.1, editions@^1.3.3:
38 …resolved "https://registry.yarnpkg.com/editions/-/editions-1.3.3.tgz#0907101bdda20fac3cbe334c27cbd…
45 editions "^1.1.1"
66 editions "^1.1.1"
72 editions "^1.1.1"
79 editions "^1.3.3"
/dports/lang/rust/rustc-1.58.1-src/src/doc/edition-guide/src/
H A DSUMMARY.md5 ## What are editions?
7 - [What are editions?](editions/index.md)
8 - [Creating a new project](editions/creating-a-new-project.md)
9 …- [Transitioning an existing project to a new edition](editions/transitioning-an-existing-project-…
10 - [Advanced migrations](editions/advanced-migrations.md)
/dports/sysutils/py-azure-cli/azure-cli-2.29.2/azure/cli/command_modules/sql/
H A D_format.py203 def db_edition_table_format(editions): argument
208 return list(_db_edition_table_format(editions))
211 def _db_edition_table_format(editions): argument
218 for e in editions:
296 def elastic_pool_edition_table_format(editions): argument
301 return list(_elastic_pool_edition_table_format(editions))
304 def _elastic_pool_edition_table_format(editions): argument
311 for e in editions:
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/async-await/
H A Dedition-deny-async-fns-2015.stderr8 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
17 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
26 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
35 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
44 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
53 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
62 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
71 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
80 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
H A Dsuggest-switching-edition-on-await.stderr9 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
19 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
29 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
39 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
/dports/devel/py-pytest-factoryboy/pytest-factoryboy-2.1.0/tests/
H A Dtest_factory_fixtures.py23 self.editions = []
43 book.editions.append(self)
111 assert book.editions[0].year == 1999
112 assert book.editions[0].book == book
136 assert len(book.editions) == 1
137 assert book.editions[0].year == 2000
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/test_new_api/tests/
H A Dtest_one2many.py34 for name, editions in books_data:
36 for edition in editions:
39 for name, editions in movies_data:
41 for edition in editions:
121 books_with_edition = books.filtered(lambda r: r.editions)
123 movies_without_edition = movies.filtered(lambda r: not r.editions)
124 movies_with_edition = movies.filtered(lambda r: r.editions)
125 movie_editions = movies_with_edition.editions
150 …res_movies_not_of_edition_name), t(movies.filtered(lambda r: one_movie_edition not in r.editions)))
/dports/lang/rust/rustc-1.58.1-src/src/doc/edition-guide/src/rust-2021/
H A DIntoIterator-for-arrays.md5 - Arrays implement `IntoIterator` in *all* editions.
35 since editions can be mixed.
37 Instead, the trait implementation was added in *all* editions (starting in Rust 1.53.0)
44 Those will start to work in *all* editions.
47 this solution keeps the difference between the editions to an absolute minimum.
56 …ing in Rust 2021. The `array_into_iter` lint has already been a warning by default on all editions
67 Because the difference between editions is small, the migration to Rust 2021 is fairly straight-for…
83 …traightforward way to migrate in Rust 2021, is by keeping the exact behavior from previous editions
90 // x is a `&u8` in all editions
/dports/lang/rust/rustc-1.58.1-src/src/doc/book/src/
H A Dappendix-05-editions.md15 fully updated documentation and tooling. New editions ship as part of the usual
27 At the time of this writing, two Rust editions are available: Rust 2015 and
41 compiler’s release, and they can link crates of any supported editions
48 To be clear: most features will be available on all editions. Developers using
51 features might only be available in later editions. You will need to switch
52 editions if you want to take advantage of such features.
56 about editions that enumerates the differences between editions and explains
H A Dtitle-page.md8 to install or update Rust, and see the new [Appendix E][editions]<!-- ignore
9 --> for information on editions.
47 [editions]: appendix-05-editions.html
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.compare/compare/org/eclipse/compare/
H A DEditionSelectionDialog.java319 internalSort(editions); in selectPreviousEdition()
390 internalSort(editions); in selectEdition()
958 if (editions == null) { in addMemberEdition()
959 editions= new ArrayList<>(); in addMemberEdition()
960 fMemberEditions.put(item, editions); in addMemberEdition()
979 ti.setData(editions); in addMemberEdition()
984 int size= editions.size(); in addMemberEdition()
986 last= editions.get(size-1); in addMemberEdition()
990 editions.add(pair); in addMemberEdition()
1098 if (editions != fCurrentEditions) { in handleMemberSelect()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/resolve/
H A Deditions-crate-root-2015.stderr2 --> $DIR/editions-crate-root-2015.rs:4:26
8 --> $DIR/editions-crate-root-2015.rs:7:30
14 --> $DIR/editions-crate-root-2015.rs:11:25
20 --> $DIR/editions-crate-root-2015.rs:14:29
H A Deditions-crate-root-2018.stderr2 --> $DIR/editions-crate-root-2018.rs:4:26
8 --> $DIR/editions-crate-root-2018.rs:7:30
14 --> $DIR/editions-crate-root-2018.rs:11:25
20 --> $DIR/editions-crate-root-2018.rs:14:29
/dports/multimedia/libxine/xine-lib-1.2.11/src/demuxers/
H A Ddemux_matroska-chapters.c382 matroska_edition_t** old_editions = this->editions; in matroska_parse_chapters()
384 … this->editions = realloc(this->editions, this->cap_editions * sizeof(matroska_edition_t*)); in matroska_parse_chapters()
386 if (NULL == this->editions) { in matroska_parse_chapters()
387 this->editions = old_editions; in matroska_parse_chapters()
394 this->editions[this->num_editions] = edition; in matroska_parse_chapters()
416 free_edition(this->editions[i]); in matroska_free_editions()
418 free(this->editions); in matroska_free_editions()
/dports/textproc/py-isbnlib/isbnlib-3.10.9/isbnlib/
H A D_wikied.py17 editions = [to_isbn13(isbn)]
21 editions.extend(eds)
24 return editions
/dports/lang/racket/racket-8.3/share/pkgs/drracket/drracket/private/
H A Dstack-checkpoint.rkt35 get-editions
167 interesting-editor-editions
198 (define interesting-editor-editions (get-interesting-editions interesting-editors))
199 (add-editions-to-interesting-editors editions interesting-editor-editions)
200 (viewable-stack dis values interesting-editor-editions
219 (define (get-interesting-editions interesting-editors)
220 (define interesting-editor-editions (make-weak-hash))
223 interesting-editor-editions)
225 (define (add-editions-to-interesting-editors editions interesting-editor-editions)
226 (for ([edition (in-list editions)])
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/compare/
H A DJavaTextBufferNode.java103 ITypedElement[] editions= new ITypedElement[count]; in buildEditions() local
104 editions[0]= new ResourceNode(file); in buildEditions()
107 editions[i+1]= new HistoryItem(target, states[i]); in buildEditions()
108 return editions; in buildEditions()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/
H A DEditionAction.java146 ITypedElement[] editions= new ITypedElement[states.length+1]; in doFromHistory() local
147 editions[0]= base; in doFromHistory()
149 editions[i+1]= new HistoryItem(base, states[i]); in doFromHistory()
162 ti= d.selectPreviousEdition(target, editions, null); in doFromHistory()
164 ti= d.selectEdition(target, editions, null); in doFromHistory()
189 d.selectEdition(target, editions, null); in doFromHistory()
/dports/textproc/py-isbntools/isbntools-4.3.28/isbntools/bin/
H A Deditions.py5 from ..app import editions, quiet_errors
19 for ib in editions(isbn, service='any'):
/dports/textproc/stardict3/stardict-3.0.6/dict/doc/
H A DDocumentation4editions of StarDict that does not impose that yelp will be available and in all the cases it mean…
6 In order to make documentation usable in all editions of StarDict it was decided to distribute docu…
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/editions/
H A Dasync-block-2015.stderr8 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
19 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
30 = note: for more on editions, read https://doc.rust-lang.org/edition-guide
/dports/lang/rust/rustc-1.58.1-src/src/doc/book/2018-edition/src/
H A Dappendix-05-editions.md6 version of the book](../appendix-05-editions.html) instead.
10 1.30](https://doc.rust-lang.org/1.30.0/book/2018-edition/appendix-05-editions.html).
/dports/www/flexget/Flexget-3.2.18/flexget/utils/parsers/
H A Dparser.py9 editions = ['dc', 'extended', 'uncut', 'remastered', 'unrated', 'theatrical', 'chrono', 'se'] variable in TitleParser
35 + editions
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/history/
H A DEditionHistoryPage.java65 private Map<IFileRevision, ITypedElement> editions = new HashMap<>(); field in EditionHistoryPage
245 editions.clear(); in filterRevisions()
249 editions.put(revision, edition); in filterRevisions()
279 return editions.get(object); in getEditionFor()
381 for (IFileRevision revision : editions.keySet()) { in getRevisionFor()
382 if (editions.get(revision) == object) { in getRevisionFor()

12345678910>>...65