Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for _run (0.17 sec)

  1. tests/integration/ambient/baseline_test.go

    					src.CallOrFail(t, opt)
    				})
    			}
    		}
    		t.NewSubTest("before").Run(check)
    
    		SetWaypoint(t, Captured, "bogus-waypoint")
    		t.NewSubTest("with waypoint").Run(check)
    
    		SetWaypoint(t, Captured, "")
    		t.NewSubTest("waypoint removed").Run(check)
    	})
    }
    
    func TestServerRouting(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		})
    		t.Run("sidecar", func(t *testing.T) {
    			testInboundListenerConfigWithSidecar(t, p,
    				buildService("test.com", wildcardIPv4, protocol.HTTP, tnow))
    		})
    		t.Run("sidecar with service", func(t *testing.T) {
    			testInboundListenerConfigWithSidecarWithoutServices(t, p)
    		})
    	}
    
    	t.Run("services target port conflict with static listener", func(t *testing.T) {
    		p := getProxy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. .bazelrc

    # Linux x86 so that we can use RBE. Since tests still need to run on the single
    # host Arm64 machine, the build becomes too slow (~30 min) to be a presubmit.
    # For testing purposes, we want to see the runtime performance of an
    # experimental job that is build-only, i.e, we only build the test targets and
    # do not run them. By prefixing the configs with "build", we can run both
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging_test.go

    			formatString: "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)%",
    			expected:     "[%START_TIME%] %REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)%\n",
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			got := fileAccessLogFormat(tc.formatString)
    			assert.Equal(t, tc.expected, got)
    		})
    	}
    }
    
    func TestAccessLogging(t *testing.T) {
    	labels := map[string]string{"app": "test"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			name:                      "skip checking resource request with quantity zero",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    	}
    
    	for _, test := range enoughPodsTests {
    		t.Run(test.name, func(t *testing.T) {
    			node := v1.Node{Status: v1.NodeStatus{Capacity: makeResources(10, 20, 32, 5, 20, 5), Allocatable: makeAllocatableResources(10, 20, 32, 5, 20, 5)}}
    			test.nodeInfo.SetNode(&node)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    	baseTestCases := []TestSuiteCommon{
    		// Init and run test on ErasureSD backend with signature v4.
    		{serverType: "ErasureSD", signer: signerV4},
    		// Init and run test on ErasureSD backend, with tls enabled.
    		{serverType: "ErasureSD", signer: signerV4, secure: true},
    		// Init and run test on Erasure backend.
    		{serverType: "Erasure", signer: signerV4},
    		// Init and run test on ErasureSet backend.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			}
    		}
    	}
    
    	for i := range watchers {
    		verifyEvents(watchers[i])
    	}
    }
    
    func TestCachingObjects(t *testing.T) {
    	t.Run("single watcher", func(t *testing.T) { testCachingObjects(t, 1) })
    	t.Run("many watcher", func(t *testing.T) { testCachingObjects(t, 3) })
    }
    
    func TestCacheIntervalInvalidationStopsWatch(t *testing.T) {
    	backingStorage := &dummyStorage{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    				// Not imported
    				"alt-known.default.svc.cluster.local": nil,
    			},
    		},
    	}
    	for _, variant := range []string{"httproute", "virtualservice"} {
    		t.Run(variant, func(t *testing.T) {
    			for _, tt := range cases {
    				tt := tt
    				t.Run(tt.name, func(t *testing.T) {
    					if tt.oldestWins {
    						test.SetForTest(t, &features.PersistOldestWinsHeuristicForVirtualServiceHostMatching, true)
    					} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	PendingPods() ([]*v1.Pod, string)
    	PodsInActiveQ() []*v1.Pod
    	// Close closes the SchedulingQueue so that the goroutine which is
    	// waiting to pop items can exit gracefully.
    	Close()
    	// Run starts the goroutines managing the queue.
    	Run(logger klog.Logger)
    }
    
    // NewSchedulingQueue initializes a priority queue as a new scheduling queue.
    func NewSchedulingQueue(
    	lessFn framework.LessFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    private final bean = new Bean()
                    FooTask() { bean.p1 = project }
                    @TaskAction void run() {}
                }
    
                task foo(type: FooTask)
            """
    
            when:
            run ENABLE_CLI_OPT, WARN_PROBLEMS_CLI_OPT, "foo"
    
            then:
            postBuildOutputContains("Configuration cache entry stored with 2 problems.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top