Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for modify (0.49 sec)

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

    		if p.Error == nil {
    			p.Error = &PackageError{Err: fmt.Errorf(format, args...)}
    			p.Incomplete = true
    		}
    	}
    
    	var debugModFromModinfo func(*modinfo.ModulePublic) *debug.Module
    	debugModFromModinfo = func(mi *modinfo.ModulePublic) *debug.Module {
    		version := mi.Version
    		if version == "" {
    			version = "(devel)"
    		}
    		dm := &debug.Module{
    			Path:    mi.Path,
    			Version: version,
    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

    		{name: "XORQloadidx8", argLength: 4, reg: gp21loadidx, asm: "XORQ", scale: 8, aux: "SymOff", resultInArg0: true, clobberFlags: true, symEffect: "Read"},
    
    		// direct binary op on memory (read-modify-write)
    		// L = int32, Q = int64
    		// does *(arg0+auxint+aux) op= arg1, arg2=mem
    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

    // to standard error.
    //
    // The -e flag causes tidy to attempt to proceed despite errors
    // encountered while loading packages.
    //
    // The -diff flag causes tidy not to modify go.mod or go.sum but
    // instead print the necessary changes as a unified diff. It exits
    // with a non-zero code if the diff is not empty.
    //
    // The -go flag causes tidy to update the 'go' directive in the go.mod
    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/internal/obj/x86/asm6.go

    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	}
    	if p.Internal.FuzzInstrument {
    		if fuzzFlags := fuzzInstrumentFlags(); fuzzFlags != nil {
    			fmt.Fprintf(h, "fuzz %q\n", fuzzFlags)
    		}
    	}
    	if p.Internal.BuildInfo != nil {
    		fmt.Fprintf(h, "modinfo %q\n", p.Internal.BuildInfo.String())
    	}
    
    	// Configuration specific to compiler toolchain.
    	switch cfg.BuildToolchainName {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top