Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for exit1 (0.06 sec)

  1. src/runtime/pprof/pprof_test.go

    		t.Errorf("expected count profile to contain goroutines with counts and labels %v, got %v",
    			expectedLabels, p)
    	}
    
    	close(c)
    
    	time.Sleep(10 * time.Millisecond) // let goroutines exit
    }
    
    func containsInOrder(s string, all ...string) bool {
    	for _, t := range all {
    		var ok bool
    		if _, s, ok = strings.Cut(s, t); !ok {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    		return true
    	}
    	if typ.IsInteger() {
    		return typ.Size() <= b.Func.Config.RegSize
    	}
    	return false
    }
    
    // needRaceCleanup reports whether this call to racefuncenter/exit isn't needed.
    func needRaceCleanup(sym *AuxCall, v *Value) bool {
    	f := v.Block.Func
    	if !f.Config.Race {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    }
    
    func error_Eventfd(initval uint, flags int) (fd int, err error) {
    	fd = -1
    	err = ENOSYS
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Exit(code int) {
    	runtime.EnterSyscall()
    	CallLeFuncWithErr(GetZosLibVec()+SYS_EXIT<<4, uintptr(code))
    	runtime.ExitSyscall()
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// Acquire a lock to ensure we don't concurrently initialize the same PushContext.
    	// If this does happen, one thread will block then exit early from InitDone=true
    	ps.initializeMutex.Lock()
    	defer ps.initializeMutex.Unlock()
    	if ps.InitDone.Load() {
    		return nil
    	}
    
    	ps.Mesh = env.Mesh()
    	ps.Networks = env.MeshNetworks()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top