Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for COMMENT (0.17 sec)

  1. pkg/controller/daemon/daemon_controller.go

    	key, err := controller.KeyFunc(ds)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Couldn't get key for object %#v: %v", ds, err))
    		return
    	}
    
    	// TODO: Handle overlapping controllers better. See comment in ReplicationManager.
    	dsc.queue.Add(key)
    }
    
    func (dsc *DaemonSetsController) enqueueDaemonSetAfter(obj interface{}, after time.Duration) {
    	key, err := controller.KeyFunc(obj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. src/time/format.go

    // and thus may not sort correctly once formatted.
    //
    // Most programs can use one of the defined constants as the layout passed to
    // Format or Parse. The rest of this comment can be ignored unless you are
    // creating a custom layout string.
    //
    // To define your own format, write down what the reference time would look like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		old := *r.Expr
    		*r.Expr = expr
    
    		// Record source-level edit for cgo output.
    		if !r.Done {
    			// Prepend a space in case the earlier code ends
    			// with '/', which would give us a "//" comment.
    			repl := " " + gofmtPos(expr, old.Pos())
    			end := fset.Position(old.End())
    			// Subtract 1 from the column if we are going to
    			// append a close parenthesis. That will set the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top