Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for string_v1 (0.21 sec)

  1. src/encoding/gob/codec_test.go

    		Int64s   *[]int64
    		RI       complex64
    		S        string
    		Y        []byte
    		T        *T2
    	}
    	pi := 3.14159
    	e := 2.71828
    	two := 2.0
    	meaning := 42
    	fingers := 5
    	s1 := "string1"
    	s2 := "string2"
    	var comp1 complex128 = complex(1.0, 1.0)
    	var comp2 complex128 = complex(1.0, 1.0)
    	var arr1 [2]string
    	arr1[0] = s1
    	arr1[1] = s2
    	var arr2 [2]string
    	arr2[0] = s2
    	arr2[1] = s1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

              type: DT_STRING
            }
          }
          attr {
            key: "value"
            value {
              tensor {
                dtype: DT_STRING
                tensor_shape {
                }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	if directResponse == nil {
    		return
    	}
    
    	if directResponse.Body != nil {
    		size := 0
    		switch op := directResponse.Body.Specifier.(type) {
    		case *networking.HTTPBody_String_:
    			size = len(op.String_)
    		case *networking.HTTPBody_Bytes:
    			size = len(op.Bytes)
    		}
    
    		if size > 1*mb {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top