Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 633 for tcagent (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

            where:
            factory << [AGENT, LEGACY]
        }
    
        def "agent instrumentation removes resources from transformed jar"() {
            given:
            def testFile = jar(testDir.file("thing.jar")) {
                manifest {}
    
                entry("Foo.class", classOne())
                entry("resource.txt", "")
            }
    
            expect:
            with(transformJar(AGENT, testFile)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/options/statusserver.go

    import (
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/cmd/pilot-agent/status"
    	"istio.io/istio/pilot/cmd/pilot-agent/status/ready"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/model"
    )
    
    func NewStatusServerOptions(ipv6 bool, t model.NodeType, proxyConfig *meshconfig.ProxyConfig, agent *istioagent.Agent) *status.Options {
    	return &status.Options{
    		IPv6:           ipv6,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoTaskExtensionSpec.groovy

            setup:
            agent.supportsJmx() >> true
            agent.supportsInclNoLocationClasses() >> true
            agent.jar >> temporaryFolder.file('fakeagent.jar')
            task.getWorkingDir() >> temporaryFolder.file(".")
            expect:
            extension.asJvmArg == "-javaagent:${agent.jar.absolutePath}=append=true,inclnolocationclasses=false,dumponexit=true,output=file,jmx=false"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/warning/context.go

    // AddWarning records a warning for the specified agent and text to the Recorder added to the provided context using WithWarningRecorder().
    // If no Recorder exists in the provided context, this is a no-op.
    // agent must be valid UTF-8, and must not contain spaces, quotes, backslashes, or control characters.
    // text must be valid UTF-8, and must not contain control characters.
    func AddWarning(ctx context.Context, agent string, text string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 24 16:37:53 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

     * <p>
     * The agent class must follow a special protocol to be recognized properly: the class should have a method:
     * <pre>
     *     public static boolean isApplied()
     * </pre>
     * that returns if the agent is applied, i.e. if one of its {@code premain} or {@code agentmain} entry methods was called.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TapiAgentInstrumentationCrossVersionSpec.groovy

        def setup() {
            // TODO(mlopatkin) Figure a way to have agent-based instrumentation in the embedded TAPI mode.
            toolingApi.requireDaemons()
        }
    
        def "agent is enabled in TAPI by default"() {
            withDumpAgentStatusTask()
    
            when:
            runDumpTaskWithTapi()
    
            then:
            agentWasApplied()
        }
    
        def "agent is applied if enabled in settings"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. 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)
  8. tests/test_tutorial/test_header_params/test_tutorial001_an.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/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

        }
    
        public void test_getUserAgentType_IE9() {
            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.0; Trident/5.0)");
            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_IE10() {
            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. .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)
Back to top