Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for COMMENT (0.11 sec)

  1. hack/tools/go.sum

    github.com/gostaticanalysis/analysisutil v0.7.1/go.mod h1:v21E3hY37WKMGSnbsw2S/ojApNWb6C1//mXO48CXbVc=
    github.com/gostaticanalysis/comment v1.4.1/go.mod h1:ih6ZxzTHLdadaiSnF5WY3dxUoXfXAlTaRzuaNDlSado=
    github.com/gostaticanalysis/comment v1.4.2 h1:hlnx5+S2fY9Zo9ePo4AhgYsYHbM2+eAv8m/s1JiCd6Q=
    github.com/gostaticanalysis/comment v1.4.2/go.mod h1:KLUTGDv6HOCotCH8h2erHKmpci2ZoR8VPu34YA2uzdM=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  2. src/time/time_test.go

    	}
    	quick.Check(f1, cfg)
    
    	// multiples of Second
    	f2 := func(ti int64, tns int32, di int32) bool {
    		d := Duration(di) * Second
    		if d < 0 {
    			d = -d
    		}
    		ti >>= 1 // see comment in f1
    		return testOne(ti, int64(tns), int64(d))
    	}
    	quick.Check(f2, cfg)
    
    	// halfway cases
    	f3 := func(tns, di int64) bool {
    		di &= 0xfffffffe
    		if di == 0 {
    			di = 2
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    		// During a periodic GC cycle, reduce the number of idle mark workers
    		// required. However, we need at least one dedicated mark worker or
    		// idle GC worker to ensure GC progress in some scenarios (see comment
    		// on maxIdleMarkWorkers).
    		if dedicatedMarkWorkersNeeded > 0 {
    			c.setMaxIdleMarkWorkers(0)
    		} else {
    			// TODO(mknyszek): The fundamental reason why we need this is because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	_PageSize = 1 << _PageShift
    	_PageMask = _PageSize - 1
    
    	// _64bit = 1 on 64-bit systems, 0 on 32-bit systems
    	_64bit = 1 << (^uintptr(0) >> 63) / 2
    
    	// Tiny allocator parameters, see "Tiny allocator" comment in malloc.go.
    	_TinySize      = 16
    	_TinySizeClass = int8(2)
    
    	_FixAllocChunk = 16 << 10 // Chunk size for FixAlloc
    
    	// Per-P, per order stack segment cache size.
    	_StackCacheSize = 32 * 1024
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    		// Syntax errors are not comments.
    		if text[0] != '/' {
    			t.Errorf("%s: %s", pos, text)
    			return
    		}
    
    		// Parse the assertion in the comment.
    		m := rx.FindStringSubmatch(text)
    		if m == nil {
    			t.Errorf("%s: bad comment: %s", pos, text)
    			return
    		}
    		name, want := m[1], m[2]
    
    		// Look up the name in the innermost enclosing scope.
    		inner := mainScope.Innermost(pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		}
    	}
    }
    
    const (
    	// do not reorder
    	NetSetupUnknownStatus = iota
    	NetSetupUnjoined
    	NetSetupWorkgroupName
    	NetSetupDomainName
    )
    
    type UserInfo10 struct {
    	Name       *uint16
    	Comment    *uint16
    	UsrComment *uint16
    	FullName   *uint16
    }
    
    //sys	NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // ResourceArgUseInfo for each old resource argument.
      llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> use_info;
      // Input for AddLoadsStoresOutsideControlFlowOp(), see its comment.
      llvm::SmallDenseMap<int64_t, std::pair<Type, int64_t>>
          arg_data_type_and_updated_output_index;
    };
    
    // Lifts loads/stores from a PartitionedCallOp's callee function. If anything
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/math_grad.cc

      //
      // There's a special case for propagating gradients when there are
      // multiple minima (or maxima) - we choose to divide the gradient
      // equally among all matching inputs.
      //
      // Please note this comment
      // https://github.com/tensorflow/tensorflow/issues/4886#issuecomment-256836063
      // for details.
    
      // Running example:
      // input: [[5, 5, 5],
      //         [1, 2, -3]]
      // reduction_indices: [1]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    				}
    				if mg, err := rs.Graph(ctx); err != nil {
    					return false, err
    				} else if _, ok := mg.RequiredBy(dep.mod); !ok {
    					// dep.mod is not an explicit dependency, but needs to be.
    					// See comment on error returned below.
    					pkg.err = &DirectImportFromImplicitDependencyError{
    						ImporterPath: pkg.path,
    						ImportedPath: dep.path,
    						Module:       dep.mod,
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.cc

    // Instead we want {S,&,X} to denote the infinite list [S, S&X,
    // S&X&X',S&X&X'&X'', ...] where X, X', X'' are predicates that assert Cond is
    // true on iteration 0, 1, 2 respectively.  This is made more precise in the
    // comment on the AndRecurrence class.
    //
    // The general algorithm that deals with cycles does two topological-order
    // iterations over the graph.  On the first iteration it assigns a symbolic
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top