Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for noArgs (0.13 sec)

  1. src/runtime/runtime1.go

    //go:nosplit
    func argv_index(argv **byte, i int32) *byte {
    	return *(**byte)(add(unsafe.Pointer(argv), uintptr(i)*goarch.PtrSize))
    }
    
    func args(c int32, v **byte) {
    	argc = c
    	argv = v
    	sysargs(c, v)
    }
    
    func goargs() {
    	if GOOS == "windows" {
    		return
    	}
    	argslice = make([]string, argc)
    	for i := int32(0); i < argc; i++ {
    		argslice[i] = gostringnocopy(argv_index(argv, i))
    	}
    }
    
    func goenvs_unix() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/cc_op_gen_util.cc

      } else {
        comment = strings::StrCat(api_def.summary(), "\n");
      }
      if (!api_def.description().empty()) {
        strings::StrAppend(&comment, "\n", api_def.description(), "\n");
      }
      strings::StrAppend(&comment, "\nArgs:\n* scope: A Scope object\n");
    
      // Process inputs
      for (int i = 0; i < api_def.arg_order_size(); ++i) {
        const auto& arg = *FindInputArg(api_def.arg_order(i), graph_op_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		if arch.sizes == nil {
    			// TODO(adonovan): fix: now that asmdecl is not in the standard
    			// library we cannot assume types.SizesFor is consistent with arches.
    			// For now, assume 64-bit norms and print a warning.
    			// But this warning should really be deferred until we attempt to use
    			// arch, which is very unlikely. Better would be
    			// to defer size computation until we have Pass.TypesSizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      private static class PassObject extends SomeClassThatDoesNotUseNullable {
        public static void doThrow(Object arg) {
          if (arg == null) {
            throw new FooException();
          }
        }
    
        public void noArg() {}
    
        public void oneArg(String s) {
          checkNotNull(s);
        }
    
        void packagePrivateOneArg(String s) {
          checkNotNull(s);
        }
    
        protected void protectedOneArg(String s) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		// applied.)
    		var noPkgs []*loadPkg
    		// We also know that we're going to call updateRequirements again next
    		// iteration so we don't need to also update it here. (That would waste time
    		// computing a "direct" map that we'll have to recompute later anyway.)
    		direct := ld.requirements.direct
    		rs, err := updateRoots(ctx, direct, ld.requirements, noPkgs, toAdd, ld.AssumeRootsImported)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	c := s.newValue1(ssa.OpSliceCap, types.Types[types.TINT], slice)
    
    	// Add number of new elements to length.
    	nargs := s.constInt(types.Types[types.TINT], int64(len(n.Args)-1))
    	l = s.newValue2(s.ssaOp(ir.OADD, types.Types[types.TINT]), types.Types[types.TINT], l, nargs)
    
    	// Decide if we need to grow
    	cmp := s.newValue2(s.ssaOp(ir.OLT, types.Types[types.TUINT]), types.Types[types.TBOOL], c, l)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	typelinksinit() // uses maps, activeModules
    	itabsinit()     // uses activeModules
    	stkobjinit()    // must run before GC starts
    
    	sigsave(&gp.m.sigmask)
    	initSigmask = gp.m.sigmask
    
    	goargs()
    	goenvs()
    	secure()
    	checkfds()
    	parsedebugvars()
    	gcinit()
    
    	// Allocate stack space that can be used when crashing due to bad stack
    	// conditions, e.g. morestack on g0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. RELEASE.md

        comma-separated list of base paths that are searched to find CUDA libraries
        and headers.
    
    Refer to our
    [public project status tracker](https://github.com/orgs/tensorflow/projects/4)
    and
    [issues tagged with `2.0`](https://github.com/tensorflow/tensorflow/issues?q=is%3Aopen+is%3Aissue+label%3A2.0)
    on GitHub for insight into recent issues and development progress.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top