Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for server_uri (0.14 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/extended-custom-http-provider-out2.yaml

            patterns:
            - exact: Authorization
              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
        pathPrefix: /check
        serverUri:
          cluster: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
          timeout: 10s
          uri: http://my-custom-ext-authz.foo.svc.cluster.local
      statusOnError:
        code: Forbidden
      transportApiVersion: V3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/IvySftpRepository.groovy

            this.backingRepository = new IvyFileRepository(server.file(contextPath.substring(1)), m2Compatible, dirPattern, ivyFilePattern, artifactFilePattern)
        }
    
        URI getUri() {
            return new URI("${serverUri}${contextPath}")
        }
    
        URI getServerUri() {
            server.uri
        }
    
        String getIvyPattern() {
            return "$uri/${backingRepository.baseIvyPattern}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. build-logic/profiling/src/main/kotlin/gradlebuild.buildscan.gradle.kts

    import java.net.InetAddress
    import java.net.URLEncoder
    
    plugins {
        id("gradlebuild.collect-failed-tasks")
        id("gradlebuild.cache-miss-monitor")
        id("gradlebuild.module-identity")
    }
    
    val serverUrl = "https://ge.gradle.org"
    val gitCommitName = "gitCommitId"
    val tcBuildTypeName = "tcBuildType"
    
    // We can not use plugin {} because this is registered by a settings plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    	server := httptest.NewUnstartedServer(http.HandlerFunc(serveHTTP))
    	server.TLS = tlsConfig
    	server.StartTLS()
    
    	// Adjust the path to point to our custom path
    	serverURL, _ := url.Parse(server.URL)
    	serverURL.Path = webhookPath
    	server.URL = serverURL.String()
    
    	return server, nil
    }
    
    // A service that can be set to allow all or deny all authorization requests.
    type mockV1beta1Service struct {
    	allow      bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. cmd/prepare-storage.go

    // isServerResolvable - checks if the endpoint is resolvable
    // by sending a naked HTTP request with liveness checks.
    func isServerResolvable(endpoint Endpoint, timeout time.Duration) error {
    	serverURL := &url.URL{
    		Scheme: endpoint.Scheme,
    		Host:   endpoint.Host,
    		Path:   pathJoin(healthCheckPathPrefix, healthCheckLivenessPath),
    	}
    
    	httpClient := &http.Client{
    		Transport: globalInternodeTransport,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. cmd/storage-rest-client.go

    func newStorageRESTClient(endpoint Endpoint, healthCheck bool, gm *grid.Manager) (*storageRESTClient, error) {
    	serverURL := &url.URL{
    		Scheme: endpoint.Scheme,
    		Host:   endpoint.Host,
    		Path:   path.Join(storageRESTPrefix, endpoint.Path, storageRESTVersion),
    	}
    
    	restClient := rest.NewClient(serverURL, globalInternodeTransport, newCachedAuthToken())
    	if healthCheck {
    		// Use a separate client to avoid recursive calls.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/extauthz.go

    	config *meshconfig.MeshConfig_ExtensionProvider_EnvoyExternalAuthorizationHttpProvider,
    ) *builtExtAuthz {
    	service := &extauthzhttp.HttpService{
    		PathPrefix: config.PathPrefix,
    		ServerUri: &core.HttpUri{
    			// Timeout is required.
    			Timeout: timeoutOrDefault(config.Timeout),
    			// Uri is required but actually not used in the ext_authz filter.
    			Uri: fmt.Sprintf("http://%s", hostname),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. cmd/peer-rest-client.go

    	scheme := "http"
    	if globalIsTLS {
    		scheme = "https"
    	}
    
    	serverURL := &url.URL{
    		Scheme: scheme,
    		Host:   peer.String(),
    		Path:   peerRESTPath,
    	}
    
    	restClient := rest.NewClient(serverURL, globalInternodeTransport, newCachedAuthToken())
    	// Use a separate client to avoid recursive calls.
    	healthClient := rest.NewClient(serverURL, globalInternodeTransport, newCachedAuthToken())
    	healthClient.NoMetrics = true
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. cmd/common-main.go

    			}
    			globalBrowserRedirectURL = u
    		}
    		globalBrowserRedirect = env.Get(config.EnvBrowserRedirect, config.EnableOn) == config.EnableOn
    	}
    
    	if serverURL := env.Get(config.EnvMinIOServerURL, ""); serverURL != "" {
    		u, err := xnet.ParseHTTPURL(serverURL)
    		if err != nil {
    			logger.Fatal(err, "Invalid MINIO_SERVER_URL value in environment variable")
    		}
    		// Look for if URL has invalid values and return error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    	server := httptest.NewUnstartedServer(http.HandlerFunc(serveHTTP))
    	server.TLS = tlsConfig
    	server.StartTLS()
    
    	// Adjust the path to point to our custom path
    	serverURL, _ := url.Parse(server.URL)
    	serverURL.Path = webhookPath
    	server.URL = serverURL.String()
    
    	return server, nil
    }
    
    // A service that can be set to allow all or deny all authorization requests.
    type mockV1Service struct {
    	allow      bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top