Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for rawbuffer (0.15 sec)

  1. istioctl/pkg/authz/testdata/configdump.yaml

             "address": "0.0.0.0",
             "port_value": 9080
            }
           },
           "filter_chains": [
            {
             "filter_chain_match": {
              "transport_protocol": "raw_buffer",
              "application_protocols": [
               "http/1.1",
               "h2c"
              ]
             },
             "filters": [
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	request, err := http.NewRequest("POST", server.URL+"/"+prefix+"/"+testGroupVersion.Group+"/"+testGroupVersion.Version+"/namespaces/default/simple", bytes.NewBuffer(data))
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    	response, err := client.Do(request)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    		hostname:              testHostname,
    		serviceHealthServer:   healthcheck.NewFakeServiceHealthServer(),
    		ipvsScheduler:         defaultScheduler,
    		iptablesData:          bytes.NewBuffer(nil),
    		filterChainsData:      bytes.NewBuffer(nil),
    		natChains:             proxyutil.NewLineBuffer(),
    		natRules:              proxyutil.NewLineBuffer(),
    		filterChains:          proxyutil.NewLineBuffer(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	for resource := range resourceQuota.Status.Hard {
    		resources = append(resources, resource)
    	}
    	sort.Sort(SortableResourceNames(resources))
    
    	requestColumn := bytes.NewBuffer([]byte{})
    	limitColumn := bytes.NewBuffer([]byte{})
    	for i := range resources {
    		w := requestColumn
    		resource := resources[i]
    		usedQuantity := resourceQuota.Status.Used[resource]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	NameSpace           uint32
    	NSProviderId        *GUID
    	Context             *uint16
    	NumberOfProtocols   uint32
    	AfpProtocols        *AFProtocols
    	QueryString         *uint16
    	NumberOfCsAddrs     uint32
    	SaBuffer            *CSAddrInfo
    	OutputFlags         uint32
    	Blob                *BLOB
    }
    
    type WSAVersion struct {
    	Version                 uint32
    	EnumerationOfComparison int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    	})
    }
    
    func TestTransportCancelRequestWithBodyInDo(t *testing.T) {
    	runCancelTest(t, func(t *testing.T, test cancelTest) {
    		testTransportCancelRequestInDo(t, test, bytes.NewBuffer([]byte{0}))
    	})
    }
    
    func TestTransportCancelRequestInDial(t *testing.T) {
    	runCancelTest(t, testTransportCancelRequestInDial)
    }
    func testTransportCancelRequestInDial(t *testing.T, test cancelTest) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	fetchKeysFromRemote bool
    }
    
    // Replace formats the contents of v into the provided template.
    func replace(tmpl string, v interface{}) string {
    	t := template.Must(template.New("test").Parse(tmpl))
    	buf := bytes.NewBuffer(nil)
    	t.Execute(buf, &v)
    	ret := buf.String()
    	klog.V(4).Infof("Replaced: %v into: %v", tmpl, ret)
    	return ret
    }
    
    // newClaimServer returns a new test HTTPS server, which is rigged to return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, _ := syscall.Syscall12(procNtCreateFile.Addr(), 11, uintptr(unsafe.Pointer(handle)), uintptr(access), uintptr(unsafe.Pointer(oa)), uintptr(unsafe.Pointer(iosb)), uintptr(unsafe.Pointer(allocationSize)), uintptr(attributes), uintptr(share), uintptr(disposition), uintptr(options), uintptr(eabuffer), uintptr(ealength), 0)
    	if r0 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top