Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 180 for uris (0.54 sec)

  1. samples/bookinfo/src/details/details.rb

            'ISBN-10' => '1234567890',
            'ISBN-13' => '123-1234567890'
        }
    end
    
    def fetch_details_from_external_service(isbn, id, headers)
        uri = URI.parse('https://www.googleapis.com/books/v1/volumes?q=isbn:' + isbn)
        http = Net::HTTP.new(uri.host, ENV['DO_NOT_ENCRYPT'] === 'true' ? 80:443)
        http.read_timeout = 5 # seconds
    
        # DO_NOT_ENCRYPT is used to configure the details service to use either
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

                    implementation
                }
    
                dependencies {
                    implementation 'non:existent:1.0'
                }
    
                repositories {
                    maven { url = uri('${emptyRepo.uri}') }
                }
    
                class Bean {
                    @InputFiles FileCollection files
                }
    
                abstract class Test extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/ArtifactResolutionQueryIntegrationTest.groovy

    allprojects {
        apply plugin: 'java'
        repositories {
           maven { url '${blockingServer.uri}/repo' }
        }
    
        dependencies {
            implementation 'group:artifact:1.0'
        }
    }
    
    project('query') {
        task query {
            doLast {
                '${blockingServer.uri}/sync'.toURL().text
                dependencies.createArtifactResolutionQuery()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local.go

    		{Name: "experimental-initial-corrupt-check", Value: "true"},
    		{Name: "listen-client-urls", Value: fmt.Sprintf("%s,%s", etcdutil.GetClientURLByIP(etcdLocalhostAddress), etcdutil.GetClientURL(endpoint))},
    		{Name: "advertise-client-urls", Value: etcdutil.GetClientURL(endpoint)},
    		{Name: "listen-peer-urls", Value: etcdutil.GetPeerURL(endpoint)},
    		{Name: "initial-advertise-peer-urls", Value: etcdutil.GetPeerURL(endpoint)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  5. docs/en/docs/advanced/openapi-webhooks.md

    And **your users** define in some way (for example in a web dashboard somewhere) the **URL** where your app should send those requests.
    
    All the **logic** about how to register the URLs for webhooks and the code to actually send those requests is up to you. You write it however you want to in **your own code**.
    
    ## Documenting webhooks with **FastAPI** and OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            def configurationCache = newConfigurationCacheFixture()
            def metadataFile = file('build/publications/maven/module.json')
    
            expect:
            !GUtil.isSecureUrl(server.uri)
    
            when:
            prepareMavenHttpRepository(projectConfig.remoteRepo, new DefaultPasswordCredentials(username, password))
            configurationCacheRun(*(projectConfig.tasks))
            server.resetExpectations()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Provides <<build_init_plugin.adoc#sec:allow_insecure,an option for handling Maven repositories located at URLs using `http`>>
    
    [[sec:allow_insecure]]
    ==== The `--insecure-protocol` option
    This option is used to tell the conversion process how to handle converting Maven repositories located at insecure `http` URLs.  Insecure Repositories Set the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route_test.go

    				Name: "route",
    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "non-catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/route/v1",
    							},
    						},
    					},
    					{
    						Name: "catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/",
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenResolver.java

    import org.gradle.internal.resource.local.LocallyAvailableResourceFinder;
    
    import javax.annotation.Nullable;
    import java.net.URI;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    public class MavenResolver extends ExternalResourceResolver {
        private final URI root;
        private final MavenMetadataLoader mavenMetaDataLoader;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    	// format library. There are other CRD formats supported, but they are
    	// covered by other portions of the CEL library (like IP/CIDR), or their
    	// use is discouraged (like bsonobjectid, email, etc)
    	"uri": {
    		Name: "URI",
    		ValidateFunc: func(s string) []string {
    			// Directly call ParseRequestURI since we can get a better error message
    			_, err := url.ParseRequestURI(s)
    			if err != nil {
    				return []string{err.Error()}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top