Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 285 for owns (0.04 sec)

  1. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

    /**
     * Implementation class of {@link MethodDesc}.
     *
     * @author koichik
     */
    public class MethodDescImpl implements MethodDesc {
    
        /** The {@link BeanDesc} of the class that owns this method */
        protected final BeanDesc beanDesc;
    
        /** The method */
        protected final Method method;
    
        /** The method name */
        protected final String methodName;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

    import org.codelibs.core.lang.FieldUtil;
    
    /**
     * Implementation class of {@link FieldDesc}.
     *
     * @author koichik
     */
    public class FieldDescImpl implements FieldDesc {
    
        /** The {@link BeanDesc} of the class that owns this field */
        protected final BeanDesc beanDesc;
    
        /** The field */
        protected final Field field;
    
        /** The field name */
        protected final String fieldName;
    
        /** The type of the field */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/ExchangeCodec.kt

    import okio.Sink
    import okio.Socket
    import okio.Source
    
    /** Encodes HTTP requests and decodes HTTP responses. */
    interface ExchangeCodec {
      /** The connection or CONNECT tunnel that owns this codec. */
      val carrier: Carrier
    
      /** Returns true if the response body and (possibly empty) trailers have been received. */
      val isResponseComplete: Boolean
    
      /** The socket that carries this exchange. */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 21:11:09 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/MethodDesc.java

    import java.util.Collection;
    import java.util.Map;
    
    /**
     * Interface for handling methods.
     *
     * @author koichik
     */
    public interface MethodDesc {
    
        /**
         * Returns the {@link BeanDesc} of the class that owns this method.
         *
         * @return {@link BeanDesc}
         */
        BeanDesc getBeanDesc();
    
        /**
         * Returns the method.
         *
         * @return the method
         */
        Method getMethod();
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/ConstructorDesc.java

    import java.util.Map;
    
    /**
     * Interface for handling constructors.
     *
     * @author koichik
     */
    public interface ConstructorDesc {
    
        /**
         * Returns the {@link BeanDesc} of the class that owns this constructor.
         *
         * @return {@link BeanDesc}
         */
        BeanDesc getBeanDesc();
    
        /**
         * Returns the constructor.
         *
         * @param <T>
         *            The type of the Bean
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/FieldDesc.java

    import java.util.Collection;
    import java.util.Map;
    
    /**
     * Interface for handling fields.
     *
     * @author koichik
     */
    public interface FieldDesc {
    
        /**
         * Returns the {@link BeanDesc} of the class that owns this field.
         *
         * @return {@link BeanDesc}
         */
        BeanDesc getBeanDesc();
    
        /**
         * Returns the field.
         *
         * @return the field
         */
        Field getField();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/https.md

    The **TLS certificates** are **associated with a domain name**, not with an IP address.
    
    So, to renew the certificates, the renewal program needs to **prove** to the authority (Let's Encrypt) that it indeed **"owns" and controls that domain**.
    
    To do that, and to accommodate different application needs, there are several ways it can do it. Some popular ways are:
    
    * **Modify some DNS records**.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/Invokable.java

     * the case. However, most methods from those types are present with the same signature in this
     * class.
     *
     * @param <T> the type that owns this method or constructor.
     * @param <R> the return type of (or supertype thereof) the method or the declaring type of the
     *     constructor.
     * @author Ben Yu
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

      Use [ControllerRef](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/api-machinery/controller-ref.md) instead to determine which controller, if any, owns an object.
    
     - The `batch/v2alpha1.CronJob` is deprecated in favor of `batch/v1beta1`.
    
     - The `batch/v2alpha1.ScheduledJob` was removed. Use `batch/v1beta1.CronJob` instead.
    
    ### Auth
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.7.md

    * Update kube-dns to 1.14.5 ([#53114](https://github.com/kubernetes/kubernetes/pull/53114), [@bowei](https://github.com/bowei))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (1)
Back to top