Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 109 for buf4 (0.07 sec)

  1. tools/gen_istio_image_list.sh

               then
                  if [[ $line == *\\ ]]
                  then
                    buff=${buff%\\}$line
                  else
                    buff=${buff%\\}$line
                    break
                  fi
               fi
           fi
        done < temp.file
    
        for repo in $buff; do
           if [[ $repo == *docker.* ]]
           then
               istio_component=${repo##*docker.};
               istio_repo=istio/$istio_component;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. src/net/netip/fuzz_test.go

    func checkTextMarshalMatchesAppendTo(t *testing.T, x appendMarshaler) {
    	buf, err := x.MarshalText()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	buf2 := make([]byte, 0, len(buf))
    	buf2 = x.AppendTo(buf2)
    	if !bytes.Equal(buf, buf2) {
    		t.Fatalf("%v: MarshalText = %q, AppendTo = %q", x, buf, buf2)
    	}
    }
    
    type netipType interface {
    	encoding.BinaryMarshaler
    	encoding.TextMarshaler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/print_flags_test.go

    	if err != nil {
    		t.Fatalf("unexpected err: %v", err)
    	}
    
    	for name, item := range tests {
    		buff := &bytes.Buffer{}
    		err := printer.PrintObj(item.obj, buff)
    		if err != nil {
    			t.Errorf("%v: unexpected err: %v", name, err)
    			continue
    		}
    		got := buff.String()
    		if item.expect != got {
    			t.Errorf("%v: expected %v, got %v", name, item.expect, got)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 31 23:04:01 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. src/compress/zlib/example_test.go

    	// Output: [120 156 202 72 205 201 201 215 81 40 207 47 202 73 225 2 4 0 0 255 255 33 231 4 147]
    }
    
    func ExampleNewReader() {
    	buff := []byte{120, 156, 202, 72, 205, 201, 201, 215, 81, 40, 207,
    		47, 202, 73, 225, 2, 4, 0, 0, 255, 255, 33, 231, 4, 147}
    	b := bytes.NewReader(buff)
    
    	r, err := zlib.NewReader(b)
    	if err != nil {
    		panic(err)
    	}
    	io.Copy(os.Stdout, r)
    	// Output: hello, world
    	r.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 784 bytes
    - Viewed (0)
  5. src/syscall/ztypes_freebsd_amd64.go

    	SizeofBpfZbufHeader = 0x20
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv uint32
    	Drop uint32
    }
    
    type BpfZbuf struct {
    	Bufa   *byte
    	Bufb   *byte
    	Buflen uint64
    }
    
    type BpfProgram struct {
    	Len       uint32
    	Pad_cgo_0 [4]byte
    	Insns     *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. src/compress/flate/deflate_test.go

    	if len(input) == 0 {
    		return
    	}
    
    	t.Logf("--testSync %d, %d, %s", level, len(input), name)
    	buf := newSyncBuffer()
    	buf1 := new(bytes.Buffer)
    	buf.WriteMode()
    	w, err := NewWriter(io.MultiWriter(buf, buf1), level)
    	if err != nil {
    		t.Errorf("NewWriter: %v", err)
    		return
    	}
    	r := NewReader(buf)
    
    	// Write half the input and read back.
    	for i := 0; i < 2; i++ {
    		var lo, hi int
    		if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRulesReporter.java

            writer.print(indent(1));
            writer.println(heading);
        }
    
        private String indent(int times) {
            StringBuffer buff = new StringBuffer(prefix);
            for (int i = 0; i < times; i++) {
                buff.append(INDENT);
            }
            return buff.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. internal/jwt/parser.go

    	}
    	headerDec := buf[:n]
    	buf = buf[n:]
    
    	alg, _, _, err := jsonparser.Get(headerDec, "alg")
    	if err != nil {
    		return nil, &jwtgo.ValidationError{Inner: err, Errors: jwtgo.ValidationErrorMalformed}
    	}
    
    	n, err = base64DecodeBytes(token[i+1:j], buf)
    	if err != nil {
    		return nil, &jwtgo.ValidationError{Inner: err, Errors: jwtgo.ValidationErrorMalformed}
    	}
    
    	if err = claims.UnmarshalJSON(buf[:n]); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

            StringBuilder buff = new StringBuilder();
            if (md.getExecutePhase() != null && !md.getExecutePhase().isEmpty()) {
                // forked phase
                if (md.getExecuteLifecycle() != null && !md.getExecuteLifecycle().isEmpty()) {
                    buff.append('[');
                    buff.append(md.getExecuteLifecycle());
                    buff.append(']');
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	SizeofBpfZbufHeader = 0x20
    )
    
    type BpfVersion struct {
    	Major uint16
    	Minor uint16
    }
    
    type BpfStat struct {
    	Recv uint32
    	Drop uint32
    }
    
    type BpfZbuf struct {
    	Bufa   *byte
    	Bufb   *byte
    	Buflen uint32
    }
    
    type BpfProgram struct {
    	Len   uint32
    	Insns *BpfInsn
    }
    
    type BpfInsn struct {
    	Code uint16
    	Jt   uint8
    	Jf   uint8
    	K    uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top