Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for onLast (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    	loop:
    		for {
    			forEachLastStmt(s.Body.List, onLast)
    			switch e := s.Else.(type) {
    			case *ast.BlockStmt:
    				forEachLastStmt(e.List, onLast)
    				break loop
    			case *ast.IfStmt:
    				s = e
    			case nil:
    				break loop
    			}
    		}
    	case *ast.ForStmt:
    		forEachLastStmt(s.Body.List, onLast)
    	case *ast.RangeStmt:
    		forEachLastStmt(s.Body.List, onLast)
    	case *ast.SwitchStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                    boolean o1Last = comparator.compare(o1, lastValue) == 0;
                    boolean o2Last = comparator.compare(o2, lastValue) == 0;
                    if (o1Last && o2Last) {
                        return 0;
                    }
                    if (o1Last && !o2Last) {
                        return 1;
                    }
                    if (!o1Last && o2Last) {
                        return -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                    boolean o1Last = comparator.compare(o1, lastValue) == 0;
                    boolean o2Last = comparator.compare(o2, lastValue) == 0;
                    if (o1Last && o2Last) {
                        return 0;
                    }
                    if (o1Last && !o2Last) {
                        return 1;
                    }
                    if (!o1Last && o2Last) {
                        return -1;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_finished_subtest_goroutines.txt

    	"runtime/debug"
    	"sync"
    	"testing"
    )
    
    func TestTestingGoroutineLeak(t *testing.T) {
    	debug.SetTraceback("all")
    
    	var wg sync.WaitGroup
    	const nFast = 10
    
    	t.Run("slow", func(t *testing.T) {
    		t.Parallel()
    		wg.Wait()
    		for i := 0; i < nFast; i++ {
    			// If the subtest goroutines are going to park on the channel
    			// send, allow them to park now. If they're not going to park,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 17:34:25 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue33555.go

    	"path/filepath"
    	"strconv"
    )
    
    const start = `
    package main
    
    func main() {
    	println(f0() + 1)
    }
    `
    
    const fn = `
    //go:noinline
    func f%d() int {
    	return f%d() + 1
    }`
    
    const fnlast = `
    //go:noinline
    func f%d() int {
    	return 0
    }
    `
    
    const count = 400
    
    func main() {
    	if err := test(); err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/lang/sv.js

    lösenord som inte är nog säkert",badNumberOfSelectedOptionsStart:"Du måste åtminstone välja ",badNumberOfSelectedOptionsEnd:" svarsalternativ",badAlphaNumeric:"Du kan endast svara med alfanumersika tecken (a-z och siffror)",badAlphaNumericExtra:" och ",wrongFileSize:"Filen du försöker ladda upp är för stor (max %s)",wrongFileType:"Endast filer av typen %s är tillåtna",groupCheckedRangeStart:"Välj mellan ",groupCheckedTooFewStart:"Då måste göra minst ",groupCheckedTooManyStart:"Du får inte göra fler...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  7. test/fixedbugs/issue4909b.go

    		fmt.Printf("const _ = unsafe.Offsetof(%s", root)
    		for _, n := range ns {
    			fmt.Printf(".T%d", n)
    		}
    		// Does it involve an indirection?
    		nlast := ns[len(ns)-1]
    		nprev := 1
    		if len(ns) > 1 {
    			nprev = ns[len(ns)-2]
    		}
    		isIndirect := false
    		for n := nlast / 2; n > nprev; n /= 2 {
    			if n%2 == 1 {
    				isIndirect = true
    				break
    			}
    		}
    		fmt.Print(")")
    		if isIndirect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/plist.go

    				// frames have two argument bitmaps, one without results and one with results.
    				// Write []uint32{2, 0}.
    				b := make([]byte, 8)
    				ctxt.Arch.ByteOrder.PutUint32(b, 2)
    				s := ctxt.GCLocalsSym(b)
    				if !s.OnList() {
    					ctxt.Globl(s, int64(len(s.P)), int(RODATA|DUPOK))
    				}
    				p.To.Sym = s
    			}
    
    		}
    
    		if curtext == nil {
    			etext = nil
    			continue
    		}
    		etext.Link = p
    		etext = p
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    				//      case.
    				//
    				// UnstructuredJSONScheme's behavior is replicated here.
    				var items []interface{}
    				if uncast, present := content["items"]; present {
    					var cast bool
    					items, cast = uncast.([]interface{})
    					if !cast {
    						strict, lax = nil, fmt.Errorf("items field of UnstructuredList must be encoded as an array or null if present")
    						return
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/staticdata/data.go

    	} else {
    		// Small strings get named directly by their contents.
    		symname = strconv.Quote(s)
    	}
    
    	symdata := base.Ctxt.Lookup(stringSymPrefix + symname)
    	if !symdata.OnList() {
    		off := dstringdata(symdata, 0, s, pos, "string")
    		objw.Global(symdata, int32(off), obj.DUPOK|obj.RODATA|obj.LOCAL)
    		symdata.Set(obj.AttrContentAddressable, true)
    	}
    
    	return symdata
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top