Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getServicePath (0.12 sec)

  1. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

                builder.setRootUrl(gcsConnectionProperties.getEndpoint().get().toString());
            }
            if (gcsConnectionProperties.getServicePath().isPresent()) {
                builder.setServicePath(gcsConnectionProperties.getServicePath().get());
            }
            builder.setApplicationName("gradle");
            return new GcsClient(builder.build());
        }
    
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsConnectionProperties.java

            this.disableAuthentication = disableAuthentication;
        }
    
        Optional<URI> getEndpoint() {
            return Optional.fromNullable(endpoint);
        }
    
        Optional<String> getServicePath() {
            return Optional.fromNullable(servicePath);
        }
    
        boolean requiresAuthentication() {
            return !disableAuthentication;
        }
    
        private static URI configureEndpoint(String property) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top