Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 852 for positioner (0.17 sec)

  1. tensorflow/cc/gradients/data_flow_grad.cc

      // DynamicStitch shuffles its data to the output (using items in
      // indices) so the gradient propagated to a given data input simply
      // selects the gradient for its output position.
      for (int32_t i = 0; i < num_values; i++) {
        // index has the destination positions for the i'th data
        // element. We cast it into an int32 if necessary, so we can use
        // it from a Gather op.
        // i = 0: index = 2
        // i = 1: index = [1, 0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 13:40:35 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/adminlte.min.js.map

     }\n\n    // Static\n\n    _getContainerId() {\n      if (this._config.position == Position.TOP_RIGHT) {\n        return Selector.CONTAINER_TOP_RIGHT;\n      } else if (this._config.position == Position.TOP_LEFT) {\n        return Selector.CONTAINER_TOP_LEFT;\n      } else if (this._config.position == Position.BOTTOM_RIGHT) {\n        return Selector.CONTAINER_BOTTOM_RIGHT;\n      } else if (this._config.position == Position.BOTTOM_LEFT) {\n        return Selector.CONTAINER_BOTTOM_LEFT;\n      }\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/intervals.go

    	c.s[len(c.s)-1].st = pos
    	c.setLast(pos)
    	return nil
    }
    
    // Kill method should be invoked on instruction at position p if instr
    // should be treated as as having a kill (lifetime end) for the
    // resource. See the example in the comment at the beginning of this
    // file for an example. Note that if we see a kill at position K for a
    // resource currently live since J, this will result in a lifetime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/text/scanner/scanner_test.go

    			t.Errorf("tok = %q, want %q", s.TokenText(), string(ch))
    		}
    	}
    	checkPos(t, s.Position, want)
    }
    
    func TestPos(t *testing.T) {
    	// corner case: empty source
    	s := new(Scanner).Init(strings.NewReader(""))
    	checkPos(t, s.Pos(), Position{Offset: 0, Line: 1, Column: 1})
    	s.Peek() // peek doesn't affect the position
    	checkPos(t, s.Pos(), Position{Offset: 0, Line: 1, Column: 1})
    
    	// corner case: source with only a newline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  5. test/typeparam/issue58513.go

    // function literals to plumb sub-dictionaries appropriately.
    // However, when these expressions are inlined, we were constructing
    // the function literal bodies with the inline-adjusted positions
    // instead of the original (inline-free) positions, which could lead
    // to infinite loops when unwinding the stack.
    
    package main
    
    import "runtime"
    
    func assert[_ any]() {
    	panic(0)
    }
    
    func Assert[To any]() func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 23:07:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/go/ast/ast.go

    //
    // All nodes contain position information marking the beginning of
    // the corresponding source text segment; it is accessible via the
    // Pos accessor method. Nodes may contain additional position info
    // for language constructs where comments may be found between parts
    // of the construct (typically any larger, parenthesized subpart).
    // That position information is needed to properly position comments
    // when printing the construct.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. src/go/types/check_test.go

    		index := -1 // index of matching error
    		var delta int
    		for _, i := range indices {
    			if d := absDiff(gotPos.Column, errList[i].col); index < 0 || d < delta {
    				index, delta = i, d
    			}
    		}
    
    		// The closest column position must be within expected colDelta.
    		const colDelta = 0 // go/types errors are positioned correctly
    		if delta > colDelta {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/go/parser/resolver_test.go

    )
    
    // TestResolution checks that identifiers are resolved to the declarations
    // annotated in the source, by comparing the positions of the resulting
    // Ident.Obj.Decl to positions marked in the source via special comments.
    //
    // In the test source, any comment prefixed with '=' or '@' (or both) marks the
    // previous token position as the declaration ('=') or a use ('@') of an
    // identifier. The text following '=' and '@' in the comment string is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais.go

    	// By scanning backward, we can keep track of whether the current
    	// position is type-S or type-L according to the usual definition:
    	//
    	//	- position len(text) is type S with text[len(text)] == -1 (the sentinel)
    	//	- position i is type S if text[i] < text[i+1], or if text[i] == text[i+1] && i+1 is type S.
    	//	- position i is type L if text[i] > text[i+1], or if text[i] == text[i+1] && i+1 is type L.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. src/go/doc/example.go

    	imps := make([]*ast.ImportSpec, len(origImps))
    	copy(imps, origImps)
    	// Assume the imports are sorted by position.
    	slices.SortFunc(imps, func(a, b *ast.ImportSpec) int {
    		return cmp.Compare(a.Pos(), b.Pos())
    	})
    	// Assume gofmt has been applied, so there is a blank line between adjacent imps
    	// if and only if they are more than 2 positions apart (newline, tab).
    	var groupStarts []*ast.ImportSpec
    	prevEnd := token.Pos(-2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top