Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SecurityError (0.11 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	Log(msg string)
    
    	// SecurityError prints the given security error log message.
    	// The Client returns ErrSecurity from any operation that invokes SecurityError,
    	// but the return value is mainly for testing. In a real program,
    	// SecurityError should typically print the message and call log.Fatal or os.Exit.
    	SecurityError(msg string)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/sumdb.go

    	os.MkdirAll(filepath.Dir(targ), 0777)
    	lockedfile.Write(targ, bytes.NewReader(data), 0666)
    }
    
    func (*dbClient) Log(msg string) {
    	// nothing for now
    }
    
    func (*dbClient) SecurityError(msg string) {
    	base.Fatalf("%s", msg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top