Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,957 for impl_4 (0.23 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

            dependencies.assertHasModule('COMPILE', "impl")
    
            dependencies = parseIml("application/application.iml").dependencies
            assert dependencies.modules.size() == 4
    
            dependencies.assertHasModule('COMPILE', "library")
            dependencies.assertHasModule('COMPILE', "api")
            dependencies.assertHasModule('RUNTIME', "impl")
            dependencies.assertHasModule('TEST', "impl")
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/impl/string_test.cc

    #include "tensorflow/cc/experimental/libtf/impl/string.h"
    
    #include "tensorflow/core/platform/test.h"
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    TEST(StringTest, TestBasicInterning) {
      String s1("foo");
      String s2("foo");
      EXPECT_EQ(&s1.str(), &s2.str());
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 30 17:28:28 UTC 2021
    - 1002 bytes
    - Viewed (0)
  3. .idea/dictionaries/yan.xml

    <component name="ProjectDictionaryState">
      <dictionary name="yan">
        <words>
          <w>barebone</w>
          <w>debuggee</w>
          <w>deserializes</w>
          <w>destructured</w>
          <w>hacky</w>
          <w>impls</w>
          <w>inlined</w>
          <w>kapt</w>
          <w>kotlinc</w>
          <w>mutators</w>
          <w>parcelable</w>
          <w>parceler</w>
          <w>parcelers</w>
          <w>parcelize</w>
          <w>repl</w>
          <w>testdata</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 20 16:41:23 UTC 2021
    - 547 bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTest.groovy

            setup:
            Task stubTask = Stub(Task)
            List<PluginDescriptor> descriptors = []
            if (impl != null) {
                descriptors << Stub(PluginDescriptor) {
                    getPropertiesFileUrl() >> { new URL("file:///test-plugin/${impl}.properties") }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue49541.go

    }
    
    // another test case from the issue
    
    func _() {
    	X /* ERROR "cannot infer Q" */ (Interface[*F /* ERROR "not enough type arguments for type F: have 1, want 2" */ [string]](Impl{}))
    }
    
    func X[Q Qer](fs Interface[Q]) {
    }
    
    type Impl struct{}
    
    func (Impl) M() {}
    
    type Interface[Q Qer] interface {
    	M()
    }
    
    type Qer interface {
    	Q()
    }
    
    type F[A, B any] struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 875 bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/impl/scalars_test.cc

    #include "tensorflow/cc/experimental/libtf/impl/scalars.h"
    
    #include "tensorflow/core/platform/test.h"
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    TEST(ScalarsTest, TestHeterogeneousAddition) {
      ASSERT_EQ((Int64(1) + Float32(0.375)).get(), 1.375);
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 22:58:49 UTC 2021
    - 991 bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AbstractPluginSpec.groovy

        }
    
        MavenHttpModule publishPlugin(
            @Language(value = "groovy", prefix = "void apply(org.gradle.api.Project project) {\n", suffix = "\n}") String impl
        ) {
            pluginBuilder.with {
                addPlugin(impl, PLUGIN_ID)
                publishAs(GROUP, ARTIFACT, VERSION, pluginRepo, executer).allowAll().pluginModule as MavenHttpModule
            }
        }
    
        MavenHttpModule publishSettingPlugin(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.processBuilder
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.runtimeExec
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.stringArrayExecute
    
    class ProcessInPluginIntegrationTest extends AbstractProcessIntegrationTest {
        def "using #snippetsFactory.summary in convention plugin #file is a problem"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DefaultInstantiationSchemeTest.groovy

            value.prop == "value"
        }
    
        static class Base {
            String prop
    
            Base() {
                prop = "default"
            }
        }
    
        static abstract class Impl extends Base {
            Impl() {
                throw new RuntimeException("should not be called")
            }
        }
    
        static abstract class WithServices {
            @Inject
            abstract String getProp()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jConfigurationFactory.java

                                properties.load(in);
                            }
                        }
                        String impl = properties.getProperty(slf4jBinding);
                        if (impl != null) {
                            return (Slf4jConfiguration) Class.forName(impl).newInstance();
                        }
                    } catch (IOException | ClassNotFoundException | IllegalAccessException | InstantiationException ex) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top