Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for string_v1 (0.14 sec)

  1. src/net/dnsclient_unix_test.go

    							Name:  q.Questions[0].Name,
    							Type:  dnsmessage.TypeA,
    							Class: dnsmessage.ClassINET,
    						},
    						Body: &dnsmessage.TXTResource{
    							TXT: []string{"string1 ", "string2"},
    						},
    					},
    					{
    						Header: dnsmessage.ResourceHeader{
    							Name:  q.Questions[0].Name,
    							Type:  dnsmessage.TypeA,
    							Class: dnsmessage.ClassINET,
    						},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route_test.go

    		Http: []*networking.HTTPRoute{
    			{
    				DirectResponse: &networking.HTTPDirectResponse{
    					Status: 200,
    					Body: &networking.HTTPBody{
    						Specifier: &networking.HTTPBody_String_{String_: "hello"},
    					},
    				},
    			},
    		},
    	},
    }
    
    var virtualServiceWithDirectResponseAndSetHeader = config.Config{
    	Meta: config.Meta{
    		GroupVersionKind: gvk.VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        tensorflow::TensorProto repr =
            tfl::ConvertTfliteConstTensor(tensor, buffer);
        std::vector<llvm::StringRef> refs;
        refs.reserve(repr.string_val_size());
    
        for (const auto& ref : repr.string_val())
          refs.push_back({ref.data(), ref.size()});
    
        value = mlir::DenseStringElementsAttr::get(shaped_type, refs);
      } else if (elem_type.isa<mlir::ComplexType, mlir::TF::TensorFlowType>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    		switch op := directResponse.Body.Specifier.(type) {
    		case *networking.HTTPBody_String_:
    			action.DirectResponse.Body = &core.DataSource{
    				Specifier: &core.DataSource_InlineString{
    					InlineString: op.String_,
    				},
    			}
    		case *networking.HTTPBody_Bytes:
    			action.DirectResponse.Body = &core.DataSource{
    				Specifier: &core.DataSource_InlineBytes{
    					InlineBytes: op.Bytes,
    				},
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
Back to top