Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for skewX (0.2 sec)

  1. src/runtime/mgcpacer.go

    	assistWorkPerByte atomic.Float64
    
    	// assistBytesPerWork is 1/assistWorkPerByte.
    	//
    	// Note that because this is read and written independently
    	// from assistWorkPerByte users may notice a skew between
    	// the two values, and such a state should be safe.
    	assistBytesPerWork atomic.Float64
    
    	// fractionalUtilizationGoal is the fraction of wall clock
    	// time that should be spent in the fractional mark worker on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        public Container(T data) {}
      }
    
      public <T extends Container<String>> void testConstructor_parameterTypes()
          throws NoSuchMethodException {
        @SuppressWarnings("rawtypes") // Reflection API skew
        Constructor<Container> constructor = Container.class.getConstructor(Object.class);
        Invokable<T, ?> invokable = new TypeToken<T>(getClass()) {}.constructor(constructor);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    [1],t[0]):Math.atan2(-e[0],e[1]))*La,this.translate=[n.e,n.f],this.scale=[r,i],this.skew=i?Math.atan2(u,i)*La:0}function Tu(n,t){return n[0]*t[0]+n[1]*t[1]}function qu(n){var t=Math.sqrt(Tu(n,n));return t&&(n[0]/=t,n[1]/=t),t}function zu(n,t,e){return n[0]+=e*t[0],n[1]+=e*t[1],n}function Ru(n,t){var e,r=[],u=[],i=Xo.transform(n),o=Xo.transform(t),a=i.translate,c=o.translate,s=i.rotate,l=o.rotate,f=i.skew,h=o.skew,g=i.scale,p=o.scale;return a[0]!=c[0]||a[1]!=c[1]?(r.push("translate(",null,",",nul...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    const (
    	// NodeInclusionPolicyIgnore means ignore this scheduling directive when calculating pod topology spread skew.
    	NodeInclusionPolicyIgnore NodeInclusionPolicy = "Ignore"
    	// NodeInclusionPolicyHonor means use this scheduling directive when calculating pod topology spread skew.
    	NodeInclusionPolicyHonor NodeInclusionPolicy = "Honor"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                try {
                    VersionRange parentRange = versionParser.parseVersionRange(parent.getVersion());
                    if (!parentRange.contains(versionParser.parseVersion(version))) {
                        // version skew drop back to resolution from the repository
                        return null;
                    }
    
                    // Validate versions aren't inherited when using parent ranges the same way as when read externally.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top