Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for string_v1 (0.21 sec)

  1. cluster/gce/config-default.sh

    # Specifying KUBE_GCE_API_ENDPOINT will override the default GCE Compute API endpoint (https://www.googleapis.com/compute/v1/).
    # This endpoint has to be pointing to v1 api. For example, https://www.googleapis.com/compute/staging_v1/
    export GCE_API_ENDPOINT=${KUBE_GCE_API_ENDPOINT:-}
    export GCLOUD=gcloud
    ZONE=${KUBE_GCE_ZONE:-us-central1-b}
    export REGION=${ZONE%-*}
    RELEASE_REGION_FALLBACK=${RELEASE_REGION_FALLBACK:-false}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/registry_test.go

    		}
    	}
    	return true
    }
    
    type ValueTest struct {
    	Type     uint32
    	Name     string
    	Value    any
    	WillFail bool
    }
    
    var ValueTests = []ValueTest{
    	{Type: registry.SZ, Name: "String1", Value: ""},
    	{Type: registry.SZ, Name: "String2", Value: "\000", WillFail: true},
    	{Type: registry.SZ, Name: "String3", Value: "Hello World"},
    	{Type: registry.SZ, Name: "String4", Value: "Hello World\000", WillFail: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. cluster/gce/config-test.sh

    # Specifying KUBE_GCE_API_ENDPOINT will override the default GCE Compute API endpoint (https://www.googleapis.com/compute/v1/).
    # This endpoint has to be pointing to v1 api. For example, https://www.googleapis.com/compute/staging_v1/
    export GCE_API_ENDPOINT=${KUBE_GCE_API_ENDPOINT:-}
    ZONE=${KUBE_GCE_ZONE:-us-central1-b}
    export REGION=${ZONE%-*}
    RELEASE_REGION_FALLBACK=${RELEASE_REGION_FALLBACK:-false}
    REGIONAL_KUBE_ADDONS=${REGIONAL_KUBE_ADDONS:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. docs/vi/docs/index.md

    * _Đường dẫn_ `/items/{item_id}` có một _tham số đường dẫn_ `item_id`, nó là một tham số kiểu `int`.
    * _Đường dẫn_ `/items/{item_id}`  có một _tham số query string_ `q`, nó là một tham số tùy chọn kiểu `str`.
    
    ### Tài liệu tương tác API
    
    Truy cập <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/internal/types/testdata/check/builtins0.go

    	var s []int
    	unsafe.SliceData(0 /* ERROR "not a slice" */)
    	unsafe /* ERROR "not used" */ .SliceData(s)
    
    	type S []int
    	_ = unsafe.SliceData(s)
    	_ = unsafe.SliceData(S{})
    }
    
    func String1() {
    	var b byte
    	unsafe.String()        // ERROR "not enough arguments"
    	unsafe.String(1, 2, 3) // ERROR "too many arguments"
    	unsafe.String(1 /* ERROR "cannot use 1" */ , 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  8. 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)
  9. pkg/config/validation/validation_test.go

    				Body: &networking.HTTPBody{
    					Specifier: &networking.HTTPBody_String_{String_: "hello"},
    				},
    			},
    			valid: true,
    		},
    		{
    			name: "with string body over 100kb",
    			directResponse: &networking.HTTPDirectResponse{
    				Status: 200,
    				Body: &networking.HTTPBody{
    					Specifier: &networking.HTTPBody_String_{String_: strings.Repeat("a", 101*kb)},
    				},
    			},
    			valid:   true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  10. 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