Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,645 for ensure (0.28 sec)

  1. guava-testlib/src/com/google/common/testing/GcFinalization.java

       * reference has been cleared and one {@code finalize} method has been run before this method
       * returns. This method may be useful when testing the garbage collection mechanism itself, or
       * inhibiting a spontaneous GC initiation in subsequent code.
       *
       * <p>In contrast, a plain call to {@link java.lang.System#gc()} does not ensure finalization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Closer.java

       * in a {@code RuntimeException}. <b>Note:</b> Be sure to declare all of the checked exception
       * types your try block can throw when calling an overload of this method so as to avoid losing
       * the original exception type.
       *
       * <p>This method always throws, and as such should be called as {@code throw closer.rethrow(e);}
       * to ensure the compiler knows that it will throw.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. releasenotes/notes/45577.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 29 11:04:03 UTC 2023
    - 245 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/PendingSourceSpec.groovy

            when:
            source.realizePending()
    
            then:
            0 * sideEffect1.execute("v1")
    
            then: // ensure ordering
            0 * sideEffect3.execute("v3")
    
            then: // ensure ordering
            0 * sideEffect5.execute("v5")
    
            // side effects of removed providers do not execute
            0 * sideEffect2.execute(_)
            0 * sideEffect4.execute(_)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 12:24:17 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. releasenotes/notes/51074.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 50958
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 185 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/JavaLibraryResolutionAttributesOrderingIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.resolve.attributes
    
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    /**
     * Tests for ArtifactView that ensure it uses the "live" attributes of the configuration that created it to select files and artifacts.
     *
     * As the necessary attributes are not present on the consumer's compileClasspath configuration until the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. releasenotes/notes/ztunnel-chart-priorityclassname.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 47867
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:33 UTC 2023
    - 219 bytes
    - Viewed (0)
  8. releasenotes/notes/45919.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 18:23:52 UTC 2023
    - 229 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            1 * sideEffect2.execute(46)
    
            then: // ensure invocation order
            1 * sideEffect1.execute(23)
            0 * _
    
            when:
            unpackedValue = provider.get()
    
            then:
            unpackedValue == 48
            1 * sideEffect2.execute(48)
    
            then: // ensure invocation order
            1 * sideEffect1.execute(24)
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/field/fe_alias_test.go

    		v1 = x
    		if out := f(&v1, &v1, &v1); out != &v1 || v1 != v {
    			return false
    		}
    
    		// Ensure the arguments were not modified.
    		return x == x1 && y == y1
    	}
    }
    
    // TestAliasing checks that receivers and arguments can alias each other without
    // leading to incorrect results. That is, it ensures that it's safe to write
    //
    //	v.Invert(v)
    //
    // or
    //
    //	v.Add(v, v)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top