Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Grover (0.71 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	ycover[Yu7*Ymax+Yu8] = 1
    
    	ycover[Yi0*Ymax+Ys32] = 1
    	ycover[Yi1*Ymax+Ys32] = 1
    	ycover[Yu2*Ymax+Ys32] = 1
    	ycover[Yu7*Ymax+Ys32] = 1
    	ycover[Yu8*Ymax+Ys32] = 1
    	ycover[Yi8*Ymax+Ys32] = 1
    
    	ycover[Yi0*Ymax+Yi32] = 1
    	ycover[Yi1*Ymax+Yi32] = 1
    	ycover[Yu2*Ymax+Yi32] = 1
    	ycover[Yu7*Ymax+Yi32] = 1
    	ycover[Yu8*Ymax+Yi32] = 1
    	ycover[Yi8*Ymax+Yi32] = 1
    	ycover[Ys32*Ymax+Yi32] = 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	}
    
    	p.Internal.Imports = append(p.Internal.Imports, p1)
    }
    
    // PrepareForCoverageBuild is a helper invoked for "go install
    // -cover", "go run -cover", and "go build -cover" (but not used by
    // "go test -cover"). It walks through the packages being built (and
    // dependencies) and marks them for coverage instrumentation when
    // appropriate, and possibly adding additional deps where needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //			significantly more expensive.
    //		Sets -cover.
    //	-coverpkg pattern1,pattern2,pattern3
    //		For a build that targets package 'main' (e.g. building a Go
    //		executable), apply coverage analysis to each package matching
    //		the patterns. The default is to apply coverage analysis to
    //		packages in the main Go module. See 'go help packages' for a
    //		description of package patterns.  Sets -cover.
    //	-v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    var connectionRequestQueueSize = 1000000
    
    type dsnConnector struct {
    	dsn    string
    	driver driver.Driver
    }
    
    func (t dsnConnector) Connect(_ context.Context) (driver.Conn, error) {
    	return t.driver.Open(t.dsn)
    }
    
    func (t dsnConnector) Driver() driver.Driver {
    	return t.driver
    }
    
    // OpenDB opens a database using a [driver.Connector], allowing drivers to
    // bypass a string based data source name.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    		}
    	})
    
    	db := newTestDB(t, "magicquery")
    	defer closeDB(t, db)
    
    	driver := db.Driver().(*fakeDriver)
    
    	// Force the number of open connections to 0 so we can get an accurate
    	// count for the test
    	db.clearAllConns(t)
    
    	driver.mu.Lock()
    	opens0 := driver.openCount
    	closes0 := driver.closeCount
    	driver.mu.Unlock()
    
    	db.SetMaxIdleConns(10)
    	db.SetMaxOpenConns(10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    			}
    			coverFile = strings.TrimSuffix(coverFile, ".go") + ".cover.go"
    			if cfg.Experiment.CoverageRedesign {
    				infiles = append(infiles, sourceFile)
    				outfiles = append(outfiles, coverFile)
    			} else {
    				cover := p.Internal.CoverVars[key]
    				if cover == nil {
    					continue // Not covering this file.
    				}
    				if err := b.cover(a, coverFile, sourceFile, cover.Var); err != nil {
    					return err
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    			// the RawSubject of the certificate to RawIssuer on the parsed CRL.
    			// However, this doesn't work with our hacked issuers above (that
    			// aren't parsed from a proper DER bundle but are instead manually
    			// constructed). Prefer RawSubject when it is set.
    			if len(tc.issuer.RawSubject) > 0 {
    				issuerSubj, err := subjectBytes(tc.issuer)
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		Errorf(nil, "too much data, last section %v (%d, over %v bytes)", symn, state.datsize, cutoff)
    	}
    }
    
    func checkSectSize(sect *sym.Section) {
    	// TODO: consider using 4 GB size limit for DWARF sections, and
    	// make sure we generate unsigned offset in relocations and check
    	// for overflow.
    	if sect.Length > cutoff {
    		Errorf(nil, "too much data in section %s (%d, over %v bytes)", sect.Name, sect.Length, cutoff)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top