Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,839 for mean_t (0.13 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   not implemented by us, you will get a run-time failure.  In that
    //   case, please try to rewrite your regular expression within the
    //   above syntax.
    //
    //   This implementation is *not* meant to be as highly tuned or robust
    //   as a compiled regex library, but should perform well enough for a
    //   death test, which already incurs significant overhead by launching
    //   a child process.
    //
    // Known caveats:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         * <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the exception
         * is thrown so this information is merely meant to assist the user.
         *
         * @return the identifier of the project or an empty string if not known, never {@code null}
         */
        @Nonnull
        String getProjectId();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/AbstractIntersection.java

            } else {
                return doIntersect(leftType.cast(right), rightType.cast(left), factory);
            }
        }
    
        /**
         * Intersects the given exclude specs.
         *
         * This method is meant to be implemented by subclasses realizing a specific intersection of types.
         *
         * @param left an exclude spec
         * @param right another exclude spec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	NamespaceScoped ResourceScope = "Namespaced"
    )
    
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    // "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
    // can't decide if a resource is in the condition or not. In the future, we could add other
    // intermediate conditions, e.g. ConditionDegraded.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/internal/lambdas/SerializableLambdas.java

    import java.util.function.BiFunction;
    import java.util.function.Supplier;
    
    /**
     * Provides a mechanism for creating Java lambdas that can be stored to the configuration cache.
     *
     * The methods on this class are meant to be statically imported.
     */
    public class SerializableLambdas {
    
        public static <T> Spec<T> spec(SerializableSpec<T> spec) {
            return spec;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 13:52:13 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ComponentIdResolveResult.java

        /**
         * Tags this resolve result, for visiting. This is a performance optimization. It will return
         * true if the last tagged object is different, false otherwise. This is meant to replace the
         * use of a hash set to collect the visited items.
         */
        boolean mark(Object o);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. docs/en/docs/python-types.md

    In all the docs there are examples compatible with each version of Python (when there's a difference).
    
    For example "**Python 3.6+**" means it's compatible with Python 3.6 or above (including 3.7, 3.8, 3.9, 3.10, etc). And "**Python 3.9+**" means it's compatible with Python 3.9 or above (including 3.10, etc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/math/big/float.go

    			z.mant = z.mant.add(x.mant, z.mant)
    		}
    	default:
    		// ex == ey, no shift needed
    		z.mant = z.mant.add(x.mant, y.mant)
    	case ex > ey:
    		if al {
    			t := nat(nil).shl(x.mant, uint(ex-ey))
    			z.mant = z.mant.add(t, y.mant)
    		} else {
    			z.mant = z.mant.shl(x.mant, uint(ex-ey))
    			z.mant = z.mant.add(z.mant, y.mant)
    		}
    		ex = ey
    	}
    	// len(z.mant) > 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

         */
        Configuration detachedConfiguration(Dependency... dependencies);
    
        /**
         * Registers a {@link ResolvableConfiguration} with an immutable role. Resolvable configurations
         * are meant to resolve dependency graphs and their artifacts.
         *
         * @param name The name of the configuration to register.
         *
         * @return A provider which creates a new resolvable configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    type PullPolicy string
    
    const (
    	// PullAlways means that kubelet always attempts to pull the latest image.  Container will fail If the pull fails.
    	PullAlways PullPolicy = "Always"
    	// PullNever means that kubelet never pulls an image, but only uses a local image.  Container will fail if the image isn't present
    	PullNever PullPolicy = "Never"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top