Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for input (0.56 sec)

  1. src/cmd/go/internal/load/pkg.go

    		}
    	}
    
    	// Check for case-insensitive collision of input files.
    	// To avoid problems on case-insensitive files, we reject any package
    	// where two different input files have equal names under a case-insensitive
    	// comparison.
    	inputs := p.AllFiles()
    	f1, f2 := str.FoldDup(inputs)
    	if f1 != "" {
    		setError(fmt.Errorf("case-insensitive file name collision: %q and %q", f1, f2))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		gp2flags1flags = regInfo{inputs: []regMask{gp, gp, 0}, outputs: []regMask{gp, 0}}
    
    		gp2flags     = regInfo{inputs: []regMask{gpsp, gpsp}}
    		gp1flags     = regInfo{inputs: []regMask{gpsp}}
    		gp0flagsLoad = regInfo{inputs: []regMask{gpspsbg, 0}}
    		gp1flagsLoad = regInfo{inputs: []regMask{gpspsbg, gpsp, 0}}
    		gp2flagsLoad = regInfo{inputs: []regMask{gpspsbg, gpsp, gpsp, 0}}
    		flagsgp      = regInfo{inputs: nil, outputs: gponly}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // The -fuzzcache flag causes clean to remove files stored in the Go build
    // cache for fuzz testing. The fuzzing engine caches files that expand
    // code coverage, so removing them may make fuzzing less effective until
    // new inputs are found that provide the same coverage. These files are
    // distinct from those stored in testdata directory; clean does not remove
    // those files.
    //
    // For more about build flags, see 'go help build'.
    //
    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/cmd/compile/internal/ssa/_gen/generic.rules

    (Div64 <t> n (Const64 [c])) && c < 0 && c != -1<<63 => (Neg64 (Div64 <t> n (Const64 <t> [-c])))
    
    // Dividing by the most-negative number.  Result is always 0 except
    // if the input is also the most-negative number.
    // We can detect that using the sign bit of x & -x.
    (Div8  <t> x (Const8  [-1<<7 ])) => (Rsh8Ux64  (And8  <t> x (Neg8  <t> x)) (Const64 <typ.UInt64> [7 ]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			// Ignore error; different assembler versions
    			// are unlikely to make any difference anyhow.
    			fmt.Fprintf(h, "asm %q\n", id)
    		}
    	}
    
    	// Input files.
    	inputFiles := str.StringList(
    		p.GoFiles,
    		p.CgoFiles,
    		p.CFiles,
    		p.CXXFiles,
    		p.FFiles,
    		p.MFiles,
    		p.HFiles,
    		p.SFiles,
    		p.SysoFiles,
    		p.SwigFiles,
    		p.SwigCXXFiles,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    "\U00110000"         // illegal: invalid Unicode code point
    </pre>
    
    <p>
    These examples all represent the same string:
    </p>
    
    <pre>
    "日本語"                                 // UTF-8 input text
    `日本語`                                 // UTF-8 input text as a raw literal
    "\u65e5\u672c\u8a9e"                    // the explicit Unicode code points
    "\U000065e5\U0000672c\U00008a9e"        // the explicit Unicode code points
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top