Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for StdEncoding (0.15 sec)

  1. src/net/http/request_test.go

    	{"Basic " + base64.StdEncoding.EncodeToString([]byte(":")), "", "", true},
    	{"Basic" + base64.StdEncoding.EncodeToString([]byte("Aladdin:open sesame")), "", "", false},
    	{base64.StdEncoding.EncodeToString([]byte("Aladdin:open sesame")), "", "", false},
    	{"Basic ", "", "", false},
    	{"Basic Aladdin:open sesame", "", "", false},
    	{`Digest username="Aladdin"`, "", "", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn_test.go

    		if err != nil {
    			t.Error(err)
    			return
    		}
    		if !reflect.DeepEqual(data, []byte("client")) {
    			t.Errorf("unexpected server read: %s", string(data))
    		}
    	}()
    
    	clientData := base64.StdEncoding.EncodeToString([]byte("client"))
    	if n, err := client.Write(append([]byte{'0'}, clientData...)); err != nil || n != len(clientData)+1 {
    		t.Fatalf("%d: %v", n, err)
    	}
    
    	wg.Add(1)
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. internal/hash/reader.go

    				r.contentHash.Raw, err = base64.StdEncoding.DecodeString(r.contentHash.Encoded)
    				if err != nil || len(r.contentHash.Raw) == 0 {
    					return 0, ChecksumMismatch{Got: r.contentHash.Encoded}
    				}
    			}
    			if sum := r.contentHasher.Sum(nil); !bytes.Equal(r.contentHash.Raw, sum) {
    				err := ChecksumMismatch{
    					Want: r.contentHash.Encoded,
    					Got:  base64.StdEncoding.EncodeToString(sum),
    				}
    				return n, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/dirhash/hash.go

    			return "", err
    		}
    		hf := sha256.New()
    		_, err = io.Copy(hf, r)
    		r.Close()
    		if err != nil {
    			return "", err
    		}
    		fmt.Fprintf(h, "%x  %s\n", hf.Sum(nil), file)
    	}
    	return "h1:" + base64.StdEncoding.EncodeToString(h.Sum(nil)), nil
    }
    
    // HashDir returns the hash of the local file system directory dir,
    // replacing the directory name itself with prefix in the file names
    // used in the hash function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/util.go

    	if err != nil {
    		err = fmt.Errorf("couldn't get secret %v/%v err: %w", secretNamespace, secretName, err)
    		return err
    	}
    	for name, data := range secrets {
    		options[optionKeySecret+"/"+name] = base64.StdEncoding.EncodeToString([]byte(data))
    		klog.V(1).Infof("found flex volume secret info: %s", name)
    	}
    
    	return nil
    }
    
    var errNotFlexVolume = fmt.Errorf("not a flex volume")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/seh.go

    	// The list of unwind infos in a PE binary have very low cardinality
    	// as each info only contains frame pointer operations,
    	// which are very similar across functions.
    	// Dedup them when possible.
    	hash := base64.StdEncoding.EncodeToString(buf.data)
    	symname := fmt.Sprintf("%d.%s", len(buf.data), hash)
    	return ctxt.LookupInit("go:sehuw."+symname, func(s *obj.LSym) {
    		s.WriteBytes(ctxt, 0, buf.data)
    		s.Type = objabi.SSEHUNWINDINFO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    		n, err := r.Read(buf)
    		if err != nil {
    			if err == io.EOF {
    				return nil
    			}
    			return err
    		}
    		if n > 0 {
    			if base64Encode {
    				if err := websocket.Message.Send(ws, base64.StdEncoding.EncodeToString(buf[:n])); err != nil {
    					return err
    				}
    			} else {
    				if err := websocket.Message.Send(ws, buf[:n]); err != nil {
    					return err
    				}
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    		frame[0] = num
    		copy(frame[1:], data)
    		if err := websocket.Message.Send(conn.ws, frame); err != nil {
    			return 0, err
    		}
    	case base64Codec:
    		frame := string('0'+num) + base64.StdEncoding.EncodeToString(data)
    		if err := websocket.Message.Send(conn.ws, frame); err != nil {
    			return 0, err
    		}
    	}
    	return len(data), nil
    }
    
    // websocketChannel represents a channel in a connection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. cmd/bucket-encryption-handlers.go

    		return
    	}
    
    	// Call site replication hook.
    	//
    	// We encode the xml bytes as base64 to ensure there are no encoding
    	// errors.
    	cfgStr := base64.StdEncoding.EncodeToString(configData)
    	replLogIf(ctx, globalSiteReplicationSys.BucketMetaHook(ctx, madmin.SRBucketMeta{
    		Type:      madmin.SRBucketMetaTypeSSEConfig,
    		Bucket:    bucket,
    		SSEConfig: &cfgStr,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    type Hash [HashSize]byte
    
    // HashSize is the size of a Hash in bytes.
    const HashSize = 32
    
    // String returns a base64 representation of the hash for printing.
    func (h Hash) String() string {
    	return base64.StdEncoding.EncodeToString(h[:])
    }
    
    // MarshalJSON marshals the hash as a JSON string containing the base64-encoded hash.
    func (h Hash) MarshalJSON() ([]byte, error) {
    	return []byte(`"` + h.String() + `"`), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top