Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 443 for Creation (0.07 seconds)

  1. src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java

        /**
         * Create new DiSNI RDMA connection
         *
         * @param remote remote socket address
         * @param local local socket address
         * @param group DiSNI endpoint group
         * @throws IOException if connection creation fails
         */
        public DisniRdmaConnection(InetSocketAddress remote, InetSocketAddress local, Object group) throws IOException {
            super(remote, local);
            this.group = group;
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 23 05:11:12 GMT 2025
    - 10.2K bytes
    - Click Count (0)
  2. src/test/java/jcifs/SmbResourceLocatorTest.java

                    // Create URL with custom protocol handler for SMB
                    return new URL(null, urlStr, new jcifs.smb.Handler());
                } catch (Exception e) {
                    // Return null if URL creation fails
                    return null;
                }
            }
    
            @Override
            public Address getAddress() {
                return null;
            }
    
            @Override
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

       * will be created by invoking #newThread(Runnable) on this backing {@link ThreadFactory}.
       *
       * @param backingThreadFactory the backing {@link ThreadFactory} which will be delegated to during
       *     thread creation.
       * @return this for the builder pattern
       * @see MoreExecutors
       */
      @CanIgnoreReturnValue
      public ThreadFactoryBuilder setThreadFactory(ThreadFactory backingThreadFactory) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Aug 09 01:35:26 GMT 2025
    - 9K bytes
    - Click Count (0)
  4. impl/maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

            if (pom != null) {
                request.setMultiModuleProjectDirectory(pom.getParentFile());
            }
    
            return request;
        }
    
        // layer the creation of a project builder configuration with a request, but this will need to be
        // a Maven subclass because we don't want to couple maven to the project builder which we need to
        // separate.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 20:01:00 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  5. docs/fr/docs/deployment/docker.md

    * Créez un `Dockerfile` avec :
    
    ```Dockerfile
    FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
    
    COPY ./app /app
    ```
    
    ### Applications plus larges
    
    Si vous avez suivi la section sur la création d' [Applications avec plusieurs fichiers](../tutorial/bigger-applications.md){.internal-link target=_blank}, votre `Dockerfile` pourrait ressembler à ceci :
    
    ```Dockerfile
    FROM tiangolo/uvicorn-gunicorn-fastapi:python3.7
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Nov 09 16:39:20 GMT 2024
    - 7.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

        public String sortOrder;
    
        /** Search/filter parameter for duplicate host creator. */
        public String createdBy;
    
        /** Search/filter parameter for duplicate host creation time. */
        public String createdTime;
    
        /** Search/filter parameter for duplicate host version number. */
        public String versionNo;
    
        /**
         * Creates a new DuplicateHostPager with default values.
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

        return MoreObjects.firstNonNull(valueStrength, Strength.STRONG);
      }
    
      /**
       * Specifies that each entry should be automatically removed from the cache once a fixed duration
       * has elapsed after the entry's creation, or the most recent replacement of its value.
       *
       * <p>When {@code duration} is zero, this method hands off to {@link #maximumSize(long)
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Oct 08 18:55:33 GMT 2025
    - 51.6K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            }
            return asListHtml();
        }
    
        /**
         * Displays the form for creating a new document.
         *
         * @param form the create form
         * @return HTML response for the document creation form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew(final CreateForm form) {
            saveToken();
            form.initialize();
            form.crudMode = CrudMode.CREATE;
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 22.7K bytes
    - Click Count (1)
  9. src/test/java/jcifs/SmbResourceTest.java

            @Test
            @DisplayName("file creation operations should work correctly")
            void testFileCreation() throws CIFSException {
                // When/Then
                assertDoesNotThrow(() -> {
                    mockResource.createNewFile();
                    mockResource.mkdir();
                    mockResource.mkdirs();
                }, "File creation operations should not throw exception");
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 35K bytes
    - Click Count (0)
  10. CONTRIBUTING.md

    - Release notes (e.g., `.md`).
    - READMEs (e.g., `.md`).
    
    #### Copyright Header for Source Files:
    
    ```
    /*
     * Copyright [YEAR OF FILE CREATION] Gradle and contributors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Nov 25 06:57:22 GMT 2025
    - 19K bytes
    - Click Count (0)
Back to Top