Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,508 for makeID (0.23 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

         * to make sure the moduleName is unique in the scope of a multi-module build.
         * The 'uniqueness' of a module name is required for correct import
         * into Eclipse and the task will make sure the name is unique.
         * <p>
         * The logic that makes sure project names are unique is available <b>since</b> 1.0-milestone-2
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. src/runtime/signal_windows.go

    	// system stack limits when we resume from exception.
    	// Store the resume SP and PC in alternate registers
    	// and return to sigresume on the g0 stack.
    	// sigresume makes no use of the stack at all,
    	// loading SP from RX and jumping to RY, being RX and RY two scratch registers.
    	// Note that blindly smashing RX and RY is only safe because we know sigpanic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/certlist.go

    			CheckCertificatePeriodValidity(ca.BaseName, caCert)
    
    			// Cert exists already, make sure it's valid
    			if !caCert.IsCA {
    				return errors.Errorf("certificate %q is not a CA", ca.Name)
    			}
    			// Try and load a CA Key
    			caKey, err = pkiutil.TryLoadKeyFromDisk(ic.CertificatesDir, ca.BaseName)
    			if err != nil {
    				// If there's no CA key, make sure every certificate exists.
    				for _, leaf := range leaves {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. src/runtime/race/testdata/chan_test.go

    	go func() {
    		close(c)
    		compl <- true
    	}()
    	c = make(chan int)
    	<-compl
    }
    
    func TestRaceChanItselfLen(t *testing.T) {
    	compl := make(chan bool, 1)
    	c := make(chan int)
    	go func() {
    		_ = len(c)
    		compl <- true
    	}()
    	c = make(chan int)
    	<-compl
    }
    
    func TestRaceChanItselfCap(t *testing.T) {
    	compl := make(chan bool, 1)
    	c := make(chan int)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. src/runtime/select.go

    	selectDefault           // default
    )
    
    //go:linkname reflect_rselect reflect.rselect
    func reflect_rselect(cases []runtimeSelect) (int, bool) {
    	if len(cases) == 0 {
    		block()
    	}
    	sel := make([]scase, len(cases))
    	orig := make([]int, len(cases))
    	nsends, nrecvs := 0, 0
    	dflt := -1
    	for i, rc := range cases {
    		var j int
    		switch rc.dir {
    		case selectDefault:
    			dflt = i
    			continue
    		case selectSend:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server.go

    		}
    	}
    
    	if s.Broadcaster != nil {
    		stopCh := make(chan struct{})
    		s.Broadcaster.StartRecordingToSink(stopCh)
    	}
    
    	// TODO(thockin): make it possible for healthz and metrics to be on the same port.
    
    	var healthzErrCh, metricsErrCh chan error
    	if s.Config.BindAddressHardFail {
    		healthzErrCh = make(chan error)
    		metricsErrCh = make(chan error)
    	}
    
    	// Start up a healthz server if requested
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. docs/en/docs/async.md

    > Modern versions of Python have support for **"asynchronous code"** using something called **"coroutines"**, with **`async` and `await`** syntax.
    
    That should make more sense now. ✨
    
    All that is what powers FastAPI (through Starlette) and what makes it have such an impressive performance.
    
    ## Very Technical Details
    
    !!! warning
        You can probably skip this.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/concepts.md

    I'll give you more concrete examples in the next chapters.
    
    ## Restarts
    
    Similar to making sure your application is run on startup, you probably also want to make sure it is **restarted** after failures.
    
    ### We Make Mistakes
    
    We, as humans, make **mistakes**, all the time. Software almost *always* has **bugs** hidden in different places. 🐛
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/mop_test.go

    		panic("corrupted data")
    	}
    }
    func TestRaceSliceSlice(t *testing.T) {
    	c := make(chan bool, 1)
    	x := make([]int, 10)
    	go func() {
    		x = make([]int, 20)
    		c <- true
    	}()
    	_ = x[2:3]
    	<-c
    }
    
    func TestRaceSliceSlice2(t *testing.T) {
    	c := make(chan bool, 1)
    	x := make([]int, 10)
    	i := 2
    	go func() {
    		i = 3
    		c <- true
    	}()
    	_ = x[i:4]
    	<-c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    				numLabelUnits[key] = "bytes"
    			default:
    				numLabelUnits[key] = key
    			}
    		}
    	}
    
    	// Copy ignored units into more readable format
    	unitsIgnored := make(map[string][]string, len(ignoredUnits))
    	for key, values := range ignoredUnits {
    		units := make([]string, len(values))
    		i := 0
    		for unit := range values {
    			units[i] = unit
    			i++
    		}
    		sort.Strings(units)
    		unitsIgnored[key] = units
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top