Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 239 for west (0.06 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Low-level types and utilities for porting Google Test to various
    // platforms.  They are subject to change without notice.  DO NOT USE
    // THEM IN USER CODE.
    //
    // This file is fundamental to Google Test.  All other Google Test source
    // files are expected to #include this.  Therefore, it cannot #include
    // any other Google Test header.
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    		},
    	}
    
    	for _, test := range tests {
    		SetCondition(test.status, test.cond)
    		if !reflect.DeepEqual(test.status, test.expectedStatus) {
    			t.Errorf("%s: expected status: %v, got: %v", test.name, test.expectedStatus, test.status)
    		}
    	}
    }
    
    func TestRemoveCondition(t *testing.T) {
    	tests := []struct {
    		name string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. pkg/controller/history/controller_history_test.go

    		revisions []*apps.ControllerRevision
    		want      []string
    	}
    	testFn := func(test *testcase, t *testing.T) {
    		t.Run(test.name, func(t *testing.T) {
    			SortControllerRevisions(test.revisions)
    			for i := range test.revisions {
    				if test.revisions[i].Name != test.want[i] {
    					t.Errorf("%s: want %s at %d got %s", test.name, test.want[i], i, test.revisions[i].Name)
    				}
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      EXPECT_NE(clusters["test/x"], "");
    
      EXPECT_EQ(clusters["test/x"], clusters["test/y"]);
      EXPECT_EQ(clusters["test/y"], clusters["test/z"]);
    }
    
    TEST(XlaCompilationTest, DontCreateGpu0AndGpu1Clusters) {
      Scope root = Scope::NewRootScope().ExitOnError();
      Output a = ops::Placeholder(root.WithOpName("test/a"), DT_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. cmd/object-api-listobjects_test.go

    		result ListObjectsInfo
    		err    error
    		// Flag indicating whether the test is expected to pass or not.
    		shouldPass bool
    	}{
    		// Test cases with invalid bucket names ( Test number 1-4 ).
    		{".test", "", "", "", 0, ListObjectsInfo{}, BucketNameInvalid{Bucket: ".test"}, false},
    		{"Test", "", "", "", 0, ListObjectsInfo{}, BucketNameInvalid{Bucket: "Test"}, false},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_test.go

    	test := *template
    	if template.config != nil {
    		test.config = template.config.Clone()
    	}
    	test.name = version + "-" + test.name
    	if len(test.command) == 0 {
    		test.command = defaultClientCommand
    	}
    	test.command = append([]string(nil), test.command...)
    	test.command = append(test.command, option)
    
    	runTestAndUpdateIfNeeded(t, version, test.run, test.wait)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    		if got := x.Signbit(); got != test.signbit {
    			t.Errorf("(%s).Signbit() = %v; want %v", test.x, got, test.signbit)
    		}
    		if got := x.Sign(); got != test.sign {
    			t.Errorf("(%s).Sign() = %d; want %d", test.x, got, test.sign)
    		}
    		if got := x.IsInf(); got != test.inf {
    			t.Errorf("(%s).IsInf() = %v; want %v", test.x, got, test.inf)
    		}
    	}
    }
    
    func TestFloatIsInt(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// be prepared for being called more than once.
    	DestroyFunc func()
    }
    
    // Note: the rest.StandardStorage interface aggregates the common REST verbs
    var _ rest.StandardStorage = &Store{}
    var _ rest.TableConvertor = &Store{}
    var _ GenericStore = &Store{}
    
    var _ rest.SingularNameProvider = &Store{}
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  9. fastapi/param_functions.py

                """
                By default, after a dependency is called the first time in a request, if
                the dependency is declared again for the rest of the request (for example
                if the dependency is needed by several dependencies), the value will be
                re-used for the rest of the request.
    
                Set `use_cache` to `False` to disable this behavior and ensure the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	fooBarKey, fooBarObj := testPropagateStore(ctx, t, store, &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foobar", Namespace: "test-ns"}})
    	_, otherNamespaceObj := testPropagateStore(ctx, t, store, &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "baz", Namespace: "test-ns2"}})
    
    	tests := []struct {
    		name        string
    		key         string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top