Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for desc2 (0.06 sec)

  1. tensorflow/c/c_api_test.cc

      TF_ColocateWith(desc_, feed2_);
      FinishAndVerify(desc_, {"loc:@feed1", "loc:@feed2"});
    }
    
    TEST_F(CApiColocationTest, Proto_StringList) {
      SetViaProto(desc_, {"loc:@feed1"});
      SetViaStringList(desc_, {"loc:@feed2"});
      FinishAndVerify(desc_, {"loc:@feed2"});
    }
    
    TEST_F(CApiColocationTest, StringList_Proto) {
      SetViaStringList(desc_, {"loc:@feed1"});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters_test.go

    	)
    
    	cases := []struct {
    		desc           string
    		maxImages      int32
    		imageList      []kubecontainer.Image
    		imageListError error
    		expectError    error
    	}{
    		{
    			desc:      "max images enforced",
    			maxImages: 1,
    			imageList: makeImageList(2, 1, minImageSize, maxImageSize),
    		},
    		{
    			desc:      "no max images cap for -1",
    			maxImages: -1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	testCases := []struct {
    		desc    string
    		config  string
    		want    []healthChecker
    		wantErr string
    		kmsv2   bool
    		kmsv1   bool
    	}{
    		{
    			desc:    "Invalid config file path",
    			config:  "invalid/path",
    			want:    nil,
    			wantErr: `error reading encryption provider configuration file "invalid/path"`,
    		},
    		{
    			desc:    "Empty config file content",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    }, {
    	desc: "end element with no name",
    	toks: []Token{
    		EndElement{Name{"space", ""}},
    	},
    	err: "xml: end tag with no name",
    }, {
    	desc: "char data",
    	toks: []Token{
    		CharData("foo"),
    	},
    	want: `foo`,
    }, {
    	desc: "char data with escaped chars",
    	toks: []Token{
    		CharData(" \t\n"),
    	},
    	want: " 	\n",
    }, {
    	desc: "comment",
    	toks: []Token{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    		expectGracePeriod                  int64
    		expectPending                      *UpdatePodOptions
    	}{
    		{
    			desc: "finished worker",
    			podSyncStatus: &podSyncStatus{
    				finished: true,
    			},
    			removed: true,
    		},
    		{
    			desc: "waiting to start worker because of another started pod with the same fullname",
    			podSyncStatus: &podSyncStatus{
    				finished: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "desc"
            }
          },
          "pluginVersion": "10.4.0",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${DS_PROMETHEUS}"
              },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cri_stats_provider_test.go

    	var value2 uint64 = 188427786383
    
    	tests := []struct {
    		desc          string
    		cpuUsageCache map[string]*cpuUsageRecord
    		stats         *runtimeapi.ContainerStats
    		expected      *uint64
    	}{
    		{
    			desc:          "should return nil if stats is nil",
    			cpuUsageCache: map[string]*cpuUsageRecord{},
    		},
    		{
    			desc:          "should return nil if cpu stats is nil",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Preconditions.java

      public static int checkElementIndex(int index, int size, String desc) {
        // Carefully optimized for execution by hotspot (explanatory comment above)
        if (index < 0 || index >= size) {
          throw new IndexOutOfBoundsException(badElementIndex(index, size, desc));
        }
        return index;
      }
    
      private static String badElementIndex(int index, int size, String desc) {
        if (index < 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Preconditions.java

      public static int checkElementIndex(int index, int size, String desc) {
        // Carefully optimized for execution by hotspot (explanatory comment above)
        if (index < 0 || index >= size) {
          throw new IndexOutOfBoundsException(badElementIndex(index, size, desc));
        }
        return index;
      }
    
      private static String badElementIndex(int index, int size, String desc) {
        if (index < 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    	}
    	defer os.RemoveAll(existingMountPath)
    
    	tests := []struct {
    		desc           string
    		dir            string
    		expectedResult bool
    	}{
    		{
    			desc:           "NotExist dir",
    			dir:            "/tmp/NotExist",
    			expectedResult: false,
    		},
    		{
    			desc:           "Existing dir",
    			dir:            existingMountPath,
    			expectedResult: false,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top