Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,833 for classy (0.08 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
        }
    
        private static class ClassInspector {
            private final ConcurrentMap<Class<?>, ClassDetails> classes = new ConcurrentHashMap<Class<?>, ClassDetails>();
    
            /**
             * Does the given class have the given annotation somewhere in its hierarchy?
             */
            boolean hasAnnotation(Class<?> type, Class<? extends Annotation> annotationType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/productpage.html

    <div class="container mt-8 mx-auto px-4 sm:px-6 lg:px-8">
      <div class="mt-4 py-10">
          <div class="max-w-2xl">
            <div class="flow-root">
              {% if detailsStatus == 200: %}
              <h4 class="text-3xl font-semibold">Book Details</h4>
              <div class="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
                <div class="inline-block min-w-full py-2 align-middle sm:px-6 lg:px-8">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/MessageTest.groovy

            then:
            transported instanceof RuntimeException
            transported.class == RuntimeException.class
            transported.message == "message"
            transported.stackTrace == outer.stackTrace
    
            and:
            looksLike original, transported.cause
    
            and:
            transported.cause.cause.class == IOException
            transported.cause.cause.message == "nested"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/LanguageTree.kt

            get() = content.filterIsInstance<DataStatement>()
    }
    
    
    data class Import(val name: AccessChain, override val sourceData: SourceData) : LanguageTreeElement
    
    
    data class AccessChain(val nameParts: List<String>)
    
    
    data class PropertyAccess(val receiver: Expr?, val name: String, override val sourceData: SourceData) : Expr
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

            }
        }
    
        private static class LookupClassDefiner extends AbstractClassLoaderLookuper implements ClassDefiner {
            private MethodType defineClassMethodType = MethodType.methodType(Class.class, new Class<?>[]{String.class, byte[].class, int.class, int.class});
    
            @Override
            @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. docs/fr/docs/fastapi-people.md

    Salut! đŸ‘‹
    
    C'est moi :
    
    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.maintainers %}
    
    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">RĂ©ponses: {{ user.answers }}</div><div class="count">Pull Requests: {{ user.prs }}</div></div>
    {% endfor %}
    
    </div>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

     * Default implementation of {@link SerializerRegistry}.
     *
     * This class must be thread-safe because multiple tasks may be registering serializable classes concurrently, while other tasks are calling {@link #build(Class)}.
     */
    @ThreadSafe
    public class DefaultSerializerRegistry implements SerializerRegistry {
        private static final Comparator<Class<?>> CLASS_COMPARATOR = new Comparator<Class<?>>() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/preconditions/IntegTestPreconditions.groovy

    import static org.gradle.test.precondition.TestPrecondition.notSatisfied;
    
    class IntegTestPreconditions {
    
        static final class IsLongLivingProcess implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return GradleContextualExecuter.isLongLivingProcess()
            }
        }
    
        static final class IsEmbeddedExecutor implements TestPrecondition {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

    import java.util.Queue;
    import java.util.concurrent.atomic.AtomicReference;
    
    public class IsolationScheme<IMPLEMENTATION, PARAMS> {
        private final Class<IMPLEMENTATION> interfaceType;
        private final Class<PARAMS> paramsType;
        private final Class<? extends PARAMS> noParamsType;
    
        public IsolationScheme(Class<IMPLEMENTATION> interfaceType, Class<PARAMS> paramsType, Class<? extends PARAMS> noParamsType) {
            this.interfaceType = interfaceType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/test/groovy/org/gradle/plugin/software/internal/DefaultSoftwareTypeRegistryTest.groovy

            1 * propertyMetadata.getPropertyType() >> SoftwareType.class
            1 * propertyMetadata.getDeclaredType() >> TypeToken.of(TestModel.class)
            1 * propertyMetadata.getAnnotation(SoftwareType.class) >> Optional.of(softwareType)
            1 * duplicatePropertyMetadata.getPropertyType() >> SoftwareType.class
            1 * duplicatePropertyMetadata.getDeclaredType() >> TypeToken.of(TestModel.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:29 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top