Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 153 for Element (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

     func.return %arg0 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Test the pass reports failure on unknown size.
    
    func.func @main(%arg0: tensor<i32>) -> () {
      // expected-error @+1 {{unknown max element count}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	// BuildTags is not set for the Default build Context.
    	// In addition to the BuildTags, ToolTags, and ReleaseTags, build constraints
    	// consider the values of GOARCH and GOOS as satisfied tags.
    	// The last element in ReleaseTags is assumed to be the current release.
    	BuildTags   []string
    	ToolTags    []string
    	ReleaseTags []string
    
    	// The install suffix specifies a suffix to use in the name of the installation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			continue
    		}
    		path := fieldpath.Path{}
    		splitReplicasPath := strings.Split(strings.TrimPrefix(subresources.Scale.SpecReplicasPath, "."), ".")
    		for _, element := range splitReplicasPath {
    			s := element
    			path = append(path, fieldpath.PathElement{FieldName: &s})
    		}
    		replicasPathInCustomResource[schema.GroupVersion{Group: crd.Spec.Group, Version: v.Name}.String()] = path
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/time/format.go

    // looks like so that the Format and Parse methods can apply the same
    // transformation to a general time value.
    //
    // Here is a summary of the components of a layout string. Each element shows by
    // example the formatting of an element of the reference time. Only these values
    // are recognized. Text in the layout string that is not recognized as part of
    // the reference time is echoed verbatim during Format and expected to appear
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    	// analyze case
    	var idents []*ast.Ident
    	if typ != nil {
    		// IdentifierList Type
    		idents = p.makeIdentList(list)
    	} else {
    		// ["*"] TypeName (AnonymousField)
    		typ = list[0] // we always have at least one element
    		p.resolve(typ)
    		if n := len(list); n > 1 || !isTypeName(deref(typ)) {
    			pos := typ.Pos()
    			p.errorExpected(pos, "anonymous field")
    			typ = &ast.BadExpr{pos, list[n-1].End()}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	// argument that has the same module path as, and a lower version than,
    	// the last element of the Path slice.
    	Constraint module.Version
    
    	// If Constraint is unset, Err is an error encountered when loading the
    	// requirements of the last element in Path.
    	Err error
    }
    
    // UnwrapModuleError returns c.Err, but unwraps it if it is a module.ModuleError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.listMap.filter(m, has(m.v2) && m.v2 == 'z').map(m, m.v2).size() == 1": 39,
    				// - without has checks:
    
    				// all() and exists() macros ignore errors from predicates so long as the condition holds for at least one element
    				"self.listMap.exists(m, m.v2 == 'z')": 24,
    				"!self.listMap.all(m, m.v2 != 'z')":   22,
    			},
    		},
    		{name: "list access",
    			obj: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  8. src/html/template/exec_test.go

    	W0     W
    	W1, W2 *W
    	// Slices
    	SI      []int
    	SICap   []int
    	SIEmpty []int
    	SB      []bool
    	// Arrays
    	AI [3]int
    	// Maps
    	MSI      map[string]int
    	MSIone   map[string]int // one element, for deterministic output
    	MSIEmpty map[string]int
    	MXI      map[any]int
    	MII      map[int]int
    	MI32S    map[int32]string
    	MI64S    map[int64]string
    	MUI32S   map[uint32]string
    	MUI64S   map[uint64]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/regexp/syntax/parse.go

    // and returns that regexp.
    func (p *parser) op(op Op) *Regexp {
    	re := p.newRegexp(op)
    	re.Flags = p.flags
    	return p.push(re)
    }
    
    // repeat replaces the top stack element with itself repeated according to op, min, max.
    // before is the regexp suffix starting at the repetition operator.
    // after is the regexp suffix following after the repetition operator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    	// The value of that entry is the *v1.Pod at the time that scheduling of that
    	// pod started, which can be useful for logging or debugging.
    	inFlightPods map[types.UID]*list.Element
    
    	// inFlightEvents holds the events received by the scheduling queue
    	// (entry value is clusterEvent) together with in-flight pods (entry
    	// value is *v1.Pod). Entries get added at the end while the mutex is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top