Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for mybytes (0.22 sec)

  1. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

      fun disconnectRequestHalfway() {
        server.enqueue(MockResponse().setSocketPolicy(SocketPolicy.DISCONNECT_DURING_REQUEST_BODY))
        // Limit the size of the request body that the server holds in memory to an arbitrary
        // 3.5 MBytes so this test can pass on devices with little memory.
        server.bodyLimit = 7 * 512 * 1024
        val connection = server.url("/").toUrl().openConnection() as HttpURLConnection
        connection.setRequestMethod("POST")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

          MockResponse.Builder()
            .socketPolicy(DisconnectDuringRequestBody)
            .build(),
        )
        // Limit the size of the request body that the server holds in memory to an arbitrary
        // 3.5 MBytes so this test can pass on devices with little memory.
        server.bodyLimit = 7 * 512 * 1024
        val connection = server.url("/").toUrl().openConnection() as HttpURLConnection
        connection.requestMethod = "POST"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pkg/controller/daemon/update.go

    // recorded patches.
    func getPatch(ds *apps.DaemonSet) ([]byte, error) {
    	dsBytes, err := json.Marshal(ds)
    	if err != nil {
    		return nil, err
    	}
    	var raw map[string]interface{}
    	err = json.Unmarshal(dsBytes, &raw)
    	if err != nil {
    		return nil, err
    	}
    	objCopy := make(map[string]interface{})
    	specCopy := make(map[string]interface{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/staticdata/data.go

    		// ggloblsym takes an int32,
    		// and probably the rest of the toolchain
    		// can't handle such big symbols either.
    		// See golang.org/issue/9862.
    		return nil, 0, fmt.Errorf("file too large (%d bytes > %d bytes)", size, maxFileSize)
    	}
    
    	// File is too big to read and keep in memory.
    	// Compute hash if needed for read-only content hashing or if the caller wants it.
    	var sum []byte
    	if readonly || len(hash) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. internal/grid/connection.go

    	tlsConfig          *tls.Config
    	blockConnect       chan struct{}
    
    	incomingBytes func(n int64) // Record incoming bytes.
    	outgoingBytes func(n int64) // Record outgoing bytes.
    	trace         *tracer       // tracer for this connection.
    	baseFlags     Flags
    	outBytes      atomic.Int64
    	inBytes       atomic.Int64
    	inMessages    atomic.Int64
    	outMessages   atomic.Int64
    
    	// For testing only
    	debugInConn   net.Conn
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		var buf bytes.Buffer
    		noSourceConf.Fprint(&buf, fset, def.Go)
    		if bytes.HasPrefix(buf.Bytes(), []byte("_Ctype_")) ||
    			strings.HasPrefix(name, "_Ctype_enum_") ||
    			strings.HasPrefix(name, "_Ctype_union_") {
    			// This typedef is of the form `typedef a b` and should be an alias.
    			fmt.Fprintf(fgo2, "= ")
    		}
    		fmt.Fprintf(fgo2, "%s", buf.Bytes())
    		fmt.Fprintf(fgo2, "\n\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    }
    
    func checkLehmerGcd(aBytes, bBytes []byte) bool {
    	a := new(Int).SetBytes(aBytes)
    	b := new(Int).SetBytes(bBytes)
    
    	if a.Sign() <= 0 || b.Sign() <= 0 {
    		return true // can only test positive arguments
    	}
    
    	d := new(Int).lehmerGCD(nil, nil, a, b)
    	d0, _, _ := euclidExtGCD(a, b)
    
    	return d.Cmp(d0) == 0
    }
    
    func checkLehmerExtGcd(aBytes, bBytes []byte) bool {
    	a := new(Int).SetBytes(aBytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. src/crypto/x509/name_constraints_test.go

    			}
    			template.IPAddresses = append(template.IPAddresses, ip)
    
    		case strings.HasPrefix(name, "invalidip:"):
    			ipBytes, err := hex.DecodeString(name[10:])
    			if err != nil {
    				return nil, fmt.Errorf("cannot parse invalid IP: %s", err)
    			}
    			template.IPAddresses = append(template.IPAddresses, net.IP(ipBytes))
    
    		case strings.HasPrefix(name, "email:"):
    			template.EmailAddresses = append(template.EmailAddresses, name[6:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal.go

    			break
    		}
    		// [...]byte
    		var bytes []byte
    		if val.CanAddr() {
    			bytes = val.Bytes()
    		} else {
    			bytes = make([]byte, val.Len())
    			reflect.Copy(reflect.ValueOf(bytes), val)
    		}
    		return "", bytes, nil
    	case reflect.Slice:
    		if typ.Elem().Kind() != reflect.Uint8 {
    			break
    		}
    		// []byte
    		return "", val.Bytes(), nil
    	}
    	return "", nil, &UnsupportedTypeError{typ}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/test.go

    	Name      string
    	Got, Want interface{}
    }
    
    var testPairs = []testPair{
    	{"GoString", C.GoString(C.greeting), greeting},
    	{"GoStringN", C.GoStringN(C.greeting, 5), greeting[:5]},
    	{"GoBytes", C.GoBytes(unsafe.Pointer(C.greeting), 5), []byte(greeting[:5])},
    }
    
    func testHelpers(t *testing.T) {
    	for _, pair := range testPairs {
    		if !reflect.DeepEqual(pair.Got, pair.Want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top