Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for enumValues (0.48 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.yaml

          default: defaultValue
          definitions:
            definitionsKey: {}
          dependencies:
            dependenciesKey:
            - <no json tag> PropertyValue
          description: descriptionValue
          enum:
          - enumValue
          example: exampleValue
          exclusiveMaximum: true
          exclusiveMinimum: true
          externalDocs:
            description: descriptionValue
            url: urlValue
          format: formatValue
          id: idValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/deadcode.go

    // when they are done with the return values.
    func liveValues(f *Func, reachable []bool) (live []bool, liveOrderStmts []*Value) {
    	live = f.Cache.allocBoolSlice(f.NumValues())
    	liveOrderStmts = f.Cache.allocValueSlice(f.NumValues())[:0]
    
    	// After regalloc, consider all values to be live.
    	// See the comment at the top of regalloc.go and in deadcode for details.
    	if f.RegAlloc != nil {
    		for i := range live {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_path_params/test_tutorial005.py

                    }
                ]
            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
                "detail": [
                    {
                        "ctx": {"enum_values": ["alexnet", "resnet", "lenet"]},
                        "loc": ["path", "model_name"],
                        "msg": "value is not a valid enumeration member; permitted: 'alexnet', 'resnet', 'lenet'",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

            definitions:
              definitionsKey: {}
            dependencies:
              dependenciesKey:
              - <no json tag> PropertyValue
            description: descriptionValue
            enum:
            - enumValue
            example: exampleValue
            exclusiveMaximum: true
            exclusiveMinimum: true
            externalDocs:
              description: descriptionValue
              url: urlValue
            format: formatValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule_test.go

    			Valu("v", OpConst64, c.config.Types.Int64, 12, nil),
    			Goto("exit")),
    		Bloc("exit",
    			Exit("mem2")))
    
    	CheckFunc(fun.f)
    	order := storeOrder(fun.f.Blocks[0].Values, fun.f.newSparseSet(fun.f.NumValues()), make([]int32, fun.f.NumValues()))
    
    	// check that v2, v3, v4 is sorted after v5
    	var ai, bi, ci, si int
    	for i, v := range order {
    		switch v.ID {
    		case 2:
    			ai = i
    		case 3:
    			bi = i
    		case 4:
    			ci = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/cse.go

    	// It starts with a coarse partition and iteratively refines it
    	// until it reaches a fixed point.
    
    	// Make initial coarse partitions by using a subset of the conditions above.
    	a := f.Cache.allocValueSlice(f.NumValues())
    	defer func() { f.Cache.freeValueSlice(a) }() // inside closure to use final value of a
    	a = a[:0]
    	if f.auxmap == nil {
    		f.auxmap = auxmap{}
    	}
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

                "pattern": "patternValue",
                "maxItems": 16,
                "minItems": 17,
                "uniqueItems": true,
                "multipleOf": 19.5,
                "enum": [
                  "enumValue"
                ],
                "maxProperties": 21,
                "minProperties": 22,
                "required": [
                  "requiredValue"
                ],
                "items": [
                  {}
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/tighten.go

    		// Too many values live across blocks can cause pathological
    		// behavior in the register allocator (see issue 52180).
    		return
    	}
    
    	canMove := f.Cache.allocBoolSlice(f.NumValues())
    	defer f.Cache.freeBoolSlice(canMove)
    
    	// Compute the memory states of each block.
    	startMem := f.Cache.allocValueSlice(f.NumBlocks())
    	defer f.Cache.freeValueSlice(startMem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/critical.go

    // Regalloc wants a critical-edge-free CFG so it can implement phi values.
    func critical(f *Func) {
    	// maps from phi arg ID to the new block created for that argument
    	blocks := f.Cache.allocBlockSlice(f.NumValues())
    	defer f.Cache.freeBlockSlice(blocks)
    	// need to iterate over f.Blocks without range, as we might
    	// need to split critical edges on newly constructed blocks
    	for j := 0; j < len(f.Blocks); j++ {
    		b := f.Blocks[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultValueSnapshotter.java

            }
    
            @Override
            public ValueSnapshot hashCode(HashCode value) {
                return new HashCodeSnapshot(value);
            }
    
            @Override
            public ValueSnapshot enumValue(Enum<?> value) {
                return new EnumValueSnapshot(value);
            }
    
            @Override
            public ValueSnapshot classValue(Class<?> value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top