Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for tcagent (0.17 sec)

  1. internal/s3select/select_test.go

    			wantResult: `{"request":{"uri":"/1","header":{"User-Agent":"test"}}}`,
    			withJSON: `{"request":{"uri":"/1","header":{"User-Agent":"test"}}}
    {"request":{"uri":"/2","header":{}}}`,
    		},
    		{
    			name:       "is-not-missing",
    			query:      `select * from s3object[*] as s where s.request.header['User-Agent'] is not missing`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    function DownloadAndInstall-LoggingAgents {
      # Install Logging agent if not present
      if (ShouldWrite-File $LOGGINGAGENT_ROOT\td-agent-bit-${LOGGINGAGENT_VERSION}-win64) {
          $install_dir = 'C:\flb-installers'
          $url = ("https://storage.googleapis.com/gke-release/winnode/fluentbit/td-agent-bit-${LOGGINGAGENT_VERSION}-win64.zip")
    
          Log-Output 'Downloading Logging agent'
          New-Item $install_dir -ItemType 'directory' -Force | Out-Null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/testdata/config_dump.json

            {
              "cluster": {
                "@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster",
                "name": "agent",
                "type": "STATIC",
                "connect_timeout": "0.250s",
                "load_assignment": {
                  "cluster_name": "agent",
                  "endpoints": [
                    {
                      "lb_endpoints": [
                        {
                          "endpoint": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			}
    			route := ws.GET(action.Path).To(handler).
    				Doc(doc).
    				Param(ws.QueryParameter("pretty", "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).")).
    				Operation("read"+namespaced+kind+strings.Title(subresource)+operationSuffix).
    				Produces(append(storageMeta.ProducesMIMETypes(action.Verb), mediaTypes...)...).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/net/http/request.go

    	// may be blank to not send the header.
    	userAgent := defaultUserAgent
    	if r.Header.has("User-Agent") {
    		userAgent = r.Header.Get("User-Agent")
    	}
    	if userAgent != "" {
    		userAgent = headerNewlineToSpace.Replace(userAgent)
    		userAgent = textproto.TrimString(userAgent)
    		_, err = fmt.Fprintf(w, "User-Agent: %s\r\n", userAgent)
    		if err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/net/http/client_test.go

    	var b []byte
    	if err == nil {
    		b, err = pedanticReadAll(r.Body)
    		r.Body.Close()
    	}
    	if err != nil {
    		t.Error(err)
    	} else if s := string(b); !strings.HasPrefix(s, "User-agent:") {
    		t.Errorf("Incorrect page body (did not begin with User-agent): %q", s)
    	}
    }
    
    func TestClientHead(t *testing.T) { run(t, testClientHead) }
    func testClientHead(t *testing.T, mode testMode) {
    	cst := newClientServerTest(t, mode, robotsTxtHandler)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    			Obfuscate: "<redacted/>",
    		},
    		ExpectXML:   `<agent handle="007"><Identity>James Bond</Identity><redacted/></agent>`,
    		MarshalOnly: true,
    	},
    	{
    		Value: &SecretAgent{
    			Handle:    "007",
    			Identity:  "James Bond",
    			Obfuscate: "<Identity>James Bond</Identity><redacted/>",
    		},
    		ExpectXML:     `<agent handle="007"><Identity>James Bond</Identity><redacted/></agent>`,
    		UnmarshalOnly: true,
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import org.gradle.internal.buildprocess.BuildProcessState;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.featurelifecycle.LoggingDeprecatedFeatureHandler;
    import org.gradle.internal.instrumentation.agent.AgentStatus;
    import org.gradle.internal.jvm.JavaHomeException;
    import org.gradle.internal.jvm.Jvm;
    import org.gradle.internal.jvm.inspection.JvmVersionDetector;
    import org.gradle.internal.logging.LoggingManagerInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

                exec:
                  command:
                  - pilot-agent
                  - wait
          {{- else if $nativeSidecar }}
            {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
            lifecycle:
              preStop:
                exec:
                  command:
                  - pilot-agent
                  - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello.yaml.14.template.gen.yaml

                exec:
                  command:
                  - pilot-agent
                  - wait
          {{- else if $nativeSidecar }}
            {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
            lifecycle:
              preStop:
                exec:
                  command:
                  - pilot-agent
                  - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top