Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for flight (1.12 sec)

  1. src/cmd/go/internal/modload/search.go

    				}
    			}
    
    			if elem == "vendor" && (prune&pruneVendor != 0) {
    				return filepath.SkipDir
    			}
    			return nil
    		})
    		if err != nil {
    			m.AddError(err)
    		}
    	}
    
    	// Wait for all in-flight operations to complete before returning.
    	defer func() {
    		<-q.Idle()
    		sort.Strings(m.Pkgs) // sort everything we added for determinism
    	}()
    
    	if filter == includeStd {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. logger/sql_test.go

    	}{
    		{
    			SQL:           "create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
    			NumericRegexp: nil,
    			Vars:          []interface{}{"jinzhu", 1, 999.99, true, []byte("12345"), tt, &tt, nil, "w@g.\"com", myrole, pwd},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/sym.go

    	}
    
    	// Exported symbols before non-exported.
    	ea := IsExported(a.Name)
    	eb := IsExported(b.Name)
    	if ea != eb {
    		return ea
    	}
    
    	// Order by name and then (for non-exported names) by package
    	// height and path.
    	if a.Name != b.Name {
    		return a.Name < b.Name
    	}
    	if !ea {
    		return a.Pkg.Path < b.Pkg.Path
    	}
    	return false
    }
    
    // IsExported reports whether name is an exported Go symbol (that is,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/pos.go

    // A Pos represents an absolute (line, col) source position
    // with a reference to position base for computing relative
    // (to a file, or line directive) position information.
    // Pos values are intentionally light-weight so that they
    // can be created without too much concern about space use.
    type Pos struct {
    	base      *PosBase
    	line, col uint32
    }
    
    // MakePos returns a new Pos for the given PosBase, line and column.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/mkbuiltin.go

    	return types.NewSignature(nil, params, results)
    }
    
    func params(tlist ...*types.Type) []*types.Field {
    	flist := make([]*types.Field, len(tlist))
    	for i, typ := range tlist {
    		flist[i] = types.NewField(src.NoXPos, nil, typ)
    	}
    	return flist
    }
    `)
    
    	mkbuiltin(&b, "runtime")
    	mkbuiltin(&b, "coverage")
    
    	var err error
    	out := b.Bytes()
    	if !*nofmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/lockedfile/lockedfile_plan9.go

    	// figure out when it becomes available. We'll use exponential backoff with
    	// some jitter and an arbitrary limit of 500ms.
    
    	// If the file was unpacked or created by some other program, it might not
    	// have the ModeExclusive bit set. Set it before we call OpenFile, so that we
    	// can be confident that a successful OpenFile implies exclusive use.
    	if fi, err := os.Stat(name); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/lockedfile/lockedfile_test.go

    		out, err := cmd.CombinedOutput()
    		if err != nil {
    			t.Errorf("%v:\n%s", err, out)
    		}
    		close(qDone)
    	})
    
    	// Wait until process Q has either failed or locked file B.
    	// Otherwise, P.2 might not block on file B as intended.
    locked:
    	for {
    		if _, err := os.Stat(filepath.Join(dir, "locked")); !os.IsNotExist(err) {
    			break locked
    		}
    		timer := time.NewTimer(1 * time.Millisecond)
    		select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/cover/html.go

    			body {
    				background: black;
    				color: rgb(80, 80, 80);
    			}
    			body, pre, #legend span {
    				font-family: Menlo, monospace;
    				font-weight: bold;
    			}
    			#topbar {
    				background: black;
    				position: fixed;
    				top: 0; left: 0; right: 0;
    				height: 42px;
    				border-bottom: 1px solid rgb(80, 80, 80);
    			}
    			#content {
    				margin-top: 50px;
    			}
    			#nav, #legend {
    				float: left;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/mono.go

    // we construct vertices representing types A, B, and T. Because of
    // declaration "type T int", we construct edges T<-A and T<-B with
    // weight 1; and because of instantiation "f[T, map[A]B]" we construct
    // edges A<-T with weight 0, and B<-A and B<-B with weight 1.
    //
    // Finally, we look for any positive-weight cycles. Zero-weight cycles
    // are allowed because static instantiation will reach a fixed point.
    
    type monoGraph struct {
    	vertices []monoVertex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 00:05:29 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/list.go

    		requirements = rs
    		// TODO(#61605): The extra ListU clause fixes a problem with Go 1.21rc3
    		// where "go mod tidy" and "go list -m -u all" fight over whether the go.sum
    		// should be considered up-to-date. The fix for now is to always treat the
    		// go.sum as up-to-date during list -m -u. Probably the right fix is more targeted,
    		// but in general list -u is looking up other checksums in the checksum database
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top