Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 128 for nil (0.19 sec)

  1. src/cmd/go/internal/modget/get.go

    // or found == false if no such query exists.
    func (r *resolver) noneForPath(mPath string) (nq *query, found bool) {
    	if nq = r.nonesByPath[mPath]; nq != nil {
    		return nq, true
    	}
    	for _, nq := range r.wildcardNones {
    		if nq.matchesPath(mPath) {
    			return nq, true
    		}
    	}
    	return nil, false
    }
    
    // queryModule wraps modload.Query, substituting r.checkAllowedOr to decide
    // allowed versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/godefs.go

    			if def := typedef[name]; def != nil {
    				id.Name = gofmt(def)
    			}
    		}
    	}
    
    	conf.Fprint(&buf, fset, f.AST)
    
    	return buf.String()
    }
    
    var gofmtBuf strings.Builder
    
    // gofmt returns the gofmt-formatted string for an AST node.
    func gofmt(n interface{}) string {
    	gofmtBuf.Reset()
    	err := printer.Fprint(&gofmtBuf, fset, n)
    	if err != nil {
    		return "<" + err.Error() + ">"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/testdata/depBase/dep.go

    )
    
    // Issue 61973: indirect dependencies are not initialized.
    func init() {
    	if !depBaseInternal.Initialized {
    		panic("depBaseInternal not initialized")
    	}
    	if os.Stdout == nil {
    		panic("os.Stdout is nil")
    	}
    
    	Initialized = true
    }
    
    var Initialized bool
    
    var SlicePtr interface{} = &[]int{}
    
    var V int = 1
    
    var HasMask []string = []string{"hi"}
    
    type HasProg struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. src/cmd/asm/main.go

    	GOARCH := buildcfg.GOARCH
    
    	flags.Parse()
    	telemetry.Inc("asm/invocations")
    	telemetry.CountFlags("asm/flag:", *flag.CommandLine)
    
    	architecture := arch.Set(GOARCH, *flags.Shared || *flags.Dynlink)
    	if architecture == nil {
    		log.Fatalf("unrecognized architecture %s", GOARCH)
    	}
    	ctxt := obj.Linknew(architecture.LinkArch)
    	ctxt.Debugasm = flags.PrintOut
    	ctxt.Debugvlog = flags.DebugV
    	ctxt.Flag_dynlink = *flags.Dynlink
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/go/main.go

    		args = cmd.Flag.Args()
    	}
    
    	if cfg.DebugRuntimeTrace != "" {
    		f, err := os.Create(cfg.DebugRuntimeTrace)
    		if err != nil {
    			base.Fatalf("creating trace file: %v", err)
    		}
    		if err := rtrace.Start(f); err != nil {
    			base.Fatalf("starting event trace: %v", err)
    		}
    		defer func() {
    			rtrace.Stop()
    			f.Close()
    		}()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/99-minor/crypto/tls/66214.md

    3DES cipher suites were removed from the default list used when
    [Config.CipherSuites] is nil. The default can be reverted adding `tls3des=1` to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 178 bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		xprintf("Building packages and commands for target, %s/%s.\n", goos, goarch)
    	}
    	goInstall(nil, goBootstrap, "std")
    	goInstall(toolenv(), goBootstrap, "cmd")
    	checkNotStale(toolenv(), goBootstrap, toolchain...)
    	checkNotStale(nil, goBootstrap, "std")
    	checkNotStale(toolenv(), goBootstrap, "cmd")
    	checkNotStale(nil, gorootBinGo, "std")
    	checkNotStale(toolenv(), gorootBinGo, "cmd")
    	if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    		for i := len(po) - 1; i >= 0; i-- {
    			b := po[i]
    			locs := blockLocs[b.ID]
    			if locs == nil {
    				locs = state.allocBlock(b)
    				blockLocs[b.ID] = locs
    			}
    
    			// Build the starting state for the block from the final
    			// state of its predecessors.
    			startState, blockChanged := state.mergePredecessors(b, blockLocs, nil, false)
    			locs.lastCheckedTime = counterTime
    			counterTime++
    			if state.loggingLevel > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/envcmd/env_test.go

    			if err := os.WriteFile(scriptfile, b.Bytes(), 0777); err != nil {
    				t.Fatal(err)
    			}
    			cmd = testenv.Command(t, "cmd.exe", "/C", scriptfile)
    		} else {
    			cmd = testenv.Command(t, "sh", "-c", b.String())
    		}
    		out, err := cmd.Output()
    		t.Log(string(out))
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		if string(out) != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. schema/naming.go

    	UniqueName(table, column string) string
    }
    
    // Replacer replacer interface like strings.Replacer
    type Replacer interface {
    	Replace(name string) string
    }
    
    var _ Namer = (*NamingStrategy)(nil)
    
    // NamingStrategy tables, columns naming strategy
    type NamingStrategy struct {
    	TablePrefix         string
    	SingularTable       bool
    	NameReplacer        Replacer
    	NoLowerCase         bool
    	IdentifierMaxLength int
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top