Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,194 for enum2 (1.01 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema.fbs

    file_identifier "TFL3";
    // File extension of any written files.
    file_extension "tflite";
    
    // IMPORTANT: All new members of tables, enums and unions must be added at the
    // end to ensure backwards compatibility.
    
    // The type of data stored in a tensor.
    enum TensorType : byte {
      FLOAT32 = 0,
      FLOAT16 = 1,
      INT32 = 2,
      UINT8 = 3,
      INT64 = 4,
      STRING = 5,
      BOOL = 6,
      INT16 = 7,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

    /**
     * An entry of an enum class.
     *
     * The type of the enum entry is the enum class itself. The members declared in an enum entry's body are local to the body and cannot be
     * accessed from the outside. Hence, while it might look like enum entries can declare their own members (see the example below), they do
     * not have a (declared) member scope.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. cmd/setup-type.go

    package cmd
    
    // SetupType - enum for setup type.
    type SetupType int
    
    const (
    	// UnknownSetupType - starts with unknown setup type.
    	UnknownSetupType SetupType = iota
    
    	// FSSetupType - FS setup type enum.
    	FSSetupType
    
    	// ErasureSDSetupType - Erasure single drive setup enum.
    	ErasureSDSetupType
    
    	// ErasureSetupType - Erasure setup type enum.
    	ErasureSetupType
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. docs_src/path_operation_configuration/tutorial002b.py

    from enum import Enum
    
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    class Tags(Enum):
        items = "items"
        users = "users"
    
    
    @app.get("/items/", tags=[Tags.items])
    async def get_items():
        return ["Portal gun", "Plumbus"]
    
    
    @app.get("/users/", tags=[Tags.users])
    async def read_users():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 23 17:43:04 UTC 2022
    - 323 bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/EnumMultiset.java

        this.enumConstants = type.getEnumConstants();
        this.counts = new int[enumConstants.length];
      }
    
      private boolean isActuallyE(@CheckForNull Object o) {
        if (o instanceof Enum) {
          Enum<?> e = (Enum<?>) o;
          int index = e.ordinal();
          return index < enumConstants.length && enumConstants[index] == e;
        }
        return false;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

            wildcardBoundUsesImplicitlyRecursiveBoundedWildcard(UseList<? extends List<Enum<?>>> arg) {
          return isSubtype(arg);
        }
    
        @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true)
        public UseList<? extends List<Enum<? extends Enum<?>>>>
            wildcardBoundHasImplicitBoundAtsInvariantPosition(UseList<? extends List<Enum<?>>> arg) {
          return isSubtype(arg);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskEnumTypesInputPropertyIntegrationTest.groovy

        def "task can take as input a collection of enum type from various sources"() {
            def buildSrcEnum = file("buildSrc/src/main/java/BuildSrcEnum.java")
            buildSrcEnum << """
    public enum BuildSrcEnum {
        E1, E2
    }
    """
            def otherScript = file("other.gradle")
            otherScript << """
    enum ScriptPluginEnum {
        E1, E2
    }
    ext.pluginValue = ScriptPluginEnum.E1
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/BenchmarkHelpers.java

          }
        };
      }
    
      enum QueueImpl implements CollectionsImplEnum {
        MinMaxPriorityQueueImpl {
          @Override
          public <E extends Comparable<E>> Queue<E> create(Collection<E> contents) {
            return MinMaxPriorityQueue.create(contents);
          }
        };
      }
    
      enum TableImpl {
        HashBasedTableImpl {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 04 04:06:35 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    	ret.Pattern = v.Pattern
    	ret.MaxItems = v.MaxItems
    	ret.MinItems = v.MinItems
    	ret.UniqueItems = v.UniqueItems
    	ret.MultipleOf = v.MultipleOf
    	if v.Enum != nil {
    		ret.Enum = make([]interface{}, 0, len(v.Enum))
    		for i := range v.Enum {
    			ret.Enum = append(ret.Enum, v.Enum[i].Object)
    		}
    	}
    	ret.MaxProperties = v.MaxProperties
    	ret.MinProperties = v.MinProperties
    	ret.Required = v.Required
    	for i := range v.AllOf {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/build-goboring.sh

    /^\/\// || /^#/ || NF == 0 { next }
    
    # Ignore unchecked declarations.
    /\/\*unchecked/ { next }
    
    # Check enum values.
    !enum && ($1 == "enum" || $2 == "enum") && $NF == "{" {
    	enum = 1
    	next
    }
    enum && $1 == "};" {
    	enum = 0
    	next
    }
    enum && /^}.*;$/ {
    	enum = 0
    	next
    }
    enum && NF == 3 && $2 == "=" {
    	name = $1
    	sub(/^GO_/, "", name)
    	val = $3
    	sub(/,$/, "", val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top