Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 41 for bucketCh (0.05 seconds)

  1. .github/workflows/update-test-buckets.yml

              commit-message: Update test buckets
              branch: devprod/update-test-buckets
              branch-suffix: timestamp
              delete-branch: true
              title: 'Update test buckets'
              signoff: true
              sign-commits: true
              labels: |
                in:building-gradle
                @dev-productivity
              body: |
                This PR updates the test buckets based on the latest test class data.
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Dec 09 22:14:16 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  2. .github/workflows/update-perf-test-buckets.yml

    on:
      schedule:
        - cron: '53 3 * * 1'
      workflow_dispatch:
    
    permissions:
      contents: write
      id-token: write
      pull-requests: write
    
    jobs:
      update-perf-test-buckets:
        runs-on: ubuntu-latest
    
        if: github.repository == 'gradle/gradle'
    
        steps:
          - name: Checkout repository
            uses: actions/checkout@v6
          - name: configure aws credentials
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Dec 09 22:14:16 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java

         * It extends URLConnection to provide connectivity to S3-compatible storage services.
         * This class handles the authentication, connection management, and data retrieval
         * from S3 buckets and objects.
         *
         * <p>
         * The connection extracts bucket and object names from the URL and uses environment
         * variables for authentication and endpoint configuration.
         * </p>
         */
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Dec 11 07:57:44 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java

         * It extends URLConnection to provide connectivity to Google Cloud Storage.
         * This class handles the authentication, connection management, and data retrieval
         * from storage buckets and objects.
         *
         * <p>
         * The connection extracts bucket and object names from the URL and uses environment
         * variables for authentication and endpoint configuration.
         * </p>
         */
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Dec 11 08:38:29 GMT 2025
    - 9.6K bytes
    - Click Count (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java

                    }
                }
            }
        }
    
        /**
         * Parses a GCS path into bucket name and object path components.
         * @param path the GCS path to parse (format: bucket/object/path)
         * @return an array containing the bucket name and object path
         * @throws CrawlingAccessException if the path format is invalid
         */
        protected String[] parsePath(final String path) {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Dec 11 08:38:29 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  6. README.md

    The following commands set a local alias, validate the server information, create a bucket, copy data to that bucket, and list the contents of the bucket.
    
    ```sh
    mc alias set local http://localhost:9000 minioadmin minioadmin
    mc admin info
    mc mb data
    mc cp ~/Downloads/mydata data/
    mc ls data/
    ```
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Dec 03 08:13:11 GMT 2025
    - 9K bytes
    - Click Count (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

            }
        }
    
        /**
         * Checks if a bucket exists in the object storage.
         * @param name the name of the bucket to check
         * @return true if the bucket exists, false otherwise
         * @throws CrawlingAccessException if an error occurs while checking bucket existence
         */
        protected boolean bucketExists(final String name) {
            try {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Dec 11 08:38:29 GMT 2025
    - 21.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                s3Client.headBucket(request);
            } catch (final NoSuchBucketException e) {
                try {
                    final CreateBucketRequest createRequest = CreateBucketRequest.builder().bucket(bucket).build();
                    s3Client.createBucket(createRequest);
                    logger.info("Created storage bucket: {}", bucket);
                } catch (final Exception e1) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

            try {
                final Bucket existingBucket = storage.get(bucket);
                if (existingBucket == null) {
                    storage.create(BucketInfo.newBuilder(bucket).build());
                    logger.info("Created storage bucket: {}", bucket);
                }
            } catch (final Exception e) {
                logger.warn("Failed to ensure bucket exists: {}", bucket, e);
            }
        }
    
        @Override
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

            }
        }
    
        /**
         * Checks if a bucket exists in the object storage.
         * @param name the name of the bucket to check
         * @return true if the bucket exists, false otherwise
         * @throws CrawlingAccessException if an error occurs while checking bucket existence
         */
        protected boolean bucketExists(final String name) {
            try {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Mon Nov 24 03:59:47 GMT 2025
    - 20K bytes
    - Click Count (2)
Back to Top