Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, "-Wl,-bbigtoc")
    	}
    
    	// On PPC64, verify the external toolchain supports Power10. This is needed when
    	// PC relative relocations might be generated by Go. Only targets compiling ELF
    	// binaries might generate these relocations.
    	if ctxt.IsPPC64() && ctxt.IsElf() && buildcfg.GOPPC64 >= 10 {
    		if !linkerFlagSupported(ctxt.Arch, argv[0], "", "-mcpu=power10") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/os/os_test.go

    			path := filepath.Join(sd.name, f)
    			if _, err := Stat(path); err != nil {
    				found = false
    				break
    			}
    		}
    		if found {
    			return sd
    		}
    		// In a self-hosted iOS build the above files might
    		// not exist. Look for system files instead below.
    	case "windows":
    		return &sysDir{
    			Getenv("SystemRoot") + "\\system32\\drivers\\etc",
    			[]string{
    				"networks",
    				"protocol",
    				"services",
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	p.moveRequestCycle = p.schedulingCycle
    
    	if p.isSchedulingQueueHintEnabled && len(p.inFlightPods) != 0 {
    		logger.V(5).Info("Event received while pods are in flight", "event", event.Label, "numPods", len(p.inFlightPods))
    		// AddUnschedulableIfNotPresent might get called for in-flight Pods later, and in
    		// AddUnschedulableIfNotPresent we need to know whether events were
    		// observed while scheduling them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    			// Something else is adding gp1 to the goroutine profile right now.
    			// Give that a moment to finish.
    			yield()
    			continue
    		}
    
    		// While we have gp1.goroutineProfiled set to
    		// goroutineProfileInProgress, gp1 may appear _Grunnable but will not
    		// actually be able to run. Disable preemption for ourselves, to make
    		// sure we finish profiling gp1 right away instead of leaving it stuck
    		// in this limbo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/testing/testing.go

    		// AAABBB or BBBAAA on the pipe, not something like AABBBA.
    		// However, the exception to this is when the pipe fills: in that
    		// case, Go's use of non-blocking I/O means that writing AAA
    		// or BBB might be split across multiple system calls, making it
    		// entirely possible to get output like AABBBA. The same problem
    		// happens inside the operating system kernel if we switch to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    			}
    
    			// Describe based on the Envoy config for this first pod only
    			pod := matchingPods[0]
    
    			// Only consider the service invoked with this command, not other services that might select the pod
    			svcs := []corev1.Service{*svc}
    
    			err = describePodServices(writer, kubeClient, configClient, &pod, svcs, podsLabels)
    			if err != nil {
    				return err
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    //
    // In the function above, the incoming parameter "used" is fully live,
    // "notused" is not live, and "s" is partially live (only the length
    // field of the string is used). At the point where debug value
    // analysis runs, we might expect to see an entry block with:
    //
    //	b1:
    //	  v4 = ArgIntReg <uintptr> {s+8} [0] : BX
    //	  v5 = ArgIntReg <int> {used} [0] : CX
    //
    // While this is an accurate picture of the live incoming params,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers_test.go

    		runtime: runtime,
    	}
    	nested.workerChannelFn = func(uid types.UID, in chan struct{}) <-chan struct{} {
    		ch := make(chan struct{})
    		go func() {
    			defer close(ch)
    			// TODO: this is an eager loop, we might want to lazily read from in only once
    			// ch is empty
    			for range in {
    				w.waitForPod(uid)
    				w.tick()
    				ch <- struct{}{}
    			}
    		}()
    		return ch
    	}
    	return w, processed
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				args:      *tt.args,
    			}
    
    			// Using 4 as a seed source to test getOffsetAndNumCandidates() deterministically.
    			// However, we need to do it after informerFactory.WaitforCacheSync() which might
    			// set a seed.
    			rand.Seed(4)
    			var prevNumFilterCalled int32
    			for cycle, pod := range tt.testPods {
    				state := framework.NewCycleState()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    // and [dst, dst+size) refer to one or more whole values of type src and
    // dst (leaving off the pointerless tail of the space is OK). If this
    // precondition is not followed, this function will fail to scan the
    // right pointers.
    //
    // When in doubt, pass nil for typ. That is safe and will always work.
    //
    // Callers must perform cgo checks if goexperiment.CgoCheck2.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top