Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 207 for testLang (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    				}
    			}
    
    			b.Run("ValidXValid", func(b *testing.B) {
    				for i := 0; i < b.N; i++ {
    					do(validXValidPairs)
    				}
    			})
    
    			b.Run("ValidXInvalid", func(b *testing.B) {
    				for i := 0; i < b.N; i++ {
    					do(validXInvalidPairs)
    				}
    			})
    
    			b.Run("InvalidXInvalid", func(b *testing.B) {
    				for i := 0; i < b.N; i++ {
    					do(invalidXInvalidPairs)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package integration
    
    import (
    	"context"
    	"fmt"
    	"strings"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
    	apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // TestMain to set up global env.
    func TestMain(m *testing.M) {
    	flag.Parse()
    
    	// set to 'true' when testing is invoked
    	globalIsTesting = true
    
    	globalIsCICD = globalIsTesting
    
    	globalActiveCred = auth.Credentials{
    		AccessKey: auth.DefaultAccessKey,
    		SecretKey: auth.DefaultSecretKey,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/cronjob_controllerv2_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cronjob
    
    import (
    	"context"
    	"fmt"
    	"reflect"
    	"sort"
    	"strings"
    	"testing"
    	"time"
    
    	batchv1 "k8s.io/api/batch/v1"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  5. src/debug/elf/file_test.go

    				},
    				pcRanges: [][2]uint64{
    					{0x765, 0x777},
    					{0x7e1, 0x7ec},
    				},
    			},
    		},
    	},
    }
    
    func TestDWARFRelocations(t *testing.T) {
    	for _, test := range relocationTests {
    		test := test
    		t.Run(test.file, func(t *testing.T) {
    			t.Parallel()
    			f, err := Open(test.file)
    			if err != nil {
    				t.Fatal(err)
    			}
    			dwarf, err := f.DWARF()
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    #if 0
    
    // To write value-parameterized tests, first you should define a fixture
    // class. It is usually derived from testing::TestWithParam<T> (see below for
    // another inheritance scheme that's sometimes useful in more complicated
    // class hierarchies), where the type of your parameter values.
    // TestWithParam<T> is itself derived from testing::Test. T can be any
    // copyable type. If it's a raw pointer, you are responsible for managing the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    #if 0
    
    // To write value-parameterized tests, first you should define a fixture
    // class. It is usually derived from testing::TestWithParam<T> (see below for
    // another inheritance scheme that's sometimes useful in more complicated
    // class hierarchies), where the type of your parameter values.
    // TestWithParam<T> is itself derived from testing::Test. T can be any
    // copyable type. If it's a raw pointer, you are responsible for managing the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	plugintesting "k8s.io/kubernetes/pkg/scheduler/framework/plugins/testing"
    	frameworkruntime "k8s.io/kubernetes/pkg/scheduler/framework/runtime"
    	"k8s.io/kubernetes/pkg/scheduler/internal/cache"
    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    	"k8s.io/utils/ptr"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  9. plugin/pkg/admission/noderestriction/admission_test.go

    limitations under the License.
    */
    
    package noderestriction
    
    import (
    	"context"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    
    	"k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/features"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    	// Because there is not enough CPU to parallel the testing of multiple packages.
    	if runtime.NumCPU() > 4 && runtime.GOMAXPROCS(0) != 1 {
    		for _, w := range worklist {
    			// See go.dev/issue/65164
    			// because GOMAXPROCS=2 runtime CPU usage is low,
    			// so increase maxbg to avoid slowing down execution with low CPU usage.
    			// This makes testing a single package slower,
    			// but testing multiple packages together faster.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top