Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,181 for Avery (0.04 sec)

  1. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

        )
    
        @BeforeEach
        fun setUp() {
            val stepsCapturer = slot<BuildSteps.() -> Unit>()
            every { buildType.steps } returns steps
            every {
                buildType.steps(capture(stepsCapturer))
            } answers {
                stepsCapturer.captured(steps)
                mockk()
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/UnionVersionSelectorTest.groovy

            and:
            union.requiresMetadata() == members.any { it.requiresMetadata() }
    
            and:
            union.matchesUniqueVersion() == members.every { it.matchesUniqueVersion() }
    
            and:
            union.canShortCircuitWhenVersionAlreadyPreselected() == members.every { it.canShortCircuitWhenVersionAlreadyPreselected() }
    
            where:
            selectors << [
                ['1.0'],
                ['1.0', '1.1'],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p>The returned set isn't threadsafe or serializable, even if {@code unfiltered} is.
       *
       * <p>Many of the filtered set's methods, such as {@code size()}, iterate across every element in
       * the underlying set and determine which elements satisfy the filter. When a live view is
       * <i>not</i> needed, it may be faster to copy {@code Iterables.filter(unfiltered, predicate)} and
       * use the copy.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.h

      // clusters.  Useful for debugging.
      bool tf_xla_print_cluster_outputs;
    
      // If true, insert CheckNumerics nodes for every floating point typed input to
      // an XLA cluster.
      bool tf_xla_check_cluster_input_numerics;
    
      // If true, insert CheckNumerics nodes for every floating point typed output
      // from an XLA cluster.
      bool tf_xla_check_cluster_output_numerics;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManagerPrivate.java

     * It provides API: <ol>
     * <li>to retrieve every toolchains available in user settings,</li>
     * <li>to store chosen toolchain into build context for later use by toolchain-aware plugins.</li>
     * </ol>
     *
     * @since 2.0.9
     * @see ToolchainManager#getToolchainFromBuildContext(String, MavenSession)
     */
    public interface ToolchainManagerPrivate {
    
        /**
         * Retrieves every toolchains of given type available in user settings.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. hack/verify-prerelease-lifecycle-tags.sh

    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Tags must be put on all non-alpha API types
    # prerelease-lifecycle-gen itself makes sure every type with TypeMeta in the 
    # package contains atleast an introduced tag
    
    DIRGLOBS=(
      "staging/src/k8s.io/api/**/*/doc.go"
      "staging/src/k8s.io/kube-aggregator/pkg/apis/**/*/doc.go"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 20:27:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cunit/CUnitTest.groovy

            def sources = testSuite.sources.values()
            def binaries = testSuite.binaries.values()
    
            then:
            sources.size() == 2
            sources.every { it instanceof CSourceSet }
    
            and:
            binaries.size() == 1
            binaries.every { it instanceof CUnitTestSuiteBinarySpec }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_schema_extra_example/test_tutorial004_an_py310.py

    @needs_py310
    def test_post_body_example(client: TestClient):
        response = client.put(
            "/items/5",
            json={
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
            },
        )
        assert response.status_code == 200
    
    
    @needs_py310
    def test_openapi_schema(client: TestClient):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         *
         * <p>Not every problem has a useful exception associated with it.</p>
         */
        @Nullable
        Throwable getException();
    
        /**
         * Returns the stack trace that can be reported to the user about where the problem occurred.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r82/CompositeBuildCrossVersionSpec.groovy

            when:
            def tasks = withConnection {
                it.action(new FetchBuildInvocationsTasks()).run()
            }
    
            then:
            tasks.size() > 0
    
            tasks.buildTreePath.every { it != null }
            tasks.buildTreePath.containsAll([":b1:buildEnvironment", ":b2:buildEnvironment"])
        }
    
        def "buildTreePath is available for tasks"() {
            given:
            includedBuild("b1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 08:21:57 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top