Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 700 for tcagent (0.41 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/JacocoAgentJar.java

        private FileCollection agentConf;
        private File agentJar;
    
        /**
         * Constructs a new agent JAR wrapper.
         */
        @Inject
        public JacocoAgentJar(FileOperations fileOperations) {
            this.fileOperations = fileOperations;
        }
    
        /**
         * @return the configuration that the agent JAR is located in
         */
        public FileCollection getAgentConf() {
            return agentConf;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/01-pkgsite.yml

          label: "What is the URL of the page with the issue?"
        validations:
          required: true
      - type: input
        id: user-agent
        attributes:
          label: "What is your user agent?"
          description: "You can find your user agent here: https://www.google.com/search?q=what+is+my+user+agent"
        validations:
          required: true
      - type: textarea
        id: screenshot
        attributes:
          label: "Screenshot"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

    // This test doesn't live in :instrumentation-agent to avoid the latter being implicitly added to
    // the test runtime classpath as part of the main source set's output.
    // It is important to have the agent appended to the classpath of all integration tests.
    class AgentApplicationTest extends AbstractIntegrationSpec {
        def "agent is enabled by default"() {
            given:
            withDumpAgentStatusTask()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_header_params/test_tutorial001_py310.py

    @needs_py310
    @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, client: TestClient):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        /**
         * Creates a Jacoco task extension.
         *
         * @param objects the object factory
         * @param agent the agent JAR to use for analysis
         * @param task the task we extend
         */
        @Inject
        public JacocoTaskExtension(ObjectFactory objects, JacocoAgentJar agent, JavaForkOptions task) {
            this.agent = agent;
            this.task = task;
            destinationFile = objects.property(File.class);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    }
    
    func NewWarningHeader(code int, agent, text string) (string, error) {
    	if code < 0 || code > 999 {
    		return "", errors.New("code must be between 0 and 999")
    	}
    	if len(agent) == 0 {
    		agent = "-"
    	} else if !utf8.ValidString(agent) || strings.ContainsAny(agent, `\"`) || hasAnyRunes(agent, unicode.IsSpace, unicode.IsControl) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/app/cmd.go

    	"istio.io/istio/pilot/cmd/pilot-agent/config"
    	"istio.io/istio/pilot/cmd/pilot-agent/options"
    	"istio.io/istio/pilot/cmd/pilot-agent/status"
    	"istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pkg/bootstrap"
    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/collateral"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/envoy"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_header_params/test_tutorial001_an_py310.py

    @needs_py310
    @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, client: TestClient):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. pkg/config/validation/validation_agent.go

    //go:build agent
    // +build agent
    
    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 18:02:37 UTC 2022
    - 860 bytes
    - Viewed (0)
  10. pkg/envoy/agent_test.go

    // limitations under the License.
    
    package envoy
    
    import (
    	"context"
    	"net"
    	"testing"
    
    	"istio.io/istio/pilot/cmd/pilot-agent/status/testserver"
    )
    
    var invalidStats = ""
    
    var downstreamCxPostiveAcStats = "http.admin.downstream_cx_active: 2 \n" +
    	"http.agent.downstream_cx_active: 0 \n" +
    	"http.inbound_0.0.0.0_8080.downstream_cx_active: 0 \n" +
    	"listener.0.0.0.0_15001.downstream_cx_active: 0 \n" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 20:22:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top