Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1861 - 1870 of 4,020 for lost (0.03 sec)

  1. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

     * License along with this library; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.smb;
    
    
    import java.util.List;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSException;
    import jcifs.FileNotifyInformation;
    import jcifs.SmbConstants;
    import jcifs.SmbWatchHandle;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.5K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

         */
        List<ArtifactRepository> getRemoteRepositories();
    
        /**
         * Sets the remote repositories to use for the resolution.
         *
         * @param remoteRepositories The remote repositories to use for the resolution.
         * @return This request, never {@code null}.
         */
        MetadataResolutionRequest setRemoteRepositories(List<ArtifactRepository> remoteRepositories);
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. misc/chrome/gophertool/gopher.js

        var match = commitRE.exec(t);
        if (match) {
            return "https://golang.org/change/" + match[1];
        }
    
        if (pkgRE.test(t)) {
            // TODO: make this smarter, using a list of packages + substring matches.
            // Get the list from godoc itself in JSON format?
            return "https://golang.org/pkg/" + t;
        }
    
        return null;
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/FileEntry.java

    
        /**
         * 
         * @return the creation time
         */
        long createTime ();
    
    
        /**
         * 
         * @return the last modified time
         */
        long lastModified ();
    
    
        /**
         * 
         * @return the last access time
         */
        long lastAccess ();
    
    
        /**
         * 
         * @return the file size
         */
        long length ();
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. tests/test_response_model_data_filter.py

    
    @app.post("/users/", response_model=UserBase)
    async def create_user(user: UserCreate):
        return user
    
    
    @app.get("/pets/{pet_id}", response_model=PetOut)
    async def read_pet(pet_id: int):
        user = UserDB(
            email="******@****.***",
            hashed_password="secrethashed",
        )
        pet = PetDB(name="Nibbler", owner=user)
        return pet
    
    
    @app.get("/pets/", response_model=List[PetOut])
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/ArrayUtilTest.java

         * @throws Exception
         */
        @Test
        public void testToList() throws Exception {
            final Object a = new int[] { 1, 5 };
            final List<Integer> list = ArrayUtil.toList(a);
            assertThat(list.get(0), is(Integer.valueOf(1)));
            assertThat(list.get(1), is(Integer.valueOf(5)));
        }
    
        /**
         *
         */
        @Test
        public void testIsArray() {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. .github/actions/notify-translations/app/main.py

    
    class AllDiscussionsDiscussionLabels(BaseModel):
        edges: List[AllDiscussionsLabelsEdge]
    
    
    class AllDiscussionsDiscussionNode(BaseModel):
        title: str
        id: str
        number: int
        labels: AllDiscussionsDiscussionLabels
    
    
    class AllDiscussionsDiscussions(BaseModel):
        nodes: List[AllDiscussionsDiscussionNode]
    
    
    class AllDiscussionsRepository(BaseModel):
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            RenderDataUtil.register(data, "protocolSchemeItems", itemList);
        }
    
        protected void registerWebConfigItems(final RenderData data) {
            final List<Map<String, String>> itemList = new ArrayList<>();
            final List<WebConfig> webConfigList = crawlingConfigHelper.getAllWebConfigList(false, false, false, null);
            for (final WebConfig webConfig : webConfigList) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java

            deleteBySessionId(sessionId);
        }
    
        @Override
        public void offerAll(final String sessionId, final List<OpenSearchUrlQueue> urlQueueList) {
            if (logger.isDebugEnabled()) {
                logger.debug("Offering URL: Session ID: {}, UrlQueue: {}", sessionId, urlQueueList);
            }
            final List<UrlQueue<String>> targetList = new ArrayList<>(urlQueueList.size());
            for (final UrlQueue<String> urlQueue : urlQueueList) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. docs/ko/docs/python-types.md

    {!../../docs_src/python_types/tutorial005.py!}
    ```
    
    ### 타입 매개변수를 활용한 Generic(제네릭) 타입
    
    `dict`, `list`, `set`, `tuple`과 같은 값을 저장할 수 있는 데이터 구조가 있고, 내부의 값은 각자의 타입을 가질 수도 있습니다.
    
    타입과 내부 타입을 선언하기 위해서는 파이썬 표준 모듈인 `typing`을 이용해야 합니다.
    
    구체적으로는 아래 타입 힌트를 지원합니다.
    
    #### `List`
    
    예를 들면, `str`의 `list`인 변수를 정의해봅시다.
    
    `typing`에서  `List`(대문자 `L`)를 import 합니다.
    
    ```Python hl_lines="1"
    {!../../docs_src/python_types/tutorial006.py!}
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top