Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for Positions (0.23 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        if (!tensor_or) return false;
        tensors.push_back(*tensor_or);
    
        return true;
      };
    
      std::vector<BufferOffset<tflite::Operator>> operators;
    
      // Maps positions of operations in bb to positions in operators
      llvm::DenseMap<int, int> operation_index_to_operator_index;
      std::vector<Operation*> operators_in_mlir;
      auto& bb = region->front();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n  - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n    non-intersecting elements in `Y` are appended, retaining their partial order.\n  - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n    are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n  - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n    non-intersecting elements in `Y` are appended, retaining their partial order.\n  - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n    are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

    == [2, 1]. Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:\n  - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and\n    non-intersecting elements in `Y` are appended, retaining their partial order.\n  - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values\n    are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // mapped to 2-letter codes using the default algorithm. This is a short list.
    const altRegionISO3 string = "SCGQUUSGSCOMPRKCYMSPMSRBATFMYTATN"
    
    // altRegionIDs holds a list of regionIDs the positions of which match those
    // of the 3-letter ISO codes in altRegionISO3.
    // Size: 22 bytes, 11 elements
    var altRegionIDs = [11]uint16{
    	0x0058, 0x0071, 0x0089, 0x00a9, 0x00ab, 0x00ae, 0x00eb, 0x0106,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    			p.Dir = nogoErr.Dir
    		}
    		err = &NoGoError{Package: p}
    	}
    
    	// Take only the first error from a scanner.ErrorList. PackageError only
    	// has room for one position, so we report the first error with a position
    	// instead of all of the errors without a position.
    	var pos string
    	var isScanErr bool
    	if scanErr, ok := err.(scanner.ErrorList); ok && len(scanErr) > 0 {
    		isScanErr = true // For stack push/pop below.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	ValueOf(&f).Elem().Set(fv)
    
    	// Call g with small arguments so that there is
    	// something predictable (and different from the
    	// correct results) in those positions on the stack.
    	g := dummy
    	g(1, 2, 3, two{4, 5}, 6, 7, 8)
    
    	// Call constructed function f.
    	i, j, k, l, m, n, o := f(10, 20, 30, two{40, 50}, 60, 70, 80)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	a.built = objpkg
    	return nil
    }
    
    func (b *Builder) checkDirectives(a *Action) error {
    	var msg []byte
    	p := a.Package
    	var seen map[string]token.Position
    	for _, d := range p.Internal.Build.Directives {
    		if strings.HasPrefix(d.Text, "//go:debug") {
    			key, _, err := load.ParseGoDebug(d.Text)
    			if err != nil && err != load.ErrNotGoDebug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    // For a more concise way to create NamedArg values, see
    // the [Named] function.
    type NamedArg struct {
    	_NamedFieldsRequired struct{}
    
    	// Name is the name of the parameter placeholder.
    	//
    	// If empty, the ordinal position in the argument list will be
    	// used.
    	//
    	// Name must omit any symbol prefix.
    	Name string
    
    	// Value is the value of the parameter.
    	// It may be assigned the same value types as the query
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		for enum := stealOrder.start(cheaprand()); !enum.done(); enum.next() {
    			if sched.gcwaiting.Load() {
    				// GC work may be available.
    				return nil, false, now, pollUntil, true
    			}
    			p2 := allp[enum.position()]
    			if pp == p2 {
    				continue
    			}
    
    			// Steal timers from p2. This call to checkTimers is the only place
    			// where we might hold a lock on a different P's timers. We do this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top