Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 922 for uris (0.05 sec)

  1. platforms/software/maven/src/crossVersionTest/groovy/org/gradle/api/publish/maven/MavenPublishCrossVersionIntegrationTest.groovy

            buildFile.text = """
    configurations {
        lib
    }
    repositories {
        if (repositories.metaClass.respondsTo(repositories, 'maven')) {
            maven { url "${repo.uri}" }
        } else {
            mavenRepo urls: ["${repo.uri}"]
        }
    }
    dependencies {
        lib 'org.gradle.crossversion:published:1.9'
    }
    task retrieve(type: Sync) {
        into 'build/resolved'
        from configurations.lib
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsResourceTest.groovy

    import com.google.api.client.util.DateTime
    import com.google.api.services.storage.model.StorageObject
    import spock.lang.Specification
    
    class GcsResourceTest extends Specification {
    
        URI uri = new URI("http://somewhere")
    
        def "should get metaData"() {
            def lastModified = new DateTime(new Date())
            def md5hash = '5ab81d4c80e1ee62e6f34e7b3271874e'
            def contentType = 'text/plain'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ChildUrlsException.java

    /**
     * ChildUrlsException is thrown when having child urls.
     *
     * @author shinsuke
     *
     */
    public class ChildUrlsException extends CrawlerSystemException {
    
        private static final long serialVersionUID = 1L;
    
        private final Set<RequestData> childUrlList;
    
        public ChildUrlsException(final Set<RequestData> childUrlList, final String description) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/PathAssemblerTest.java

            configuration.setDistributionBase(PathAssembler.PROJECT_STRING);
    
            configuration.setDistribution(new URI("http://username1:password1@server/dist/gradle-0.9-bin.zip"));
            File distributionDir1 = pathAssembler.getDistribution(configuration).getDistributionDir();
    
            configuration.setDistribution(new URI("http://username2:password2@server/dist/gradle-0.9-bin.zip"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/internal/DistributionLocator.java

        public static String getBaseUrl() {
            return System.getProperty(SERVICES_GRADLE_BASE_URL_PROPERTY, SERVICES_GRADLE_BASE_URL);
        }
    
        public URI getDistributionFor(GradleVersion version) {
            return getDistributionFor(version, "bin");
        }
    
        public URI getDistributionFor(GradleVersion version, String type) {
            return getDistribution(getDistributionRepository(version), version, "gradle", type);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 23 13:12:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

                @Override
                public Optional<JavaToolchainDownload> resolve(JavaToolchainRequest request) {
                    URI uri = URI.create("http://exoticJavaToolchain.com/java-" + request.getJavaToolchainSpec().getLanguageVersion().get());
                    return Optional.of(JavaToolchainDownload.fromUri(uri));
                }
            """
        }
    
        private static String customToolchainResolverCode() {
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/util/DistributionLocator.java

        public DistributionLocator() {
            logDeprecation();
        }
    
        public URI getDistributionFor(GradleVersion version) {
            return getDistributionFor(version, "bin");
        }
    
        public URI getDistributionFor(GradleVersion version, String type) {
            return getDistribution(getDistributionRepository(version), version, "gradle", type);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:39 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

    Searched in the following locations:
      - ${ivySftpRepo.uri}/org.group.name/projectA/
    Required by:
    """)
        }
    
        void "resolve dependencies from a SFTP Ivy repository with invalid credentials"() {
            given:
            buildFile << """
                repositories {
                    ivy {
                        url "${ivySftpRepo.uri}"
                        credentials {
                            username 'bad'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport.go

    	atom.Script:     sets.NewString("src"),
    	atom.Source:     sets.NewString("src"),
    	atom.Video:      sets.NewString("poster", "src"),
    
    	// TODO: css URLs hidden in style elements.
    }
    
    // Transport is a transport for text/html content that replaces URLs in html
    // content with the prefix of the proxy server
    type Transport struct {
    	Scheme      string
    	Host        string
    	PathPrepend string
    
    	http.RoundTripper
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. docs/de/docs/how-to/custom-docs-ui-assets.md

    Das kann nützlich sein, wenn Sie beispielsweise in einem Land leben, in dem bestimmte URLs eingeschränkt sind.
    
    ### Die automatischen Dokumentationen deaktivieren
    
    Der erste Schritt besteht darin, die automatischen Dokumentationen zu deaktivieren, da diese standardmäßig das Standard-CDN verwenden.
    
    Um diese zu deaktivieren, setzen Sie deren URLs beim Erstellen Ihrer `FastAPI`-App auf `None`:
    
    ```Python hl_lines="8"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top