Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 804 for mean_t (0.11 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationInternal.java

         * Update a configuration's allowed and disallowed usage to match the given role
         *
         * This method does <strong>NOT</strong> warn.  This method does <strong>NOT</strong> modify deprecation status.  It
         * is only meant to be called by the container.
         *
         * @param role the role specifying the usage the conf should possess
         */
         void setAllowedUsageFromRole(ConfigurationRole role);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/math/rand/v2/rand_test.go

    // checkSimilarDistribution returns success if the mean and stddev of the
    // two statsResults are similar.
    func (sr *statsResults) checkSimilarDistribution(expected *statsResults) error {
    	if !nearEqual(sr.mean, expected.mean, expected.closeEnough, expected.maxError) {
    		s := fmt.Sprintf("mean %v != %v (allowed error %v, %v)", sr.mean, expected.mean, expected.closeEnough, expected.maxError)
    		fmt.Println(s)
    		return errors.New(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/sysnum_linux_generic.go

    //go:build linux && (arm64 || loong64 || riscv64)
    
    package unix
    
    // This file is named "generic" because at a certain point Linux started
    // standardizing on system call numbers across architectures. So far this
    // means only arm64 loong64 and riscv64 use the standard numbers.
    
    const (
    	getrandomTrap       uintptr = 278
    	copyFileRangeTrap   uintptr = 285
    	pidfdSendSignalTrap uintptr = 424
    	pidfdOpenTrap       uintptr = 434
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 589 bytes
    - Viewed (0)
  4. tests/integration/base.yaml

        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      values:
        pilot:
          # Lower the reconnect time so we test reconnects. The default of 30min means we almost never trigger in tests.
          keepaliveMaxServerConnectionAge: 120s
          autoscaleEnabled: false
          env:
            ENABLE_EXTERNAL_NAME_ALIAS: true
            UNSAFE_ENABLE_ADMIN_ENDPOINTS: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    					"type": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/apis/batch/types.go

    // These are valid conditions of a job.
    const (
    	// JobSuspended means the job has been suspended.
    	JobSuspended JobConditionType = "Suspended"
    	// JobComplete means the job has completed its execution.
    	JobComplete JobConditionType = "Complete"
    	// JobFailed means the job has failed its execution.
    	JobFailed JobConditionType = "Failed"
    	// FailureTarget means the job is about to fail its execution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/internal/trace/reader_test.go

    			testReader(t, tr, exp)
    		})
    	}
    }
    
    func FuzzReader(f *testing.F) {
    	// Currently disabled because the parser doesn't do much validation and most
    	// getters can be made to panic. Turn this on once the parser is meant to
    	// reject invalid traces.
    	const testGetters = false
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		r, err := trace.NewReader(bytes.NewReader(b))
    		if err != nil {
    			return
    		}
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Resources is a list of resources this rule applies to.
    	//
    	// For example:
    	// 'pods' means pods.
    	// 'pods/log' means the log subresource of pods.
    	// '*' means all resources, but not subresources.
    	// 'pods/*' means all subresources of pods.
    	// '*/scale' means all scale subresources.
    	// '*/*' means all resources and their subresources.
    	//
    	// If wildcard is present, the validation rule will ensure resources do not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. src/internal/abi/iface.go

    //
    // allocated in non-garbage-collected memory
    type ITab struct {
    	Inter *InterfaceType
    	Type  *Type
    	Hash  uint32     // copy of Type.Hash. Used for type switches.
    	Fun   [1]uintptr // variable sized. fun[0]==0 means Type does not implement Inter.
    }
    
    // EmptyInterface describes the layout of a "interface{}" or a "any."
    // These are represented differently than non-empty interface, as the first
    // word always points to an abi.Type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 895 bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/Incubating.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Indicates that a feature is incubating. This means that the feature is currently a work-in-progress and may
     * change at any time.
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({
        ElementType.PACKAGE,
        ElementType.TYPE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top