Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 706 for light (0.05 sec)

  1. src/cmd/compile/internal/walk/compare.go

    		// memequal then tests equality up to length len.
    		if n.Op() == ir.OEQ {
    			// len(left) == len(right) && memequal(left, right, len)
    			r = ir.NewLogicalExpr(base.Pos, ir.OANDAND, eqlen, eqmem)
    		} else {
    			// len(left) != len(right) || !memequal(left, right, len)
    			eqlen.SetOp(ir.ONE)
    			r = ir.NewLogicalExpr(base.Pos, ir.OOROR, eqlen, ir.NewUnaryExpr(base.Pos, ir.ONOT, eqmem))
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. src/slices/slices.go

    	}
    	if n+m > cap(s) {
    		// Use append rather than make so that we bump the size of
    		// the slice up to the next storage class.
    		// This is what Grow does but we don't call Grow because
    		// that might copy the values twice.
    		s2 := append(s[:i], make(S, n+m-i)...)
    		copy(s2[i:], v)
    		copy(s2[i+m:], s[i:])
    		return s2
    	}
    	s = s[:n+m]
    
    	// before:
    	// s: aaaaaaaabbbbccccccccdddd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/runtime/mgclimit.go

    		return false
    	}
    	e.stamp.Store(uint64(makeLimiterEventStamp(typ, now)))
    	return true
    }
    
    // consume acquires the partial event CPU time from any in-flight event.
    // It achieves this by storing the current time as the new event time.
    //
    // Returns the type of the in-flight event, as well as how long it's currently been
    // executing for. Returns limiterEventNone if no event is active.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/order.go

    // as2func orders OAS2FUNC nodes. It creates temporaries to ensure left-to-right assignment.
    // The caller should order the right-hand side of the assignment before calling order.as2func.
    // It rewrites,
    //
    //	a, b, a = ...
    //
    // as
    //
    //	tmp1, tmp2, tmp3 = ...
    //	a, b, a = tmp1, tmp2, tmp3
    //
    // This is necessary to ensure left to right assignment order.
    func (o *orderState) as2func(n *ir.AssignListStmt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "SRAIW", argLength: 1, reg: gp11, asm: "SRAIW", aux: "Int64"}, // arg0 >> auxint, shift amount 0-31, arithmetic right shift of 32 bit value, sign extended to 64 bits
    		{name: "SRLI", argLength: 1, reg: gp11, asm: "SRLI", aux: "Int64"},   // arg0 >> auxint, shift amount 0-63, logical right shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. cmd/object_api_suite_test.go

    		t.Errorf("%s: Expected IsTruncated to be `false`, but instead found it to be `%v`", instanceType, result.IsTruncated)
    	}
    
    	uploadContent := "The specified multipart upload does not exist. The upload ID might be invalid, or the multipart upload might have been aborted or completed."
    	var opts ObjectOptions
    	// check before paging occurs.
    	for i := 0; i < 5; i++ {
    		key := "obj" + strconv.Itoa(i)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/inline.go

    		// it is part of a right-flanking delimiter run.”
    
    		// “A double ** can close strong emphasis iff
    		// it is part of a right-flanking delimiter run.”
    		canClose = rightFlank
    	case '_':
    		// “A single _ character can open emphasis iff
    		// it is part of a left-flanking delimiter run and either
    		// (a) not part of a right-flanking delimiter run or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/qos_container_manager_linux.go

    			if err := cm.Create(containerConfig); err != nil {
    				return fmt.Errorf("failed to create top level %v QOS cgroup : %v", qosClass, err)
    			}
    		} else {
    			// to ensure we actually have the right state, we update the config on startup
    			if err := cm.Update(containerConfig); err != nil {
    				return fmt.Errorf("failed to update top level %v QOS cgroup : %v", qosClass, err)
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/deadstore.go

    		// Since we're walking backwards, writes to a shadowed region are useless,
    		// as they will be immediately overwritten.
    		shadowed.clear()
    		v := last
    
    	walkloop:
    		if loadUse.contains(v.ID) {
    			// Someone might be reading this memory state.
    			// Clear all shadowed addresses.
    			shadowed.clear()
    		}
    		if v.Op == OpStore || v.Op == OpZero {
    			ptr := v.Args[0]
    			var off int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. cmd/erasure-healing-common.go

    			if !meta.Deleted {
    				if len(meta.Erasure.Distribution) != len(onlineDisks) {
    					// Erasure distribution is not the same as onlineDisks
    					// attempt a fix if possible, assuming other entries
    					// might have the right erasure distribution.
    					partsMetadata[i] = FileInfo{}
    					metaErrs[i] = errFileCorrupt
    					continue
    				}
    			}
    		}
    	}
    
    	// Copy meta errors to part errors
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top