Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 700 for tcagent (0.23 sec)

  1. pkg/bootstrap/testdata/stats_inclusion_golden.json

                    }
                  }
                }]
              }]
            }
          },
          {
            "name": "agent",
            "type": "STATIC",
            "connect_timeout": "0.250s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "agent",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pkg/probe/http/request.go

    	if err != nil {
    		return nil, err
    	}
    
    	if headers == nil {
    		headers = http.Header{}
    	}
    	if _, ok := headers["User-Agent"]; !ok {
    		// User-Agent header was not defined, set it
    		headers.Set("User-Agent", userAgent(userAgentFragment))
    	}
    	if _, ok := headers["Accept"]; !ok {
    		// Accept header was not defined. accept all
    		headers.Set("Accept", "*/*")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 07:39:55 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/cors.go

    //	 agents to issue an HTTP request.  In those cases, the user agent MAY
    //	 list all the origins in the Origin header field. For example, if the
    //	 HTTP request was initially issued by one origin but then later
    //	 redirected by another origin, the user agent MAY inform the server
    //	 that two origins were involved in causing the user agent to issue the
    //	 request
    //			origin-list = serialized-origin *( SP serialized-origin )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 13:59:10 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/validation.go

    // limitations under the License.
    
    package model
    
    import (
    	"fmt"
    	"strings"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/validation/agent"
    )
    
    // UnixAddressPrefix is the prefix used to indicate an address is for a Unix Domain socket. It is used in
    // ServiceEntry.Endpoint.Address message.
    const (
    	UnixAddressPrefix          = "unix://"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/runningsds_golden.json

                    }
                  }
                }]
              }]
            }
          },
          {
            "name": "agent",
            "type": "STATIC",
            "connect_timeout": "0.250s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "agent",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. manifests/helm-profiles/preview.yaml

    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    meshConfig:
      defaultConfig:
        proxyMetadata:
          # Enable Istio agent to handle DNS requests for known hosts
          # Unknown hosts will automatically be resolved using upstream dns servers in resolv.conf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 08:50:01 UTC 2024
    - 451 bytes
    - Viewed (0)
  7. docs/features/interceptors.md

    OkHttpClient client = new OkHttpClient.Builder()
        .addInterceptor(new LoggingInterceptor())
        .build();
    
    Request request = new Request.Builder()
        .url("http://www.publicobject.com/helloworld.txt")
        .header("User-Agent", "OkHttp Example")
        .build();
    
    Response response = client.newCall(request).execute();
    response.body().close();
    ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/context/DaemonCompatibilitySpecSpec.groovy

            candidate.shouldApplyInstrumentationAgent() >> !clientStatus
    
            expect:
            !compatible
            unsatisfiedReason.contains "Agent status is different"
    
            where:
            clientStatus << [true, false]
        }
    
        def "context with same agent status"() {
            clientWants(requestedJvm: Jvm.forHome(javaHome), applyInstrumentationAgent: clientStatus)
            candidate.javaHome >> javaHome
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        - influxdb:1.2.2
        sizeBytes: 223948571
      - names:
        - gcr.io/stackdriver-agents/stackdriver-logging-agent@sha256:f8d5231b67b9c53f60068b535a11811d29d1b3efd53d2b79f2a2591ea338e4f2
        - gcr.io/stackdriver-agents/stackdriver-logging-agent:0.6-1.6.0-1
        sizeBytes: 223242132
      - names:
        - nginx@sha256:35779791c05d119df4fe476db8f47c0bee5943c83eba5656a15fc046db48178b
        - nginx:1.10.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/status/grpcready/probe.go

    // limitations under the License.
    
    package grpcready
    
    import (
    	"fmt"
    	"sync"
    
    	"istio.io/istio/pilot/cmd/pilot-agent/status/ready"
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/istio-agent/grpcxds"
    )
    
    var _ ready.Prober = &probe{}
    
    type probe struct {
    	sync.RWMutex
    	bootstrapPath string
    	bootstrap     *grpcxds.Bootstrap
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 28 16:58:31 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top