Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 852 for positioner (0.15 sec)

  1. test/fixedbugs/issue49016.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type Node interface {
    	Position()
    }
    
    type noder struct{}
    
    func (noder) Position() {}
    
    type Scope map[int][]Node
    
    func (s Scope) M1() Scope {
    	if x, ok := s[0]; ok {
    		return x[0].(struct {
    			noder
    			Scope
    		}).Scope
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 20 17:26:58 UTC 2021
    - 543 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/composite.py

    class Composite(object):
      """A decorator to register a function as a composition for an TF operator.
    
      The argument to the decorator must be the name of a TF raw operator the
      function composites for. Decorated function must take positional arguments
      which corresponds to the input and attributes in OpDef of the TF operation.
      # TODO(fengliuai): more documents here.
    
      Example:
        @composite.Composite('AddN')
        def _compose_add_n(inputs, N):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. gradlew

            fi
            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/go/types/errorcalls_test.go

    				return true
    			}
    			// check.errorf calls should have at least errorfMinArgCount arguments:
    			// position, code, format string, and arguments to format
    			if n := len(call.Args); n < errorfMinArgCount {
    				t.Errorf("%s: got %d arguments, want at least %d", fset.Position(call.Pos()), n, errorfMinArgCount)
    				return false
    			}
    			format := call.Args[errorfFormatIndex]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. docs/en/docs/css/termynal.css

        border-radius: 4px;
        padding: 75px 45px 35px;
        position: relative;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        line-height: 1.2;
    }
    
    [data-termynal]:before {
        content: '';
        position: absolute;
        top: 15px;
        left: 15px;
        display: inline-block;
        width: 15px;
        height: 15px;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/ReaderInputStream.java

       * is perpetually "flipped" (unencoded characters between position and limit).
       */
      private CharBuffer charBuffer;
    
      /**
       * byteBuffer holds encoded characters that have not yet been sent to the caller of the input
       * stream. When encoding it is "unflipped" (encoded bytes between 0 and position) and when
       * draining it is flipped (undrained bytes between position and limit).
       */
      private ByteBuffer byteBuffer;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/ReaderInputStream.java

       * is perpetually "flipped" (unencoded characters between position and limit).
       */
      private CharBuffer charBuffer;
    
      /**
       * byteBuffer holds encoded characters that have not yet been sent to the caller of the input
       * stream. When encoding it is "unflipped" (encoded bytes between 0 and position) and when
       * draining it is flipped (undrained bytes between position and limit).
       */
      private ByteBuffer byteBuffer;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/PatternHelper.java

                switch (ch) {
                    case '(':
                        if (insideOptionalPart) {
                            throw new IllegalArgumentException(
                                "invalid start of optional part at position " + i + " in pattern "
                                    + pattern);
                        }
    
                        optionalPart = new StringBuilder();
                        insideOptionalPart = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. src/go/scanner/scanner_test.go

    	// error handler
    	eh := func(_ token.Position, msg string) {
    		t.Errorf("error handler called (msg = %s)", msg)
    	}
    
    	// verify scan
    	var s Scanner
    	s.Init(fset.AddFile("", fset.Base(), len(source)), source, eh, ScanComments|dontInsertSemis)
    
    	// set up expected position
    	epos := token.Position{
    		Filename: "",
    		Offset:   0,
    		Line:     1,
    		Column:   1,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  10. src/internal/poll/sendfile_windows.go

    		})
    		if err != nil {
    			return written, err
    		}
    
    		curpos += int64(nw)
    
    		// Some versions of Windows (Windows 10 1803) do not set
    		// file position after TransmitFile completes.
    		// So just use Seek to set file position.
    		if _, err = syscall.Seek(o.handle, curpos, io.SeekStart); err != nil {
    			return written, err
    		}
    
    		n -= int64(nw)
    		written += int64(nw)
    	}
    
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top