Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 700 for tcagent (0.2 sec)

  1. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

      {{- end }}
      {{- if .Values.global.logAsJson }}
        - --log_as_json
      {{- end }}
        lifecycle:
          postStart:
            exec:
              command:
              - pilot-agent
              - wait
              - --url=http://localhost:15020/healthz/ready
        env:
        - name: ISTIO_META_GENERATOR
          value: grpc
        - name: OUTPUT_CERTS
          value: /var/lib/istio/data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    		{
    			name:    "agent with space",
    			code:    299,
    			agent:   `test agent`,
    			text:    `example warning`,
    			wantErr: `agent must be valid`,
    		},
    		{
    			name:    "agent with newline",
    			code:    299,
    			agent:   "test\nagent",
    			text:    `example warning`,
    			wantErr: `agent must be valid`,
    		},
    		{
    			name:    "agent with backslash",
    			code:    299,
    			agent:   `test\agent`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/build.gradle.kts

    }
    
    /*
     * This is needed to avoid CI failures like this:
     *
     * Failed to stop service 'testFilesCleanupBuildService'.
       > Found non-empty test files dir:
        /home/tcagent1/agent/work/f63322e10dd6b396/platforms/ide/ide-plugins/build/tmp/teŝt files/EclipseInte.Test:
         canHandleCi.cies/xinjd/build/reports/configuration-cache/f5dmqyt5fw1qx1u5ylf7c1p2p/f1jute3awhw927kq95bbyi89k/configuration-cache-report.html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

        // /usr/bin/ld: /home/tcagent1/agent/work/e67123fb5b9af0ac/subprojects/platform-native/build/tmp/teŝt files/NativePlatf.Test/89jnk/sourceset-variant/build/objs/main/mainExecutablePlatformLinux/3aor34f2b62iejk2eq3fn5ikr/platform-linux.o:(.data+0x0): multiple definition of `platform_name';
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. releasenotes/notes/agent-startup.yaml

    John Howard <******@****.***> 1602717289 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 14 23:14:49 UTC 2020
    - 183 bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

     [3A [1m< [0;32;1;0;39;1m-------------> 0% CONFIGURING [5s] [m [35D [1B [1m> root project > Compiling C:\\tcagent1\\work\\4b92f910977a653d\\subprojects\\logging\\build\\tmp\\teŝt files\\ConsoleBuildSrcFunctional...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. src/math/tan.go

    package math
    
    /*
    	Floating-point tangent.
    */
    
    // The original C code, the long comment, and the constants
    // below were from http://netlib.sandia.gov/cephes/cmath/sin.c,
    // available from http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a simplified version of the original C.
    //
    //      tan.c
    //
    //      Circular tangent
    //
    // SYNOPSIS:
    //
    // double x, y, tan();
    // y = tan( x );
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_header_params/test_tutorial001.py

    
    @pytest.mark.parametrize(
        "path,headers,expected_status,expected_response",
        [
            ("/items", None, 200, {"User-Agent": "testclient"}),
            ("/items", {"X-Header": "notvalid"}, 200, {"User-Agent": "testclient"}),
            ("/items", {"User-Agent": "FastAPI test"}, 200, {"User-Agent": "FastAPI test"}),
        ],
    )
    def test(path, headers, expected_status, expected_response):
        response = client.get(path, headers=headers)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/math/tanh.go

    // available from http://www.netlib.org/cephes/cmath.tgz.
    // The go code is a simplified version of the original C.
    //      tanh.c
    //
    //      Hyperbolic tangent
    //
    // SYNOPSIS:
    //
    // double x, y, tanh();
    //
    // y = tanh( x );
    //
    // DESCRIPTION:
    //
    // Returns hyperbolic tangent of argument in the range MINLOG to MAXLOG.
    //      MAXLOG = 8.8029691931113054295988e+01 = log(2**127)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/HeadersTest.kt

      @Test fun ofMapAcceptsEmptyValue() {
        val headers = mapOf("User-Agent" to "").toHeaders()
        assertThat(headers.value(0)).isEqualTo("")
      }
    
      @Test fun ofMapTrimsKey() {
        val headers = mapOf(" User-Agent " to "OkHttp").toHeaders()
        assertThat(headers.name(0)).isEqualTo("User-Agent")
      }
    
      @Test fun ofMapTrimsValue() {
        val headers = mapOf("User-Agent" to " OkHttp ").toHeaders()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top