Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,586 for vfprintf (0.25 sec)

  1. src/cmd/asm/main.go

    	// Create object file, write header.
    	buf, err := bio.Create(*flags.OutputFile)
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer buf.Close()
    
    	if !*flags.SymABIs {
    		buf.WriteString(objabi.HeaderString())
    		fmt.Fprintf(buf, "!\n")
    	}
    
    	// Set macros for GOEXPERIMENTs so we can easily switch
    	// runtime assembly code based on them.
    	if objabi.LookupPkgSpecial(ctxt.Pkgpath).AllowAsmABI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. cmd/importverifier/importverifier.go

    	cmd := "go"
    	args := []string{"list", "-json", fmt.Sprintf("%s/...", treeBase)}
    	c := exec.Command(cmd, args...)
    	stdout, err := c.Output()
    	if err != nil {
    		var message string
    		if ee, ok := err.(*exec.ExitError); ok {
    			message = fmt.Sprintf("%v\n%v", ee, string(ee.Stderr))
    		} else {
    			message = fmt.Sprintf("%v", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/testflag.go

    		}
    	}
    
    	// Forward any unparsed arguments (following --args) to the test binary.
    	return packageNames, append(injectedFlags, explicitArgs...)
    }
    
    func exitWithUsage() {
    	fmt.Fprintf(os.Stderr, "usage: %s\n", CmdTest.UsageLine)
    	fmt.Fprintf(os.Stderr, "Run 'go help %s' and 'go help %s' for details.\n", CmdTest.LongName(), HelpTestflag.LongName())
    
    	base.SetExitStatus(2)
    	base.Exit()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/compute.go

    	if patchVersionBranchExists(clusterVersion, stableVersion) {
    		currentBranch := getBranchFromVersion(clusterVersionStr)
    		versionLabel := fmt.Sprintf("stable-%s", currentBranch)
    		description := fmt.Sprintf("version in the v%s series", currentBranch)
    
    		// Get and output the latest patch version for the cluster branch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/internal/coverage/pods/pods.go

    	}
    	slices.SortFunc(pods, func(a, b Pod) int {
    		return strings.Compare(a.MetaFile, b.MetaFile)
    	})
    	return pods
    }
    
    func warning(s string, a ...interface{}) {
    	fmt.Fprintf(os.Stderr, "warning: ")
    	fmt.Fprintf(os.Stderr, s, a...)
    	fmt.Fprintf(os.Stderr, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/go/types/format.go

    			}
    			buf.WriteByte(']')
    			arg = buf.String()
    		}
    		args[i] = arg
    	}
    	return fmt.Sprintf(format, args...)
    }
    
    // check may be nil.
    func (check *Checker) sprintf(format string, args ...any) string {
    	var fset *token.FileSet
    	var qf Qualifier
    	if check != nil {
    		fset = check.fset
    		qf = check.qualifier
    	}
    	return sprintf(fset, qf, false, format, args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/os/signal/signal_cgo_test.go

    		}
    
    		return nil
    	}
    
    	err := fn()
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "session leader error: %v\n", err)
    		cmd.Process.Kill()
    		// Wait for exit below.
    	}
    
    	werr := cmd.Wait()
    	if werr != nil {
    		fmt.Fprintf(os.Stderr, "error running second subprocess: %v\n", err)
    	}
    
    	if err != nil || werr != nil {
    		os.Exit(1)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/objfile.go

    	ver := ""
    	if ctxt.Debugasm > 1 {
    		ver = fmt.Sprintf("<%d>", s.ABI())
    		if ctxt.Debugasm > 2 {
    			ver += fmt.Sprintf("<idx %d %d>", s.PkgIdx, s.SymIdx)
    		}
    	}
    	fmt.Fprintf(ctxt.Bso, "%s%s ", name, ver)
    	if s.Type != 0 {
    		fmt.Fprintf(ctxt.Bso, "%v ", s.Type)
    	}
    	if s.Static() {
    		fmt.Fprint(ctxt.Bso, "static ")
    	}
    	if s.DuplicateOK() {
    		fmt.Fprintf(ctxt.Bso, "dupok ")
    	}
    	if s.CFunc() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/config.go

    	kinds := []string{}
    	cmd := &cobra.Command{
    		Use:   fmt.Sprintf("%s-defaults", action),
    		Short: fmt.Sprintf("Print default %s configuration, that can be used for 'kubeadm %s'", action, action),
    		Long: fmt.Sprintf(dedent.Dedent(`
    			This command prints objects such as the default %s configuration that is used for 'kubeadm %s'.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/import.go

    			return fmt.Sprintf("%s; to add it:\n\tcd %s\n\tgo get %s", message, MainModules.ModRoot(e.ImportingMainModule), e.Path)
    		}
    		return fmt.Sprintf("%s; to add it:\n\tgo get %s", message, e.Path)
    	}
    
    	if e.newMissingVersion != "" {
    		return fmt.Sprintf("package %s provided by %s at latest version %s but not at required version %s", e.Path, e.Module.Path, e.Module.Version, e.newMissingVersion)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
Back to top