Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 700 for tcagent (0.11 sec)

  1. 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)
  2. 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)
  3. .teamcity/src/main/kotlin/util/WarmupEc2Agent.kt

    import vcsroots.useAbsoluteVcs
    
    object WarmupEc2Agent : BuildType({
        name = "Warmup EC2 Agent"
        id("Util_WarmupEc2Agent")
    
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId())
    
        features {
            freeDiskSpace {
                // Lower the limit such that the agent work directories aren't cleaned during the AMI baking process
                requiredSpace = "100mb"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. samples/security/spire/README.md

      $ kubectl apply -f spire-quickstart.yaml
      ```
    
    1. Ensure that the deployment is completed before moving to the next step. This can be verified by waiting on the `spire-agent` pod to become ready:
    
      ```bash
      $ kubectl wait pod --for=condition=ready -n spire -l app=spire-agent
      ```
    
    1. Use the configuration profile provided to install Istio (requires istioctl v1.14+):
    
      ```bash
      $ istioctl install -f istio-spire-config.yaml
      ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/log/slog/example_logvaluer_group_test.go

    		slog.String("last", n.Last))
    }
    
    func ExampleLogValuer_group() {
    	n := Name{"Perry", "Platypus"}
    	slog.Info("mission accomplished", "agent", n)
    
    	// JSON Output would look in part like:
    	// {
    	//     ...
    	//     "msg": "mission accomplished",
    	//     "agent": {
    	//         "first": "Perry",
    	//         "last": "Platypus"
    	//     }
    	// }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 825 bytes
    - Viewed (0)
  6. src/math/cmplx/asin.go

    	}
    	w := Acos(x)
    	if imag(w) <= 0 {
    		return complex(-imag(w), real(w)) // i * w
    	}
    	return complex(imag(w), -real(w)) // -i * w
    }
    
    // Complex circular arc tangent
    //
    // DESCRIPTION:
    //
    // If
    //     z = x + iy,
    //
    // then
    //          1       (    2x     )
    // Re w  =  - arctan(-----------)  +  k PI
    //          2       (     2    2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/tracing_test.go

    			contents: `
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: agent
    spec:
      selector:
        matchLabels:
          k8s-app: agent
      template:
        metadata:
          labels:
            k8s-app: agent
        spec:
          containers:
            - image: registry.k8s.io/busybox
              name: agent
    `,
    			expectedResult: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/math/cmplx/tan.go

    }
    
    // Complex hyperbolic tangent
    //
    // DESCRIPTION:
    //
    // tanh z = (sinh 2x  +  i sin 2y) / (cosh 2x + cos 2y) .
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    IEEE      -10,+10     30000       1.7e-14     2.4e-16
    
    // Tanh returns the hyperbolic tangent of x.
    func Tanh(x complex128) complex128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  9. tools/packaging/common/gcp_envoy_bootstrap.json

               }
           }
          }
         ]
      },
      "static_resources": {
        "clusters": [
          {
            "name": "agent",
            "type": "STATIC",
            "connect_timeout": "0.250s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "agent",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. samples/grpc-echo/README.md

    # grpc-echo
    
    This sample demonstrates Istio's Proxyless gRPC support with a special injection template `grpc-agent`.
    The template injects the `istio-proxy` sidecar, but the sidecar will only run `pilot-agent` and not envoy.
    
    See the [gRPC xDS feature status](https://github.com/grpc/grpc/blob/master/doc/grpc_xds_features.md) for more
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 20:15:35 UTC 2021
    - 348 bytes
    - Viewed (0)
Back to top