Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for Funnels (1.22 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

    import groovy.lang.Closure;
    import org.gradle.api.GradleException;
    import org.gradle.test.fixtures.ConcurrentTestUtil;
    import org.junit.rules.TestRule;
    import org.junit.runner.Description;
    import org.junit.runners.model.Statement;
    
    import java.io.IOException;
    import java.util.Random;
    import java.util.regex.Pattern;
    
    
    /**
     * A JUnit rule which provides a unique temporary folder for the test.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/ztunnelserver.go

    type ZtunnelServer interface {
    	Run(ctx context.Context)
    	PodDeleted(ctx context.Context, uid string) error
    	PodAdded(ctx context.Context, pod *v1.Pod, netns Netns) error
    	Close() error
    }
    
    /*
    To clean up stale ztunnels
    
    	we may need to ztunnel to send its (uid, bootid / boot time) to us
    	so that we can remove stale entries when the ztunnel pod is deleted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/constants/constants.go

    	LocalOutboundPortsExclude = "istio-local-outbound-ports-exclude"
    	EnvoyPort                 = "envoy-port"
    	InboundCapturePort        = "inbound-capture-port"
    	InboundTunnelPort         = "inbound-tunnel-port"
    	ProxyUID                  = "proxy-uid"
    	ProxyGID                  = "proxy-gid"
    	KubeVirtInterfaces        = "kube-virt-interfaces"
    	DryRun                    = "dry-run"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginGradlePluginCrossVersionSmokeTest.kt

    import org.hamcrest.CoreMatchers.allOf
    import org.hamcrest.CoreMatchers.containsString
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    import org.junit.runner.RunWith
    import org.junit.runners.Parameterized
    
    
    @RunWith(Parameterized::class)
    class KotlinDslPluginGradlePluginCrossVersionSmokeTest(
        kotlinVersionString: String
    ) : AbstractKotlinIntegrationTest() {
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:39:25 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. .github/workflows/build.yml

              java-version: 17
    
          - name: Enable KVM group perms
            # https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/
            run: |
              echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
              sudo udevadm control --reload-rules
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    	}
    	return
    }
    
    func validateTunnelSettings(tunnel *networking.TrafficPolicy_TunnelSettings) (errs error) {
    	if tunnel == nil {
    		return
    	}
    	if tunnel.Protocol != "" && tunnel.Protocol != "CONNECT" && tunnel.Protocol != "POST" {
    		errs = appendErrors(errs, fmt.Errorf("tunnel protocol must be \"CONNECT\" or \"POST\""))
    	}
    	fqdnErr := agent.ValidateFQDN(tunnel.TargetHost)
    	ipErr := agent.ValidateIPAddress(tunnel.TargetHost)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.proto

      // WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
      string workload_name = 13;
    
      // If set, this indicates a workload expects to directly receive tunnel traffic.
      // In ztunnel, this means:
      // * Requests *from* this workload do not need to be tunneled if they already are tunneled by the tunnel_protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_waypoint.go

    	listeners := []*listener.Listener{}
    	// We create 3 listeners:
    	// 1. Decapsulation CONNECT listener.
    	// 2. IP dispatch listener, handling both VIPs and direct pod IPs.
    	// 3. Encapsulation CONNECT listener, originating the tunnel
    	wls, wps := findWaypointResources(lb.node, lb.push)
    
    	listeners = append(listeners,
    		lb.buildWaypointInboundConnectTerminate(),
    		lb.buildWaypointInternal(wls, wps.orderedServices),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      //  "decipher only",
      //  "any",
      //  "server auth",
      //  "client auth",
      //  "code signing",
      //  "email protection",
      //  "s/mime",
      //  "ipsec end system",
      //  "ipsec tunnel",
      //  "ipsec user",
      //  "timestamping",
      //  "ocsp signing",
      //  "microsoft sgc",
      //  "netscape sgc"
      // +listType=atomic
      repeated string usages = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1/types.go

    	//  "cert sign", "crl sign", "encipher only", "decipher only", "any",
    	//  "server auth", "client auth",
    	//  "code signing", "email protection", "s/mime",
    	//  "ipsec end system", "ipsec tunnel", "ipsec user",
    	//  "timestamping", "ocsp signing", "microsoft sgc", "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top