Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for skewY (0.05 sec)

  1. src/go/internal/gcimporter/iimport.go

    			if version > currentVersion {
    				err = fmt.Errorf("cannot import %q (%v), export data is newer version - update tool", path, e)
    			} else {
    				err = fmt.Errorf("cannot import %q (%v), possibly version skew - reinstall package", path, e)
    			}
    		}
    	}()
    
    	r := &intReader{dataReader, path}
    
    	version = int64(r.uint64())
    	switch version {
    	case iexportVersionGo1_18, iexportVersionPosCol, iexportVersionGo1_11:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/gcimporter_test.go

    		_, err = Import(fset, make(map[string]*types.Package), pkgpath, corruptdir, nil)
    		if err == nil {
    			t.Errorf("import corrupted %q succeeded", pkgpath)
    		} else if msg := err.Error(); !strings.Contains(msg, "version skew") {
    			t.Errorf("import %q error incorrect (%s)", pkgpath, msg)
    		}
    	}
    }
    
    func TestImportStdLib(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/batch/v1/generated.proto

      //
      // More completion modes can be added in the future.
      // If the Job controller observes a mode that it doesn't recognize, which
      // is possible during upgrades due to version skew, the controller
      // skips updates for the Job.
      // +optional
      optional string completionMode = 9;
    
      // suspend specifies whether the Job controller should create Pods or not. If
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/testing/benchmark.go

    				results += "\t" + r.MemString()
    			}
    			fmt.Fprintln(b.w, results)
    			// Unlike with tests, we ignore the -chatty flag and always print output for
    			// benchmarks since the output generation time will skew the results.
    			if len(b.output) > 0 {
    				b.trimOutput()
    				fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
    			}
    			if p := runtime.GOMAXPROCS(-1); p != procs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/encoding/gob/encoder_test.go

    // the encoder/decoder pair to send a value afterwards. If an interface
    // is sent, its type in the test is always NewType0, so this checks that the
    // encoder and decoder don't skew with respect to type definitions.
    
    type Struct0 struct {
    	I any
    }
    
    type NewType0 struct {
    	S string
    }
    
    type ignoreTest struct {
    	in, out any
    }
    
    var ignoreTests = []ignoreTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/generated.proto

      //
      // More completion modes can be added in the future.
      // If the Job controller observes a mode that it doesn't recognize, which
      // is possible during upgrades due to version skew, the controller
      // skips updates for the Job.
      // +optional
      optional string completionMode = 9;
    
      // suspend specifies whether the Job controller should create Pods or not. If
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"suspend":                 "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. pkg/controller/resourceclaim/controller.go

    		//
    		// These can happen when:
    		// - a user created a pod with spec.nodeName set, perhaps for testing
    		// - some scheduler was used which is unaware of DRA
    		// - DRA was not enabled in kube-scheduler (version skew, configuration)
    		if claim.Spec.AllocationMode == resourcev1alpha2.AllocationModeWaitForFirstConsumer &&
    			claim.Status.Allocation == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks.go

    		}
    		if kubeletVersion.Major() > k8sVersion.Major() || kubeletVersion.Minor() > k8sVersion.Minor() {
    			return nil, []error{errors.Errorf("the kubelet version is higher than the control plane version. This is not a supported version skew and may lead to a malfunctional cluster. Kubelet version: %q Control plane version: %q", kubeletVersion, k8sVersion)}
    		}
    	}
    	return nil, nil
    }
    
    // SwapCheck warns if swap is enabled
    type SwapCheck struct{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types.go

    	//
    	// More completion modes can be added in the future.
    	// If the Job controller observes a mode that it doesn't recognize, which
    	// is possible during upgrades due to version skew, the controller
    	// skips updates for the Job.
    	// +optional
    	CompletionMode *CompletionMode `json:"completionMode,omitempty" protobuf:"bytes,9,opt,name=completionMode,casttype=CompletionMode"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top