Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for discriminator (0.24 sec)

  1. src/cmd/doc/main.go

    		// Easy: current directory.
    		return importDir(wd), "", "", false
    	}
    	arg := args[0]
    	// We have an argument. If it is a directory name beginning with . or ..,
    	// use the absolute path name. This discriminates "./errors" from "errors"
    	// if the current directory contains a non-standard errors package.
    	if isDotSlash(arg) {
    		arg = filepath.Join(wd, arg)
    	}
    	switch len(args) {
    	default:
    		usage()
    	case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. LICENSE

    or convey a specific copy of the covered work, then the patent license
    you grant is automatically extended to all recipients of the covered
    work and works based on it.
    
      A patent license is "discriminatory" if it does not include within
    the scope of its coverage, prohibits the exercise of, or is
    conditioned on the non-exercise of one or more of the rights that are
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  3. src/encoding/gob/doc.go

    	struct { C, D int }		// no field names in common
    
    Integers are transmitted two ways: arbitrary precision signed integers or
    arbitrary precision unsigned integers. There is no int8, int16 etc.
    discrimination in the gob format; there are only signed and unsigned integers. As
    described below, the transmitter sends the value in a variable-length encoding;
    the receiver accepts the value and stores it in the destination variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/image/png/reader_test.go

    // having 100% alpha) or image.NRGBA, encapsulates whether or not the image has
    // transparency. This map is a hack to work around the fact that the Go model
    // can't otherwise discriminate PNG's "IHDR says color (with no alpha) but tRNS
    // says alpha" and "IHDR says color with alpha".
    var fakeIHDRUsings = map[string]string{
    	"ftbbn0g01": "    using grayscale;\n",
    	"ftbbn0g02": "    using grayscale;\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
Back to top