Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for sizeclass (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractAutoTestedSamplesTest.groovy

            // default is no-op
        }
    
        /**
         * Useful for quick dev cycles when you need to run test against a single file.
         *
         * @param includes ant-like includes, e.g. '**\SomeClass.java'
         */
        void includeOnly(String includes) {
            util.includes = includes
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/ClassLoaderUtilTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.lang;
    
    import static org.codelibs.core.TestUtil.sameClass;
    import static org.hamcrest.CoreMatchers.is;
    import static org.hamcrest.CoreMatchers.not;
    import static org.hamcrest.CoreMatchers.notNullValue;
    import static org.hamcrest.CoreMatchers.sameInstance;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTest.groovy

            where:
            contents                             | expectedPluginImpl | expectedEmpty
            'implementation-class=xxx.SomeClass' | 'xxx.SomeClass'    | false
            'implementation-class='              | ''                 | false
            ''                                   | null               | true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                dependencies {
                    testFixturesApi('org.foo:stuff:1.0')
                }
            """
            file("fixtures/src/testFixtures/java/SomeClass.java") << "class SomeClass {}"
            file("src/test/java/SomeTest.java") <<
                """
                public class SomeTest {
                    @org.junit.Test
                    public void test() { }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandlerTest.groovy

            "/*\n\n*/"                    | _
            "import org.gradle.ignored.*" | _
        }
    
        def testCompileScriptToDirWithClassDefinitionOnlyScript() {
            def scriptText = "class SomeClass {}"
            final ScriptSource scriptSource = scriptSource(scriptText)
            def sourceHashCode = hashFor(scriptText)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    instead of: * <pre>assertThat(cheese, equalTo(smelly))</pre> */ public static <T> org.hamcrest.Matcher<T> is(org.hamcrest.Matcher<T> matcher) { return org.hamcrest.core.Is.<T>is(matcher); } /** * A shortcut to the frequently used <code>is(instanceOf(SomeClass.class))</code>. * <p/> * For example: * <pre>assertThat(cheese, is(Cheddar.class))</pre> * instead of: * <pre>assertThat(cheese, is(instanceOf(Cheddar.class)))</pre> * * @deprecated use isA(Class<T> type) instead. */ public static <T> org.hamcrest.Matcher<T>...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    class org.hamcrest.CoreMatchers Deprecated. use isA(Class type) instead. isA(Class<T>) - Static method in class org.hamcrest.core.Is A shortcut to the frequently used is(instanceOf(SomeClass.class)). isA(Class<T>) - Static method in class org.hamcrest.CoreMatchers A shortcut to the frequently used is(instanceOf(SomeClass.class)). IsAnything<T> - Class in org.hamcrest.core A matcher that always returns true. IsAnything() - Constructor for class org.hamcrest.core.IsAnything IsAnything(String) - Constructor...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        int input_last_dim = input_ty.getShape().back();
        if (input_last_dim < 1) return std::nullopt;
        int num_result = result_ty.getNumElements();
        auto size_last = *(--size.value_end<APInt>());
        int32_t k = size_last.getSExtValue();
        if (num_input / input_last_dim * k != num_result) return std::nullopt;
        // We don't match sliceOp with last dim size = 0.
        if (!k) return std::nullopt;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top