Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Ctor (0.14 sec)

  1. src/test/java/org/codelibs/core/beans/impl/ConstructorDescTest.java

            final ConstructorDesc ctor = beanDesc.getConstructorDesc();
            assertThat(ctor, is(notNullValue()));
            assertThat(ctor.getBeanDesc(), is(sameInstance(beanDesc)));
            assertThat(ctor.getConstructor(), is((Constructor) MyBean.class.getConstructor()));
            assertThat(ctor.getParameterTypes().length, is(0));
            assertThat(ctor.isPublic(), is(true));
    Java
    - Registered: Fri Apr 19 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/NullPointerTester.java

        }
      }
    
      /**
       * Verifies that {@code ctor} produces a {@link NullPointerException} or {@link
       * UnsupportedOperationException} whenever <i>any</i> of its non-nullable parameters are null.
       */
      public void testConstructor(Constructor<?> ctor) {
        Class<?> declaringClass = ctor.getDeclaringClass();
        checkArgument(
            Modifier.isStatic(declaringClass.getModifiers())
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 23.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginConfigurationException.java

            super(originalMessage, cause);
            this.pluginDescriptor = pluginDescriptor;
            this.originalMessage = originalMessage;
        }
    
        /**
         * Ctor left for binary compatibility.
         *
         * @deprecated Use {@link #PluginConfigurationException(PluginDescriptor, String, Throwable)}
         */
        @Deprecated
        public PluginConfigurationException(
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        }
      }
    
      /**
       * Verifies that {@code ctor} produces a {@link NullPointerException} or {@link
       * UnsupportedOperationException} whenever <i>any</i> of its non-nullable parameters are null.
       */
      public void testConstructor(Constructor<?> ctor) {
        Class<?> declaringClass = ctor.getDeclaringClass();
        checkArgument(
            Modifier.isStatic(declaringClass.getModifiers())
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 22.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

        /**
         * Default ctor for plexus compatibility: lifecycles are most commonly defined in Plexus XML, that does field
         * injection. Still, for Plexus to be able to instantiate this class, default ctor is needed.
         *
         * @deprecated Should not be used in Java code.
         */
        @Deprecated
        public DefaultLifecycleMapping() {}
    
        /**
         * Ctor to be used in Java code/providers.
         */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 07:46:36 GMT 2024
    - 4K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                    errors << "Nullability breaking change"
                }
    
            } else if (member instanceof JApiConstructor) {
    
                JApiConstructor ctor = (JApiConstructor) member
                inspectParametersNullabilityOf(ctor.oldConstructor.get(), ctor.newConstructor.get())
    
            } else if (member instanceof JApiMethod) {
    
                JApiMethod method = (JApiMethod) member
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Apr 13 10:04:28 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  7. .idea/dictionaries/bashor.xml

    <component name="ProjectDictionaryState">
      <dictionary name="bashor">
        <words>
          <w>binaryen</w>
          <w>ctor</w>
          <w>inlining</w>
          <w>interner</w>
          <w>intrinsicify</w>
          <w>kclass</w>
          <w>lookups</w>
          <w>minification</w>
          <w>minifier</w>
          <w>minify</w>
          <w>unescape</w>
        </words>
      </dictionary>
    XML
    - Registered: Fri Apr 19 08:18:09 GMT 2024
    - Last Modified: Wed Nov 09 12:44:39 GMT 2022
    - 365 bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

        private final MessageBuilderFactory messageBuilderFactory;
    
        /**
         * Default ctor is used in IT and most probably some 3rd party code. For those cases, we do provide sane defaults
         * but given this is a component, injection should be used, replacing direct instantiation.
         *
         * @deprecated Do not use this ctor directly, inject this component instead.
         */
        @Deprecated
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginContainerException.java

        }
    
        public PluginContainerException(Plugin plugin, ClassRealm pluginRealm, String message, Throwable e) {
            super(plugin, message, e);
    
            this.pluginRealm = pluginRealm;
        }
    
        /**
         * Ctor left for binary compatibility.
         *
         * @deprecated Use {@link #PluginContainerException(Plugin, ClassRealm, String, Throwable)}
         */
        @Deprecated
        public PluginContainerException(
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

        private String language;
    
        @Deprecated
        private boolean addedToClasspath;
    
        /**
         * Default ctor for Plexus compatibility, as many plugins have artifact handlers declared in legacy Plexus XML.
         * Do not use directly!
         *
         * @deprecated This ctor is present only for Plexus XML defined component compatibility, do not use it.
         */
        @Deprecated
        public DefaultArtifactHandler() {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.1K bytes
    - Viewed (0)
Back to top