Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 335 for mod$ (0.3 sec)

  1. src/go/types/typexpr.go

    		if obj.pkg == check.pkg {
    			obj.used = true
    		}
    		check.addDeclDep(obj)
    		if !isValid(typ) {
    			return
    		}
    		x.mode = variable
    
    	case *Func:
    		check.addDeclDep(obj)
    		x.mode = value
    
    	case *Builtin:
    		x.id = obj.id
    		x.mode = builtin
    
    	case *Nil:
    		x.mode = value
    
    	default:
    		panic("unreachable")
    	}
    
    	x.typ = typ
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/cover/cover.go

    func usage() {
    	fmt.Fprint(os.Stderr, usageMessage)
    	fmt.Fprintln(os.Stderr, "\nFlags:")
    	flag.PrintDefaults()
    	fmt.Fprintln(os.Stderr, "\n  Only one of -html, -func, or -mode may be set.")
    	os.Exit(2)
    }
    
    var (
    	mode             = flag.String("mode", "", "coverage mode: set, count, atomic")
    	varVar           = flag.String("var", "GoCover", "name of coverage variable to generate")
    	output           = flag.String("o", "", "file for output")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. src/go/doc/reader.go

    	// collect MARKER(...): annotations
    	r.readNotes(src.Comments)
    	if r.mode&PreserveAST == 0 {
    		src.Comments = nil // consumed unassociated comments - remove from AST
    	}
    }
    
    func (r *reader) readPackage(pkg *ast.Package, mode Mode) {
    	// initialize reader
    	r.filenames = make([]string, len(pkg.Files))
    	r.imports = make(map[string]int)
    	r.mode = mode
    	r.types = make(map[string]*namedType)
    	r.funcs = make(methodSet)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. pkg/volume/projected/projected.go

    				continue
    			}
    
    			mode := *s.source.DefaultMode
    			if mounterArgs.FsUser != nil || mounterArgs.FsGroup != nil {
    				mode = 0600
    			}
    
    			payload[source.ClusterTrustBundle.Path] = volumeutil.FileProjection{
    				Data:   trustAnchors,
    				Mode:   mode,
    				FsUser: mounterArgs.FsUser,
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/math/big/float.go

    	if above {
    		return Above
    	}
    	return Below
    }
    
    // SetMode sets z's rounding mode to mode and returns an exact z.
    // z remains unchanged otherwise.
    // z.SetMode(z.Mode()) is a cheap way to set z's accuracy to [Exact].
    func (z *Float) SetMode(mode RoundingMode) *Float {
    	z.mode = mode
    	z.acc = Exact
    	return z
    }
    
    // Prec returns the mantissa precision of x in bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    	case assign | exact:
    		return "assign, exact"
    	}
    	return fmt.Sprintf("mode %d", m)
    }
    
    // unify attempts to unify x and y and reports whether it succeeded.
    // As a side-effect, types may be inferred for type parameters.
    // The mode parameter controls how types are compared.
    func (u *unifier) unify(x, y Type, mode unifyMode) bool {
    	return u.nify(x, y, mode, nil)
    }
    
    func (u *unifier) tracef(format string, args ...interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/syscall/syscall_darwin.go

    //sys	Lchown(path string, uid int, gid int) (err error)
    //sys	Link(path string, link string) (err error)
    //sys	Listen(s int, backlog int) (err error)
    //sys	Mkdir(path string, mode uint32) (err error)
    //sys	Mkfifo(path string, mode uint32) (err error)
    //sys	Mknod(path string, mode uint32, dev int) (err error)
    //sys	Mlock(b []byte) (err error)
    //sys	Mlockall(flags int) (err error)
    //sys	Mprotect(b []byte, prot int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

        model_dir: str,
        tags: Collection[str],
        representative_dataset_map: rd.RepresentativeDatasetMapping,
    ) -> None:
      """Runs the graph for calibration in graph mode.
    
      This function assumes _graph mode_ (used when legacy TF1 is used or when eager
      mode is explicitly disabled) when running the graph. This step is used in
      order to collect the statistics in CustomAggregatorOp for quantization using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/stmt.go

    		var v operand
    		check.expr(nil, &v, e)
    		if x.mode == invalid || v.mode == invalid {
    			continue L
    		}
    		check.convertUntyped(&v, x.typ)
    		if v.mode == invalid {
    			continue L
    		}
    		// Order matters: By comparing v against x, error positions are at the case values.
    		res := v // keep original v unchanged
    		check.comparison(&res, x, syntax.Eql, true)
    		if res.mode == invalid {
    			continue L
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    func (f *File) Fd() uintptr {
    	if f == nil {
    		return ^(uintptr(0))
    	}
    
    	// If we put the file descriptor into nonblocking mode,
    	// then set it to blocking mode before we return it,
    	// because historically we have always returned a descriptor
    	// opened in blocking mode. The File will continue to work,
    	// but any blocking operation will tie up a thread.
    	if f.nonblock {
    		f.pfd.SetBlocking()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top