Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for Returns (1.43 sec)

  1. guava/src/com/google/common/collect/Range.java

      /** Returns {@code true} if this range has an upper endpoint. */
      public boolean hasUpperBound() {
        return upperBound != Cut.aboveAll();
      }
    
      /**
       * Returns the upper endpoint of this range.
       *
       * @throws IllegalStateException if this range is unbounded above (that is, {@link
       *     #hasUpperBound()} returns {@code false})
       */
      public C upperEndpoint() {
        return upperBound.endpoint();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Response.kt

       */
      @get:JvmName("request") val request: Request,
      /** Returns the HTTP protocol, such as [Protocol.HTTP_1_1] or [Protocol.HTTP_1_0]. */
      @get:JvmName("protocol") val protocol: Protocol,
      /** Returns the HTTP status message. */
      @get:JvmName("message") val message: String,
      /** Returns the HTTP status code. */
      @get:JvmName("code") val code: Int,
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    	b.StdinOnce = &value
    	return b
    }
    
    // WithTTY sets the TTY field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TTY field is set to the value of the last call.
    func (b *ContainerApplyConfiguration) WithTTY(value bool) *ContainerApplyConfiguration {
    	b.TTY = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podtemplatespec.go

    // apply.
    func PodTemplateSpec() *PodTemplateSpecApplyConfiguration {
    	return &PodTemplateSpecApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    	}
    	sort.Slice(result, func(i, j int) bool { return result[i] < result[j] })
    	return result
    }
    
    // IsZero returns true if each key maps to the quantity value 0
    func IsZero(a corev1.ResourceList) bool {
    	zero := resource.MustParse("0")
    	for _, v := range a {
    		if v.Cmp(zero) != 0 {
    			return false
    		}
    	}
    	return true
    }
    
    // RemoveZeros returns a new resource list that only has no zero values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         * <p>Returns the root directory of the build. The root directory is the project directory of the root project.</p>
         *
         * @return The root directory. Never returns null.
         */
        File getRootDir();
    
        /**
         * <p>Returns the root project of the build.</p>
         *
         * @return The root project. Never returns null.
         */
        @Restricted
        ProjectDescriptor getRootProject();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumesource.go

    // apply.
    func PersistentVolumeSource() *PersistentVolumeSourceApplyConfiguration {
    	return &PersistentVolumeSourceApplyConfiguration{}
    }
    
    // WithGCEPersistentDisk sets the GCEPersistentDisk field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 13.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/lockedfile/internal/filelock/filelock.go

    	switch lt {
    	case readLock:
    		return "RLock"
    	case writeLock:
    		return "Lock"
    	default:
    		return "Unlock"
    	}
    }
    
    // IsNotSupported returns a boolean indicating whether the error is known to
    // report that a function is not supported (possibly for a specific input).
    // It is satisfied by errors.ErrUnsupported as well as some syscall errors.
    func IsNotSupported(err error) bool {
    	return errors.Is(err, errors.ErrUnsupported)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers.go

    		if condition.Type == conditionType {
    			return condition.Status == status
    		}
    	}
    	return false
    }
    
    // IsCRDConditionEquivalent returns true if the lhs and rhs are equivalent except for times.
    func IsCRDConditionEquivalent(lhs, rhs *CustomResourceDefinitionCondition) bool {
    	if lhs == nil && rhs == nil {
    		return true
    	}
    	if lhs == nil || rhs == nil {
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 27 10:54:44 UTC 2019
    - 9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Ctz32NonZero", argLength: 1}, // same as above, but arg[0] known to be non-zero, returns 0-31
    	{name: "Ctz64NonZero", argLength: 1}, // same as above, but arg[0] known to be non-zero, returns 0-63
    	{name: "BitLen8", argLength: 1},      // Number of bits in arg[0] (returns 0-8)
    	{name: "BitLen16", argLength: 1},     // Number of bits in arg[0] (returns 0-16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top