Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DefaultContext (0.29 sec)

  1. cmd/kubeadm/app/util/runtime/runtime.go

    			klog.V(5).Infof("Attempting to remove container %v", container)
    
    			ctx, cancel := defaultContext()
    			if err := runtime.impl.StopPodSandbox(ctx, runtime.runtimeService, container); err != nil {
    				lastErr = errors.Wrapf(err, "failed to stop running pod %s", container)
    				cancel()
    				continue
    			}
    			cancel()
    
    			ctx, cancel = defaultContext()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

            final NodeExecutionContext defaultContext;
            boolean done;
    
            public CalculationState(DisplayName displayName, S supplier, ProjectLeaseRegistry projectLeaseRegistry, NodeExecutionContext defaultContext) {
                this.displayName = displayName;
                this.supplier = supplier;
                this.projectLeaseRegistry = projectLeaseRegistry;
                this.defaultContext = defaultContext;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    var (
    	BuildA             bool     // -a flag
    	BuildBuildmode     string   // -buildmode flag
    	BuildBuildvcs      = "auto" // -buildvcs flag: "true", "false", or "auto"
    	BuildContext       = defaultContext()
    	BuildMod           string                  // -mod flag
    	BuildModExplicit   bool                    // whether -mod was set explicitly
    	BuildModReason     string                  // reason -mod was set, if set by default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	kmsv2FirstTransformer := kmsv2FirstEncryptionConfiguration.Transformers[schema.ParseGroupResource("secrets")]
    
    	dataCtx := value.DefaultContext(sampleContextText)
    	originalText := []byte(sampleText)
    
    	transformers := []struct {
    		Transformer value.Transformer
    		Name        string
    	}{
    		{aesGcmFirstTransformer, "aesGcmFirst"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. src/go/build/build.go

    }
    
    // Default is the default Context for builds.
    // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
    // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
    var Default Context = defaultContext()
    
    // Keep consistent with cmd/go/internal/cfg.defaultGOPATH.
    func defaultGOPATH() string {
    	env := "HOME"
    	if runtime.GOOS == "windows" {
    		env = "USERPROFILE"
    	} else if runtime.GOOS == "plan9" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top