Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 586 for tcagent (0.17 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPluginExtension.java

        private final FileSystemOperations fs;
        private final JacocoAgentJar agent;
    
        private String toolVersion;
        private final DirectoryProperty reportsDirectory;
    
        /**
         * Creates a Jacoco plugin extension.
         *
         * @param project the project the extension is attached to
         * @param agent the agent JAR to be used by Jacoco
         */
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/next_pluggable_device/c_api.h

        TF_CoordinationServiceAgent* agent);
    
    TF_CAPI_EXPORT extern void TF_CoordinationServiceInsertKeyValue(
        const char* key, int64_t key_size, const char* value, int64_t value_size,
        TF_CoordinationServiceAgent* agent, TF_Status* status);
    
    // Obtains key-value from coordination service agent. The returned `TF_Buffer`
    // is a newly allocated buffer to hold the string key-value, and caller is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

        assertFailsWith<NullPointerException> {
          (mapOf("User-Agent" to null) as Map<String, String>).toHeaders()
        }
      }
    
      @Test fun toMultimapGroupsHeaders() {
        val headers =
          Headers.headersOf(
            "cache-control",
            "no-cache",
            "cache-control",
            "no-store",
            "user-agent",
            "OkHttp",
          )
        val headerMap = headers.toMultimap()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. samples/security/spire/spire-quickstart.yaml

    # Binds above cluster role to spire-agent service account.
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: spire-agent-cluster-role-binding
    subjects:
    - kind: ServiceAccount
      name: spire-agent
      namespace: spire
    roleRef:
      kind: ClusterRole
      name: spire-agent-cluster-role
      apiGroup: rbac.authorization.k8s.io
    
    ---
    # ConfigMap for the SPIRE agent featuring:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  5. pkg/config/validation/agent/extensionprovider_test.go

    			config: &meshconfig.MeshConfig_ExtensionProvider_DatadogTracingProvider{
    				Service: "datadog-agent.com",
    				Port:    8126,
    			},
    			valid: true,
    		},
    		{
    			name: "datadog service with namespace",
    			config: &meshconfig.MeshConfig_ExtensionProvider_DatadogTracingProvider{
    				Service: "namespace/datadog-agent.com",
    				Port:    8126,
    			},
    			valid: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/JavaAgentFixture.groovy

            javaAgentProjectDir.file('src/main/java/Agent.java').text = javaAgentClassContent
            javaAgentProjectDir.file('build.gradle').text = buildScriptContent
        }
    
        String getJavaAgentClassContent() {
            return """
                import java.lang.instrument.Instrumentation;
    
                public class Agent {
                    public static void premain(String args, Instrumentation instrumentation){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentStatus.java

    public interface AgentStatus {
        /**
         * Checks if the agent-based bytecode instrumentation is enabled for the current JVM process.
         *
         * @return {@code true} if the agent instrumentation should be used
         */
        boolean isAgentInstrumentationEnabled();
    
        /**
         * Returns an AgentStatus instance that enables instrumentation if the agent is available.
         */
        static AgentStatus allowed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

    import javax.annotation.Nullable;
    import java.security.ProtectionDomain;
    
    /**
     * A ClassLoader implementing this interface gets a special treatment from the instrumenting Java agent.
     * When such a classloader attempts to define a class, the agent calls {@link #instrumentClass(String, ProtectionDomain, byte[])} method
     * giving the classloader a chance to rewrite the bytecode of the class.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentInitializer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.agent;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Initializes the instrumenting agent.
     */
    @ServiceScope(Scope.Global.class)
    public class AgentInitializer {
        private final AgentStatus agentStatus;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy.go

    func (p *XdsProxy) getTLSOptions(agent *Agent) (*istiogrpc.TLSOptions, error) {
    	if agent.proxyConfig.ControlPlaneAuthPolicy == meshconfig.AuthenticationPolicy_NONE {
    		return nil, nil
    	}
    	xdsCACertPath, err := agent.FindRootCAForXDS()
    	if err != nil {
    		return nil, fmt.Errorf("failed to find root CA cert for XDS: %v", err)
    	}
    	key, cert := agent.GetKeyCertsForXDS()
    	return &istiogrpc.TLSOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top