Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for desc3 (0.05 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. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

        schema: V1_SCHEMA
    `
    
    	type Test struct {
    		desc                                  string
    		preserveUnknownFields                 string
    		globalSchema, v1Schema, v1beta1Schema string
    		expectedViolations                    []string
    		unexpectedViolations                  []string
    	}
    	tests := []Test{
    		{
    			desc: "empty",
    			expectedViolations: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  5. 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)
  6. internal/s3select/select_test.go

    }
    
    func TestJSONQueries(t *testing.T) {
    	input := `{"id": 0,"title": "Test Record","desc": "Some text","synonyms": ["foo", "bar", "whatever"]}
    	{"id": 1,"title": "Second Record","desc": "another text","synonyms": ["some", "synonym", "value"]}
    	{"id": 2,"title": "Second Record","desc": "another text","numbers": [2, 3.0, 4]}
    	{"id": 3,"title": "Second Record","desc": "another text","nested": [[2, 3.0, 4], [7, 8.5, 9]]}`
    
    	testTable := []struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/c/c_api.h

    // tensor), as in:
    //   TF_OperationDescription* desc = TF_NewOperation(graph, "Concat", "c");
    //   TF_Output concat_dim_input = {...};
    //   TF_AddInput(desc, concat_dim_input);
    //   TF_Output values_inputs[5] = {{...}, ..., {...}};
    //   TF_AddInputList(desc, values_inputs, 5);
    
    // For inputs that take a single tensor.
    TF_CAPI_EXPORT extern void TF_AddInput(TF_OperationDescription* desc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top