Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 617 for light (0.04 sec)

  1. src/runtime/runtime2.go

    	// Note that this differs from maxStackScan in that this
    	// accumulates the actual stack observed to be used at GC time (hi - sp),
    	// not an instantaneous measure of the total stack size that might need
    	// to be scanned (hi - lo).
    	scannedStackSize uint64 // stack size of goroutines scanned by this P
    	scannedStacks    uint64 // number of goroutines scanned by this P
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. src/internal/testenv/testenv.go

    // Save the original environment during init for use in checks. A test
    // binary may modify its environment before calling HasExec to change its
    // behavior (such as mimicking a command-line tool), and that modified
    // environment might cause environment checks to behave erratically.
    var origEnv = os.Environ()
    
    // Builder reports the name of the builder running this test
    // (for example, "linux-amd64" or "windows-386-gce").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer f.Close()
    	ln2, err := net.FileListener(f)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer ln2.Close()
    
    	// Force TLS root certs to be loaded (which might involve
    	// cgo), to make sure none of that potential C code leaks fds.
    	ts := httptest.NewUnstartedServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    		if path := lockPathRhs(pass, x); path != nil {
    			pass.ReportRangef(x, "call of %s copies lock value: %v", analysisutil.Format(pass.Fset, ce.Fun), path)
    		}
    	}
    }
    
    // checkCopyLocksFunc checks whether a function might
    // inadvertently copy a lock, by checking whether
    // its receiver, parameters, or return values
    // are locks.
    func checkCopyLocksFunc(pass *analysis.Pass, name string, recv *ast.FieldList, typ *ast.FuncType) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1/types.go

    	// but not yet healthy are considered disrupted and can be evicted regardless
    	// of whether the criteria in a PDB is met. This means perspective running
    	// pods of a disrupted application might not get a chance to become healthy.
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// Additional policies may be added in the future.
    	// Clients making eviction decisions should disallow eviction of unhealthy pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/internal/src/pos.go

    // lico
    
    // A lico is a compact encoding of a LIne and COlumn number.
    type lico uint32
    
    // Layout constants: 20 bits for line, 8 bits for column, 2 for isStmt, 2 for pro/epilogue
    // (If this is too tight, we can either make lico 64b wide,
    // or we can introduce a tiered encoding where we remove column
    // information as line numbers grow bigger; similar to what gcc
    // does.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1/types.go

    type LimitResponseType string
    
    // Supported limit responses.
    const (
    	// LimitResponseTypeQueue means that requests that can not be executed right now are queued until they can be executed or a queuing limit is hit
    	LimitResponseTypeQueue LimitResponseType = "Queue"
    
    	// LimitResponseTypeReject means that requests that can not be executed right now are rejected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_block_test.go

    	}
    	t.Log("created attachment ", attachID)
    
    	stagingPath, err := csiMapper.SetUpDevice()
    	if err != nil {
    		t.Fatalf("mapper failed to SetupDevice: %v", err)
    	}
    
    	// Check if NodeStageVolume staged to the right path
    	svols := csiMapper.csiClient.(*fakeCsiDriverClient).nodeClient.GetNodeStagedVolumes()
    	svol, ok := svols[csiMapper.volumeID]
    	if !ok {
    		t.Error("csi server may not have received NodeStageVolume call")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. src/runtime/traceback_test.go

    		},
    		// Make sure spilled slice data pointers are spilled to the right location
    		// to ensure we see it listed without a ?.
    		// See issue 64414.
    		{
    			func() int {
    				poisonStack()
    				return testTracebackArgsSlice(testTracebackArgsSliceBackingStore[:])
    			},
    			// Note: capacity of the slice might be junk, as it is not used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_volumes.go

    		return true
    	}
    	// TODO: This checks pod volume paths and whether they are mounted. If checking returns error, podVolumesExist will return true
    	// which means we consider volumes might exist and requires further checking.
    	// There are some volume plugins such as flexvolume might not have mounts. See issue #61229
    	volumePaths, err := kl.getMountedVolumePathListFromDisk(podUID)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top