Search Options

Results per page
Sort
Preferred Languages
Advance

Results 511 - 520 of 1,786 for breathe (2.97 sec)

  1. docs/lambda/README.md

    ```
    
    ## Create a bucket and upload some data
    
    Create a bucket named `functionbucket`
    ```
    mc alias set myminio/ http://localhost:9000 minioadmin minioadmin
    mc mb myminio/functionbucket
    ```
    
    Create a file `testobject` with some test data that will be transformed
    ```
    cat > testobject << EOF
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

        /**
         * Creates a new user.
         *
         * @param form the create form containing the new user data
         * @return HTML response redirecting to the list page after creation
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse create(final CreateForm form) {
            verifyCrudMode(form.crudMode, CrudMode.CREATE);
            validate(form, messages -> {}, this::asEditHtml);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java

            assertTrue(bytesRead <= buffer.length);
        }
    
        /**
         * Helper method to create a valid security descriptor buffer
         */
        private byte[] createValidSecurityDescriptorBuffer() {
            return createValidSecurityDescriptorBuffer(100);
        }
    
        /**
         * Helper method to create a valid security descriptor buffer with specified size
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeParameter.java

     *       .where(new TypeParameter<T>() {}, elementType);
     * }
     * }
     *
     * @author Ben Yu
     * @since 12.0
     */
    /*
     * A nullable bound would let users create a TypeParameter instance for a parameter with a nullable
     * bound. However, it would also let them create `new TypeParameter<@Nullable T>() {}`, which
     * wouldn't behave as users might expect. Additionally, it's not clear how the TypeToken API could
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  5. .teamcity/scripts/update_wrapper_and_create_pr.sh

    #!/bin/bash
    set -e
    
    # Script to update Gradle wrapper and create a pull request
    # 
    # Usage:
    #   ./update_wrapper_and_create_pr.sh [wrapper_version]
    #
    # Arguments:
    #   wrapper_version - The Gradle version to update the wrapper to
    # 
    # Environment variables:
    #   DEFAULT_BRANCH  - The default branch to create the pull request on (e.g. "master"/"release")
    #   GITHUB_TOKEN    - GitHub bot token
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jul 29 03:20:20 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java

            private byte[] buffer;
    
            @BeforeEach
            void setUp() {
                buffer = new byte[BUFFER_SIZE];
            }
    
            @Test
            @DisplayName("Should create context with constructor parameters")
            void testConstructorWithParameters() {
                int[] hashAlgos = { PreauthIntegrityNegotiateContext.HASH_ALGO_SHA512 };
                byte[] salt = new byte[32];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  7. cmd/metacache-bucket_test.go

    			BaseDir:      pathNames[i%paths],
    			Prefix:       "",
    			FilterPrefix: "",
    			Marker:       "",
    			Limit:        0,
    			AskDisks:     "strict",
    			Recursive:    false,
    			Separator:    slashSeparator,
    			Create:       true,
    		})
    	}
    	b.ReportAllocs()
    
    	for i := 0; b.Loop(); i++ {
    		bm.findCache(listPathOptions{
    			ID:           mustGetUUID(),
    			Bucket:       "",
    			BaseDir:      pathNames[i%paths],
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

    public class SmbOperationExceptionTest {
    
        private SmbOperationException exception;
    
        @BeforeEach
        void setUp() {
            exception = null;
        }
    
        @Test
        @DisplayName("Should create exception with error code and message")
        void testBasicCreation() {
            // When
            exception = new SmbOperationException(SmbOperationException.ErrorCode.FILE_NOT_FOUND, "test.txt");
    
            // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java

        @Override
        public List<Double> create(Object... elements) {
          Double[] array = new Double[elements.length];
          int i = 0;
          for (Object e : elements) {
            array[i++] = (Double) e;
          }
          return create(array);
        }
    
        /**
         * Creates a new collection containing the given elements; implement this method instead of
         * {@link #create(Object...)}.
         */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

                @Override
                public void doFilter(ServletRequest req, ServletResponse res) throws IOException, ServletException {
                    chainCalled.set(true);
                }
            };
    
            // Create mock WebApiManager
            WebApiManager webApiManager = new WebApiManager() {
                @Override
                public boolean matches(HttpServletRequest req) {
                    return true;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
Back to top