Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 363 for uris (0.04 sec)

  1. 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)
  2. 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)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt

          if (proxy != null) return listOf(proxy)
    
          // If the URI lacks a host (as in "http://</"), don't call the ProxySelector.
          val uri = url.toUri()
          if (uri.host == null) return immutableListOf(Proxy.NO_PROXY)
    
          // Try each of the ProxySelector choices until one connection succeeds.
          val proxiesOrNull = address.proxySelector.select(uri)
          if (proxiesOrNull.isNullOrEmpty()) return immutableListOf(Proxy.NO_PROXY)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. cmd/update_fips.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Newer official download info URLs appear earlier below.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 934 bytes
    - Viewed (0)
  5. 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)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/RepositoryOrderingIntegrationSpec.groovy

                  - $pluginManagementRepoUri/my/plugin/1.0/plugin-1.0.pom
            """.stripIndent().trim()
        }
    
    
        private void overridePluginPortalUri(String uri) {
            executer.withArgument("-D${PLUGIN_PORTAL_OVERRIDE_URL_PROPERTY}=$uri")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 11:30:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            final Map<String, Object> requestBody = new HashMap<>();
            final String urls = "https://www.codelibs.org/" + "\n" + "http://failure.url";
            final String includedUrls = "https://www.codelibs.org/.*" + "\n" + "http://failure.url.*";
            requestBody.put("name", NAME_PREFIX + "WebConfig");
            requestBody.put("urls", urls);
            requestBody.put("included_urls", includedUrls);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.1K 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/api/networking/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/util/intstr/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1beta1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top