Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 400 for _run (0.1 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    	for _, uid := range split(proxyUID) {
    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--uid-owner", uid, "-j", constants.RETURN)
    	}
    	for _, gid := range split(proxyGID) {
    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--gid-owner", gid, "-j", constants.RETURN)
    	}
    
    	if ownerGroupsFilter.Except {
    		for _, group := range ownerGroupsFilter.Values {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. docs/site-replication/run-replication-with-checksum-header.sh

    Shubhendu <******@****.***> 1717863855 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. docs/site-replication/run-ssec-object-replication-with-compression.sh

    Klaus Post <******@****.***> 1718033511 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pkg/test/framework/suite.go

    	// Mark this suite as skipped in the context.
    	ctx.skipped = true
    
    	// Run the tests so that the golang test framework exits normally. The tests will not run because
    	// they see that this suite has been skipped.
    	_ = s.mRun(ctx)
    
    	// Return success.
    	return 0
    }
    
    func (s *suiteImpl) run() (errLevel int) {
    	tc, shutdown, err := tracing.InitializeFullBinary(s.testID)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/options_test.go

    		"--kubelet-timeout=5s",
    		"--kubelet-client-certificate=/var/run/kubernetes/ceserver.crt",
    		"--kubelet-client-key=/var/run/kubernetes/server.key",
    		"--kubelet-certificate-authority=/var/run/kubernetes/caserver.crt",
    		"--tracing-config-file=/var/run/kubernetes/tracing_config.yaml",
    		"--proxy-client-cert-file=/var/run/kubernetes/proxy.crt",
    		"--proxy-client-key-file=/var/run/kubernetes/proxy.key",
    		"--request-timeout=2m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/options/options_test.go

    		"--contention-profiling=true",
    		"--egress-selector-config-file=/var/run/kubernetes/egress-selector/connectivity.yaml",
    		"--enable-aggregator-routing=true",
    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    		"--http2-max-streams-per-connection=42",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/test/framework/test.go

    	//
    	// Since both T1 and T2 are non-parallel, they are run synchronously: T1 followed by T2. After T1 exits,
    	// T1a and T1b are run asynchronously with each other. After T1a and T1b complete, T2 is then run in the
    	// same way: T2 exits, then T2a and T2b are run asynchronously to completion.
    	RunParallel(fn func(t TestContext))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemsServiceIntegTest.groovy

        }
    
        def "problems are reported through the Problems API"() {
            given:
            buildFile """
                gradle.buildFinished { }
    
                task run
            """
    
            when:
            configurationCacheRunLenient 'run'
    
            then:
            problems.assertResultHasProblems(result) {
                withTotalProblemsCount(1)
                withUniqueProblems(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. pkg/test/framework/suite_test.go

    	var setupCalled bool
    	s.Setup(func(c resource.Context) error {
    		setupCalled = true
    		return fmt.Errorf("can't run this")
    	})
    	s.Run()
    
    	g.Expect(setupCalled).To(BeTrue())
    	g.Expect(runCalled).To(BeFalse())
    }
    
    func TestSuite_Cleanup(t *testing.T) {
    	t.Run("cleanup", func(t *testing.T) {
    		defer cleanupRT()
    		g := NewWithT(t)
    
    		var cleanupCalled bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

            [":finalized:dep", ":finalized:task", ":finalizer:dep", ":finalizer:task"].each {
                server.expectConcurrent(it)
            }
            configurationCacheRun ":finalized:task", "--parallel"
            configurationCache.assertStateStored()
    
            and: "unrequested finalizer dependencies not to run in parallel when loading the graph"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top