Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 335 for mod$ (0.13 sec)

  1. hack/lib/golang.sh

          # fully-qualified Go package name.
          echo "${target}"
          continue
        fi
    
        if [[ "${target}" =~ ^vendor/ ]]; then
          # Strip vendor/ prefix, since we're building in gomodule mode.  This is
          # for backwards compatibility.
          echo "${target#"vendor/"}"
          continue
        fi
    
        # If the target starts with "./", assume it is a local path which qualifies
        # as a Go target name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  2. src/runtime/iface.go

    // Returns nil if the given interface/type pair isn't present.
    func (t *itabTableType) find(inter *interfacetype, typ *_type) *itab {
    	// Implemented using quadratic probing.
    	// Probe sequence is h(i) = h0 + i*(i+1)/2 mod 2^k.
    	// We're guaranteed to hit all table entries using this probe sequence.
    	mask := t.size - 1
    	h := itabHashFunc(inter, typ) & mask
    	for i := uintptr(1); ; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. cmd/data-scanner.go

    		updates:               cache.Info.updates,
    		updateCurrentPath:     updatePath,
    		disks:                 disks,
    		disksQuorum:           len(disks) / 2,
    	}
    
    	// Enable healing in XL mode.
    	if globalIsErasure && !cache.Info.SkipHealing {
    		// Do a heal check on an object once every n cycles. Must divide into healFolderInclude
    		s.healObjectSelect = healObjectSelectProb
    	}
    
    	done := ctx.Done()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    // holding a running P, but then some updates to a particular memory
    // word went through write barriers and some did not. This breaks the
    // write barrier shadow checking mode, and it is also scary: better to have
    // a word that is completely ignored by the GC than to have one for which
    // only a few updates are ignored.
    //
    // Gs and Ps are always reachable via true pointers in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. cmd/bucket-object-lock.go

    	}
    
    	ret := objectlock.GetObjectRetentionMeta(oi.UserDefined)
    	if ret.Mode.Valid() {
    		switch ret.Mode {
    		case objectlock.RetCompliance:
    			// In compliance mode, a protected object version can't be overwritten
    			// or deleted by any user, including the root user in your AWS account.
    			// When an object is locked in compliance mode, its retention mode can't
    			// be changed, and its retention period can't be shortened. Compliance mode
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. pkg/volume/util/atomic_writer_test.go

    					"bar": {Mode: 0644, Data: []byte("bar")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo2")},
    					"bar": {Mode: 0644, Data: []byte("bar2")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo3")},
    					"bar": {Mode: 0644, Data: []byte("bar3")},
    				},
    				{
    					"foo": {Mode: 0644, Data: []byte("foo4")},
    					"bar": {Mode: 0644, Data: []byte("bar4")},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. src/go/types/builtins.go

    					return
    				}
    
    				if x.mode == constant_ && a.mode == constant_ {
    					if constant.Compare(a.val, op, x.val) {
    						*x = *a
    					}
    				} else {
    					x.mode = value
    				}
    			}
    		}
    
    		// If nargs == 1, make sure x.mode is either a value or a constant.
    		if x.mode != constant_ {
    			x.mode = value
    			// A value must not be untyped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/node/minio-node.json

                "stacking": {
                  "group": "A",
                  "mode": "none"
                },
                "thresholdsStyle": {
                  "mode": "off"
                }
              },
              "links": [],
              "mappings": [],
              "min": 0,
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. src/go/types/operand.go

    // constant   <expr> (               <mode> <val> of type <typ>)
    //
    // variable   <expr> (<untyped kind> <mode>                    )
    // variable   <expr> (               <mode>       of type <typ>)
    //
    // mapindex   <expr> (<untyped kind> <mode>                    )
    // mapindex   <expr> (               <mode>       of type <typ>)
    //
    // value      <expr> (<untyped kind> <mode>                    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/operand.go

    // constant   <expr> (               <mode> <val> of type <typ>)
    //
    // variable   <expr> (<untyped kind> <mode>                    )
    // variable   <expr> (               <mode>       of type <typ>)
    //
    // mapindex   <expr> (<untyped kind> <mode>                    )
    // mapindex   <expr> (               <mode>       of type <typ>)
    //
    // value      <expr> (<untyped kind> <mode>                    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top