Search Options

Results per page
Sort
Preferred Languages
Advance

Results 371 - 380 of 1,403 for lista (0.09 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/PerCollectionSizeTestSuiteBuilder.java

        @SuppressWarnings("rawtypes") // class literals
        private final List<Class<? extends AbstractTester>> testers;
    
        @SuppressWarnings("rawtypes") // class literals
        public OneSizeTestSuiteBuilder(List<Class<? extends AbstractTester>> testers) {
          this.testers = testers;
        }
    
        @SuppressWarnings("rawtypes") // class literals
        @Override
        protected List<Class<? extends AbstractTester>> getTesters() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. .github/workflows/stale-issues.yml

            uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9.0.0
            with:
              #Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
              exempt-issue-labels: 'override-stale'
              #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
              exempt-pr-labels: "override-stale"
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Jun 26 15:41:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/QueryResponseList.java

    package org.codelibs.fess.util;
    
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    import java.util.ListIterator;
    import java.util.Map;
    
    public class QueryResponseList implements List<Map<String, Object>> {
    
        protected final List<Map<String, Object>> parent;
    
        protected final int start;
    
        protected final int offset;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. docs_src/dataclasses/tutorial002.py

    from dataclasses import dataclass, field
    from typing import List, Union
    
    from fastapi import FastAPI
    
    
    @dataclass
    class Item:
        name: str
        price: float
        tags: List[str] = field(default_factory=list)
        description: Union[str, None] = None
        tax: Union[float, None] = None
    
    
    app = FastAPI()
    
    
    @app.get("/items/next", response_model=Item)
    async def read_next_item():
        return {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Jul 31 14:09:15 UTC 2024
    - 549 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        protected long documentSize;
    
        protected int maxIndexerErrorCount = 0;
    
        protected int maxErrorCount = 2;
    
        protected List<String> finishedSessionIdList = new ArrayList<>();
    
        private final List<DocBoostMatcher> docBoostMatcherList = new ArrayList<>();
    
        private List<Crawler> crawlerList;
    
        private IngestFactory ingestFactory = null;
    
        public IndexUpdater() {
            // nothing
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

                "File '$docFile' does not contain the expected Kotlin compatibility line"
            }
        }
    
        private
        val List<String>.firstBaseVersion: String
            get() = VersionNumber.parse(first()).minorBaseVersion
    
        private
        val List<String>.lastBaseVersion: String
            get() = map { VersionNumber.parse(it) }
                .last { it.qualifier == null || it.qualifier?.startsWith("rc") == true }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jun 02 09:17:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. docs/en/docs/python-types.md

    In this case, `str` is the type parameter passed to `List` (or `list` in Python 3.9 and above).
    
    ///
    
    That means: "the variable `items` is a `list`, and each of the items in this list is a `str`".
    
    /// tip
    
    If you use Python 3.9 or above, you don't have to import `List` from `typing`, you can use the same regular `list` type instead.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 26 11:47:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. docs/uk/docs/python-types.md

    #### List (список)
    
    Наприклад, давайте визначимо змінну, яка буде `list` із `str`.
    
    //// tab | Python 3.8 і вище
    
    З модуля `typing`, імпортуємо `List` (з великої літери `L`):
    
    ```Python hl_lines="1"
    {!> ../../docs_src/python_types/tutorial006.py!}
    ```
    
    Оголосимо змінну з тим самим синтаксисом двокрапки (`:`).
    
    Як тип вкажемо `List`, який ви імпортували з `typing`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

                        }
                        if (logger.isDebugEnabled()) {
                            logger.debug(line);
                        }
                        list.add(line);
                        if (list.size() > maxLineBuffer) {
                            list.remove(0);
                        }
                    } catch (final IOException e) {
                        throw new CrawlerSystemException(e);
                    }
                }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java

            private final String name;
            private final List<Plugin> plugins;
            private final Collection<Lifecycle.Link> links;
            private final List<Lifecycle.Phase> phases;
    
            DefaultPhase(
                    String name, List<Plugin> plugins, Collection<Lifecycle.Link> links, List<Lifecycle.Phase> phases) {
                this.name = name;
                this.plugins = plugins;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top