Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for Enumerated (0.21 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/AnEnum.java

     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A sample enumerated type we use for testing.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public enum AnEnum {
      A,
      B,
      C,
      D,
      E,
      F
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 854 bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/AnEnum.java

     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A sample enumerated type we use for testing.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public enum AnEnum {
      A,
      B,
      C,
      D,
      E,
      F
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 29 12:09:19 UTC 2016
    - 854 bytes
    - Viewed (0)
  3. src/main/java/jcifs/spnego/NegTokenTarg.java

                    tagged = (ASN1TaggedObject) fields.nextElement();
                    switch ( tagged.getTagNo() ) {
                    case 0:
                        ASN1Enumerated enumerated = ASN1Enumerated.getInstance(tagged, true);
                        setResult(enumerated.getValue().intValue());
                        break;
                    case 1:
                        setMechanism(ASN1ObjectIdentifier.getInstance(tagged, true));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/features/Feature.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Set;
    
    /**
     * Base class for enumerating the features of an interface to be tested.
     *
     * @param <T> The interface whose features are to be enumerated.
     * @author George van den Driessche
     */
    @GwtCompatible
    public interface Feature<T> {
      /** Returns the set of features that are implied by this feature. */
      Set<Feature<? super T>> getImpliedFeatures();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Sep 15 13:47:32 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/features/Feature.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Set;
    
    /**
     * Base class for enumerating the features of an interface to be tested.
     *
     * @param <T> The interface whose features are to be enumerated.
     * @author George van den Driessche
     */
    @GwtCompatible
    public interface Feature<T> {
      /** Returns the set of features that are implied by this feature. */
      Set<Feature<? super T>> getImpliedFeatures();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  6. plugin/pkg/admission/limitranger/admission.go

    var _ LimitRangerActions = &DefaultLimitRangerActions{}
    
    // MutateLimit enforces resource requirements of incoming resources
    // against enumerated constraints on the LimitRange.  It may modify
    // the incoming object to apply default resource requirements if not
    // specified, and enumerated on the LimitRange
    func (d *DefaultLimitRangerActions) MutateLimit(limitRange *corev1.LimitRange, resourceName string, obj runtime.Object) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. src/encoding/asn1/asn1.go

    		v, offset, err = parseBase128Int(bytes, offset)
    		if err != nil {
    			return
    		}
    		s[i] = v
    	}
    	s = s[0:i]
    	return
    }
    
    // ENUMERATED
    
    // An Enumerated is represented as a plain int.
    type Enumerated int
    
    // FLAG
    
    // A Flag accepts any data and is set to true if present.
    type Flag bool
    
    // parseBase128Int parses a base-128 encoded int from the given offset in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/config/types.go

    	PVClaimBinderSyncPeriod metav1.Duration
    	// volumeConfiguration holds configuration for volume related features.
    	VolumeConfiguration VolumeConfiguration
    }
    
    // VolumeConfiguration contains *all* enumerated flags meant to configure all volume
    // plugins. From this config, the controller-manager binary will create many instances of
    // volume.VolumeConfig, each containing only the configuration needed for that plugin which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/options/options.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"time"
    
    	"github.com/spf13/pflag"
    )
    
    // VolumeConfigFlags is used to bind CLI flags to variables.  This top-level struct contains *all* enumerated
    // CLI flags meant to configure all volume plugins.  From this config, the binary will create many instances
    // of volume.VolumeConfig which are then passed to the appropriate plugin. The ControllerManager binary is the only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 04 20:45:21 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	// match, too long, out of bounds).  See Invalid().
    	ErrorTypeInvalid ErrorType = "FieldValueInvalid"
    	// ErrorTypeNotSupported is used to report unknown values for enumerated
    	// fields (e.g. a list of valid values).  See NotSupported().
    	ErrorTypeNotSupported ErrorType = "FieldValueNotSupported"
    	// ErrorTypeForbidden is used to report valid (as per formatting rules)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top