Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,268 for guarantee (0.18 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/processors/RunPreviousFailedFirstTestClassProcessor.java

    import org.gradle.api.internal.tasks.testing.TestResultProcessor;
    
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * In order to speed up the development feedback cycle, this class guarantee previous failed test classes
     * to be passed to its delegate first.
     */
    public class RunPreviousFailedFirstTestClassProcessor implements TestClassProcessor {
        private final Set<String> previousFailedTestClasses;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/math/cmplx/pow.go

    // International, 1989) or from the Cephes Mathematical Library, a
    // commercial product. In either event, it is copyrighted by the author.
    // What you see here may be used freely but it comes with no support or
    // guarantee.
    //
    //   The two known misprints in the book are repaired here in the
    // source listings for the gamma function and the incomplete beta
    // integral.
    //
    //   Stephen L. Moshier
    //   ******@****.***
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/ApplicationServiceRegistration.kt

            operator fun getValue(thisRef: R, desc: KProperty<*>): T =
                thisRef.getUserData(key) ?: error("A user data key with a default value should guarantee a non-null value.")
    
            operator fun setValue(thisRef: R, desc: KProperty<*>, value: T) {
                thisRef.putUserData(key, value)
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/signature_def_function.h

    // https://github.com/tensorflow/tensorflow/blob/26c4ee0c833e74f94d0102d8b005c41a28b44445/tensorflow/python/saved_model/signature_serialization.py#L153-L161
    // Since SignatureDefFunctions do not have FunctionSpecs, but guarantee the
    // dictionary of inputs/outputs, we can parse these dictionaries' keys to obtain
    // the input/output names of the SignatureDef:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/component/local/model/TransformedComponentFileArtifactIdentifier.java

    import org.gradle.internal.DisplayName;
    
    import java.util.Objects;
    
    /**
     * Identifies the transformed artifact of a component. The original file name is tracked in order to guarantee uniqueness,
     * as artifact transformations may result in multiple artifacts with the same file name.
     *
     * <p>The original file name should refer to the name of the artifact at the beginning of the transform chain.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 18:43:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/ServiceTest.java

    import java.util.Locale;
    import junit.framework.TestCase;
    
    /** Unit tests for {@link Service} */
    public class ServiceTest extends TestCase {
    
      /** Assert on the comparison ordering of the State enum since we guarantee it. */
      public void testStateOrdering() {
        // List every valid (direct) state transition.
        assertLessThan(NEW, STARTING);
        assertLessThan(NEW, TERMINATED);
    
        assertLessThan(STARTING, RUNNING);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource2.java

     * repositories.
     * <p>
     * ModelSource2 instances are cached in {@link ModelBuildingRequest#getModelCache()}. Implementations must guarantee
     * that the connection to the backing store remains active until request's {@link ModelCache} is discarded or flushed.
     */
    public interface ModelSource2 extends ModelSource {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationIndex.kt

         * classes inheriting from `N` by referring to `A`. Does not support function types (e.g. `Function1`).
         *
         * There is no guarantee that the type alias can be inherited from. For example, if its expanded type is final, the type alias is not
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RegularImmutableList.java

      @Override
      @SuppressWarnings("unchecked")
      public E get(int index) {
        checkElementIndex(index, size);
        // requireNonNull is safe because we guarantee that the first `size` elements are non-null.
        return (E) requireNonNull(array[index]);
      }
    
      // TODO(lowasser): benchmark optimizations for equals() and see if they're worthwhile
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/runtime/tracetype.go

    	return id
    }
    
    // dump writes all previously cached types to trace buffers and
    // releases all memory and resets state. It must only be called once the caller
    // can guarantee that there are no more writers to the table.
    func (t *traceTypeTable) dump(gen uintptr) {
    	w := unsafeTraceExpWriter(gen, nil, traceExperimentAllocFree)
    	if root := (*traceMapNode)(t.tab.root.Load()); root != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top