Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 706 for light (0.99 sec)

  1. src/cmd/internal/test2json/test2json.go

    	}
    	// === update.
    	// Finish any pending PASS/FAIL reports.
    	c.needMarker = sawMarker
    	c.flushReport(0)
    	c.testName = name
    
    	if action == "name" {
    		// This line is only generated to get c.testName right.
    		// Don't emit an event.
    		return
    	}
    
    	if action == "pause" {
    		// For a pause, we want to write the pause notification before
    		// delivering the pause event, just so it doesn't look like the test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    	// are valid underlying types and may appear as core types of type constraints.
    	// If we exclude them, inferred defined types for type parameters may not
    	// match against the core types of their constraints (even though they might
    	// correctly match against some of the types in the constraint's type set).
    	// Finally, if unification (incorrectly) succeeds by matching the underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. 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)
  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/compile/internal/types2/signature.go

    	rparams  *TypeParamList // receiver type parameters from left to right, or nil
    	tparams  *TypeParamList // type parameters from left to right, or nil
    	scope    *Scope         // function scope for package-local and non-instantiated signatures; nil otherwise
    	recv     *Var           // nil if not a method
    	params   *Tuple         // (incoming) parameters from left to right; or nil
    	results  *Tuple         // (outgoing) results from left to right; or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticdata/data.go

    	return lsym
    }
    
    func dstringdata(s *obj.LSym, off int, t string, pos src.XPos, what string) int {
    	// Objects that are too large will cause the data section to overflow right away,
    	// causing a cryptic error message by the linker. Check for oversize objects here
    	// and provide a useful error message instead.
    	if int64(len(t)) > 2e9 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  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