Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 432 for begins (0.17 sec)

  1. internal/lock/lock_windows.go

    	if len(path) < 248 {
    		// Don't fix. (This is how Go 1.7 and earlier worked,
    		// not automatically generating the \\?\ form)
    		return path
    	}
    
    	// The extended form begins with \\?\, as in
    	// \\?\c:\windows\foo.txt or \\?\UNC\server\share\foo.txt.
    	// The extended form disables evaluation of . and .. path
    	// elements and disables the interpretation of / as equivalent
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/links.go

    func isName(s string) bool {
    	t, ok := ident(s)
    	if !ok || t != s {
    		return false
    	}
    	r, _ := utf8.DecodeRuneInString(s)
    	return unicode.IsUpper(r)
    }
    
    // ident checks whether s begins with a Go identifier.
    // If so, it returns the identifier, which is a prefix of s, and ok == true.
    // Otherwise it returns "", false.
    // The caller should skip over the first len(id) bytes of s
    // before further processing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/runtime/mgclimit_test.go

    			t.Errorf("bucket overflow %d should have remained constant, found %d", expect, l.Overflow())
    		}
    		if t.Failed() {
    			t.FailNow()
    		}
    
    		// Resize procs down and make sure limiting begins again.
    		// Also make sure resizing doesn't affect overflow. This isn't
    		// a case where we want to report overflow, because we're not
    		// actively doing work to achieve it. It's that we have fewer
    		// CPU resources now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  4. src/cmd/internal/buildid/buildid.go

    	// In Mach-O files, there's no limit, so we have to parse the file.
    	// On other systems, we're trying to read enough that
    	// we get the beginning of the text segment in the read.
    	// The offset where the text segment begins in a hello
    	// world compiled for each different object format today:
    	//
    	//	Plan 9: 0x20
    	//	Windows: 0x600
    	//
    	data := make([]byte, readSize)
    	_, err = io.ReadFull(f, data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  5. logger/logger.go

    type traceRecorder struct {
    	Interface
    	BeginAt      time.Time
    	SQL          string
    	RowsAffected int64
    	Err          error
    }
    
    // New trace recorder
    func (l *traceRecorder) New() *traceRecorder {
    	return &traceRecorder{Interface: l.Interface, BeginAt: time.Now()}
    }
    
    // Trace implement logger interface
    func (l *traceRecorder) Trace(ctx context.Context, begin time.Time, fc func() (string, int64), err error) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:19:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. src/database/sql/ctxutil.go

    		}
    
    		// If a read-only transaction is requested return an error as the
    		// BeginTx driver value is not supported.
    		if opts.ReadOnly {
    			return nil, errors.New("sql: driver does not support read-only transactions")
    		}
    	}
    
    	if ctx.Done() == nil {
    		return ci.Begin()
    	}
    
    	txi, err := ci.Begin()
    	if err == nil {
    		select {
    		default:
    		case <-ctx.Done():
    			txi.Rollback()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 02 12:57:37 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

      const auto num_results = std::max(lhs_vals.size(), rhs_vals.size());
      std::vector<ResultType> res;
      res.reserve(num_results);
    
      auto lhs_start = lhs_vals.begin();
      auto rhs_start = rhs_vals.begin();
    
      for (int i = 0; i < num_results; ++i) {
        auto lhs_val = lhs_splat ? *lhs_start : *(lhs_start++);
        auto rhs_val = rhs_splat ? *rhs_start : *(rhs_start++);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess/id/stopwords.txt

    bagaikan
    sebagai
    sebagainya
    bagaimana
    bagaimanapun
    sebagaimana
    bagaimanakah
    bagi
    bahkan
    bahwa
    bahwasanya
    sebaliknya
    banyak
    sebanyak
    beberapa
    seberapa
    begini
    beginian
    beginikah
    beginilah
    sebegini
    begitu
    begitukah
    begitulah
    begitupun
    sebegitu
    belum
    belumlah
    sebelum
    sebelumnya
    sebenarnya
    berapa
    berapakah
    berapalah
    berapapun
    betulkah
    sebetulnya
    biasa
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  9. prepare_stmt.go

    	db.PreparedSQL = append(db.PreparedSQL, query)
    	db.Mux.Unlock()
    
    	return cacheStmt, nil
    }
    
    func (db *PreparedStmtDB) BeginTx(ctx context.Context, opt *sql.TxOptions) (ConnPool, error) {
    	if beginner, ok := db.ConnPool.(TxBeginner); ok {
    		tx, err := beginner.BeginTx(ctx, opt)
    		return &PreparedStmtTX{PreparedStmtDB: db, Tx: tx}, err
    	}
    
    	beginner, ok := db.ConnPool.(ConnPoolBeginner)
    	if !ok {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 28 08:47:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/model/util.go

    	var claims []string
    	findEndBracket := func(begin int) int {
    		if begin >= len(s) || s[begin] != '[' {
    			return -1
    		}
    		for i := begin + 1; i < len(s); i++ {
    			if s[i] == '[' {
    				return -1
    			}
    			if s[i] == ']' {
    				return i
    			}
    		}
    		return -1
    	}
    	for begin := 0; begin < len(s); {
    		end := findEndBracket(begin)
    		if end == -1 {
    			ret, err := extractNameInBrackets(s)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top