- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 209 for owns (0.03 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
PULL_REQUESTS_ETIQUETTE.md
- If unable to complete the review, tag another reviewer (e.g., `@username please take over`). 4. **Shared Responsibility**: - All MinIO contributors are reviewers. The first commenter on a PR owns the review unless they delegate. - Multiple reviewers are encouraged for complex PRs. 5. **No Self-Edits**: - Don’t modify the PR directly (e.g., fixing bugs). Request changes from the submitter or create a follow-up PR.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun May 25 16:32:03 UTC 2025 - 4.7K bytes - Viewed (0) -
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) -
cmd/erasure.go
bucketCh <- b } } xioutil.SafeClose(bucketCh) bucketResults := make(chan dataUsageEntryInfo, len(disks)) // Start async collector/saver. // This goroutine owns the cache. var saverWg sync.WaitGroup saverWg.Add(1) go func() { // Add jitter to the update time so multiple sets don't sync up. updateTime := 30*time.Second + time.Duration(float64(10*time.Second)*rand.Float64())
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.1K bytes - Viewed (0) -
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)