Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for srcbuf (0.12 sec)

  1. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

        for (int i = 0; i < PyList_GET_SIZE(py_denylist); ++i) {
          PyObject* value = PyList_GetItem(py_denylist, i);
          char* str_buf;
          Py_ssize_t length;
          if (ConvertFromPyString(value, &str_buf, &length) == -1) {
            return -1;
          }
          string_set->emplace(str_buf, length);
        }
      }
      if (PySet_Check(py_denylist)) {
        auto* tmp = PySet_New(py_denylist);
        while (PySet_GET_SIZE(tmp)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/go/doc/testdata/a.0.golden

    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    	 must appear in its entirety.
    
    NOTE(xxx)	The ':' after the marker and uid is optional.
    
    
    SECBUGS
    SECBUG(uid)	sec hole 0
    	need to fix asap
    
    
    TODOS
    TODO(uid)	todo0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  3. src/go/doc/testdata/a.2.golden

    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    	 must appear in its entirety.
    
    NOTE(xxx)	The ':' after the marker and uid is optional.
    
    
    SECBUGS
    SECBUG(uid)	sec hole 0
    	need to fix asap
    
    
    TODOS
    TODO(uid)	todo0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  4. src/go/doc/testdata/a.1.golden

    NOTE(bar)	4 of 4
    	- this is the last line of note 4
    
    NOTE(bam)	This note which contains a (parenthesized) subphrase
    	 must appear in its entirety.
    
    NOTE(xxx)	The ':' after the marker and uid is optional.
    
    
    SECBUGS
    SECBUG(uid)	sec hole 0
    	need to fix asap
    
    
    TODOS
    TODO(uid)	todo0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  5. src/syscall/asm_plan9_arm.s

    	SWI		$0
    	MOVW	$0, R2
    	MOVW	$r1+16(FP), R3
    	MOVM.IA	[R0,R2], (R3)
    	CMP		$-1, R0
    	B.EQ	syscallerr
    	BL		runtime·exitsyscall(SB)
    	MOVW	$·emptystring+0(SB), R2
    	B		syscallok
    syscallerr:
    	MOVW	$errbuf-128(SP), R2
    	MOVW	$128, R3
    	MOVM.IA	[R2,R3], (R1)
    	MOVW	$SYS_ERRSTR, R0
    	SWI		$0
    	BL		runtime·exitsyscall(SB)
    	BL		runtime·gostring(SB)
    	MOVW	$str-140(SP), R2
    syscallok:
    	MOVW	$err+24(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 14:57:01 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  6. istioctl/pkg/install/k8sversion/version_test.go

    			isValid: true,
    		},
    	}
    
    	var outBuf bytes.Buffer
    	var errBuf bytes.Buffer
    
    	for i, c := range cases {
    		t.Run(fmt.Sprintf("case %d %s", i, c.version), func(t *testing.T) {
    			k8sClient := kube.NewFakeClient()
    			k8sClient.Kube().Discovery().(*fakediscovery.FakeDiscovery).FakedServerVersion = c.version
    
    			logger := clog.NewConsoleLogger(&outBuf, &errBuf, nil)
    			IsK8VersionSupported(k8sClient, logger)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 02:46:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/internal/dwarf/dwarf.go

    	b := sevenBitU(v)
    	if b == nil {
    		var encbuf [20]byte
    		b = AppendUleb128(encbuf[:0], uint64(v))
    	}
    	ctxt.AddBytes(s, b)
    }
    
    // Sleb128put appends v to s using DWARF's signed LEB128 encoding.
    func Sleb128put(ctxt Context, s Sym, v int64) {
    	b := sevenBitS(v)
    	if b == nil {
    		var encbuf [20]byte
    		b = AppendSleb128(encbuf[:0], v)
    	}
    	ctxt.AddBytes(s, b)
    }
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  8. src/go/doc/testdata/a0.go

    // comment 0
    package a
    
    //BUG(uid): bug0
    
    //TODO(uid): todo0
    
    // A note with some spaces after it, should be ignored (watch out for
    // emacs modes that remove trailing whitespace).
    //NOTE(uid):
    
    // SECBUG(uid): sec hole 0
    // need to fix asap
    
    // Multiple notes may be in the same comment group and should be
    // recognized individually. Notes may start in the middle of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/endtoend_test.go

    	ctxt.IsAsm = true
    	defer ctxt.Bso.Flush()
    	failed := false
    	var errBuf bytes.Buffer
    	parser.errorWriter = &errBuf
    	ctxt.DiagFunc = func(format string, args ...interface{}) {
    		failed = true
    		s := fmt.Sprintf(format, args...)
    		if !strings.HasSuffix(s, "\n") {
    			s += "\n"
    		}
    		errBuf.WriteString(s)
    	}
    	for _, flag := range flags {
    		switch flag {
    		case "dynlink":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/MultiReader.java

          current = it.next().openStream();
        }
      }
    
      @Override
      public int read(char[] cbuf, int off, int len) throws IOException {
        checkNotNull(cbuf);
        if (current == null) {
          return -1;
        }
        int result = current.read(cbuf, off, len);
        if (result == -1) {
          advance();
          return read(cbuf, off, len);
        }
        return result;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top