Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for describe (0.42 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

            return repository.isOverride(method)
        }
    
        Violation acceptOrReject(JApiCompatibility member, Violation rejection) {
            List<String> changes = member.compatibilityChanges.collect { Violation.describe(it) }
            return acceptOrReject(member, changes, rejection)
        }
    
        Violation acceptOrReject(JApiCompatibility member, List<String> changes, Violation rejection) {
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Equivalence.java

    public abstract class Equivalence<T>
    {
      /** Constructor for use by subclasses. */
      protected Equivalence() {}
    
      /**
       * Returns {@code true} if the given objects are considered equivalent.
       *
       * <p>This method describes an <i>equivalence relation</i> on object references, meaning that for
       * all references {@code x}, {@code y}, and {@code z} (any of which may be null):
       *
       * <ul>
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 01:41:50 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

      }
    
      fun retryAfterFailure(): Boolean {
        return exchange?.hasFailure == true &&
          exchangeFinder!!.routePlanner.hasNext(exchange?.connection)
      }
    
      /**
       * Returns a string that describes this call. Doesn't include a full URL as that might contain
       * sensitive information.
       */
      private fun toLoggableString(): String {
        return (
          (if (isCanceled()) "canceled " else "") +
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 17.9K bytes
    - Viewed (2)
  4. android/guava/src/com/google/common/collect/Ordering.java

       *
       * @param valuesInOrder the values that the returned comparator will be able to compare, in the
       *     order the comparator should induce
       * @return the comparator described above
       * @throws NullPointerException if any of the provided values is null
       * @throws IllegalArgumentException if {@code valuesInOrder} contains any duplicate values
       *     (according to {@link Object#equals})
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 39.4K bytes
    - Viewed (0)
  5. manifests/charts/base/crds/crd-all.gen.yaml

                        additionalProperties:
                          type: string
                        type: object
                    type: object
                  probe:
                    description: '`ReadinessProbe` describes the configuration the user
                      must provide for healthchecking on their workload.'
                    oneOf:
                    - not:
                        anyOf:
                        - required:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    	ReplicateHealDelete = "replicate:heal:delete"
    )
    
    var (
    	globalReplicationPool  *ReplicationPool
    	globalReplicationStats *ReplicationStats
    )
    
    // ReplicationPool describes replication pool
    type ReplicationPool struct {
    	// atomic ops:
    	activeWorkers    int32
    	activeMRFWorkers int32
    
    	objLayer   ObjectLayer
    	ctx        context.Context
    	priority   string
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Apr 20 09:05:54 GMT 2024
    - 112K bytes
    - Viewed (1)
Back to top