Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for printsp (0.14 sec)

  1. src/time/time.go

    	// Omit trailing zeros up to and including decimal point.
    	w := len(buf)
    	print := false
    	for i := 0; i < prec; i++ {
    		digit := v % 10
    		print = print || digit != 0
    		if print {
    			w--
    			buf[w] = byte(digit) + '0'
    		}
    		v /= 10
    	}
    	if print {
    		w--
    		buf[w] = '.'
    	}
    	return w, v
    }
    
    // fmtInt formats v into the tail of buf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    	flag.BoolVar(&noClean, "no-clean", noClean, "print deprecation warning")
    
    	xflagparse(0)
    
    	if noClean {
    		xprintf("warning: --no-clean is deprecated and has no effect; use 'go install std cmd' instead\n")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/html/template/exec_test.go

    	// Print etc.
    	{"print", `{{print "hello, print"}}`, "hello, print", tVal, true},
    	{"print 123", `{{print 1 2 3}}`, "1 2 3", tVal, true},
    	{"print nil", `{{print nil}}`, "&lt;nil&gt;", tVal, true},
    	{"println", `{{println 1 2 3}}`, "1 2 3\n", tVal, true},
    	{"printf int", `{{printf "%04x" 127}}`, "007f", tVal, true},
    	{"printf float", `{{printf "%g" 3.5}}`, "3.5", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	// Print etc.
    	{"print", `{{print "hello, print"}}`, "hello, print", tVal, true},
    	{"print 123", `{{print 1 2 3}}`, "1 2 3", tVal, true},
    	{"print nil", `{{print nil}}`, "<nil>", tVal, true},
    	{"println", `{{println 1 2 3}}`, "1 2 3\n", tVal, true},
    	{"printf int", `{{printf "%04x" 127}}`, "007f", tVal, true},
    	{"printf float", `{{printf "%g" 3.5}}`, "3.5", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

    import org.jetbrains.kotlin.analysis.low.level.api.fir.resolver.AllCandidatesResolver
    import org.jetbrains.kotlin.analysis.utils.errors.withPsiEntry
    import org.jetbrains.kotlin.analysis.utils.printer.parentOfType
    import org.jetbrains.kotlin.fir.FirElement
    import org.jetbrains.kotlin.fir.analysis.checkers.toRegularClassSymbol
    import org.jetbrains.kotlin.fir.analysis.diagnostics.FirErrors
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    }
                    dependencies {
                        compile project(':b')
                    }
                    task check(dependsOn: configurations.compile) { doLast { configurations.compile.each { println it } } }
                }
                project(':b') {
                    configurations {
                        foo.attributes { $debug }
                        bar.attributes { $debug }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    			obj.ANOP:
    			break
    		}
    	}
    }
    
    func (c *ctxt5) asmout(p *obj.Prog, o *Optab, out []uint32) {
    	c.printp = p
    	o1 := uint32(0)
    	o2 := uint32(0)
    	o3 := uint32(0)
    	o4 := uint32(0)
    	o5 := uint32(0)
    	o6 := uint32(0)
    	if false { /*debug['P']*/
    		fmt.Printf("%x: %v\ttype %d\n", uint32(p.Pc), p, o.type_)
    	}
    	switch o.type_ {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    import org.jetbrains.kotlin.analysis.low.level.api.fir.resolver.AllCandidatesResolver
    import org.jetbrains.kotlin.analysis.low.level.api.fir.util.ContextCollector
    import org.jetbrains.kotlin.analysis.utils.printer.parentOfType
    import org.jetbrains.kotlin.analysis.utils.printer.parentsOfType
    import org.jetbrains.kotlin.fir.*
    import org.jetbrains.kotlin.fir.declarations.*
    import org.jetbrains.kotlin.fir.declarations.builder.buildImport
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	"math"
    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/internal/quoted"
    )
    
    var debugDefine = flag.Bool("debug-define", false, "print relevant #defines")
    var debugGcc = flag.Bool("debug-gcc", false, "print gcc invocations")
    
    var nameToC = map[string]string{
    	"schar":         "signed char",
    	"uchar":         "unsigned char",
    	"ushort":        "unsigned short",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	res := pvc.DeepCopy()
    	// Add provision related annotations
    	metav1.SetMetaDataAnnotation(&res.ObjectMeta, volume.AnnSelectedNode, nodeLabelValue)
    
    	return res
    }
    
    // reasonNames pretty-prints a list of reasons with variable names in
    // case of a test failure because that is easier to read than the full
    // strings.
    func reasonNames(reasons ConflictReasons) string {
    	var varNames []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top