Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 621 for light (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/text/template/parse/parse_test.go

    	{"trim right", "{{3 -}}\n\n\ty", noError, `{{3}}"y"`},
    	{"trim left and right", "x \r\n\t{{- 3 -}}\n\n\ty", noError, `"x"{{3}}"y"`},
    	{"trim with extra spaces", "x\n{{-  3   -}}\ny", noError, `"x"{{3}}"y"`},
    	{"comment trim left", "x \r\n\t{{- /* hi */}}", noError, `"x"`},
    	{"comment trim right", "{{/* hi */ -}}\n\n\ty", noError, `"y"`},
    	{"comment trim left and right", "x \r\n\t{{- /* */ -}}\n\n\ty", noError, `"x""y"`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais.go

    func induceSubS_8_32(text []byte, sa, freq, bucket []int32) {
    	// Initialize positions for right side of character buckets.
    	bucketMax_8_32(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    	// Analogous to induceSubL_8_32 above,
    	// as we scan the array right-to-left, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type S.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. src/runtime/netpoll_solaris.go

    // passing the correct type of event set (POLLIN/POLLOUT). As we made
    // sure to have already associated the file descriptor with the port,
    // when we now call port_associate, we will unblock the main poller
    // loop (in runtime·netpoll) right away if the socket is actually
    // ready for I/O.
    //
    // The main poller loop runs in its own thread waiting for events
    // using port_getn. When an event happens, it will tell the scheduler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top