Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 657 for offsetY (0.49 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.cc

    // schema_utils header.
    // TODO(b/162392898): remove once all callers are updated to use schema v3a
    // functions.
    
    flatbuffers::Offset<OperatorCode> CreateOperatorCode(
        flatbuffers::FlatBufferBuilder &_fbb, BuiltinOperator builtin_code,
        flatbuffers::Offset<flatbuffers::String> custom_code, int32_t version) {
      OperatorCodeBuilder builder_(_fbb);
      builder_.add_version(version);
    
      int8_t deprecated_builtin_code =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/runtime/time_test.go

    				t.Errorf("runtime.Timer field %s %v incompatible with %s field %s %v", f1.Name, t1, name, f2.Name, t2)
    			}
    			if f1.Offset != f2.Offset {
    				t.Errorf("runtime.Timer field %s offset %d incompatible with %s field %s offset %d", f1.Name, f1.Offset, name, f2.Name, f2.Offset)
    			}
    		}
    	}
    
    	check("time.Timer", reflect.TypeOf(time.Timer{}))
    	check("time.Ticker", reflect.TypeOf(time.Ticker{}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 03:40:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/InputStreamBackedDecoder.java

        public InputStreamBackedDecoder(DataInputStream inputStream) {
            this.inputStream = inputStream;
        }
    
        @Override
        protected int maybeReadBytes(byte[] buffer, int offset, int count) throws IOException {
            return inputStream.read(buffer, offset, count);
        }
    
        @Override
        protected long maybeSkip(long count) throws IOException {
            return inputStream.skip(count);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/op.go

    	SymRdWr = SymRead | SymWrite
    
    	SymNone SymEffect = 0
    )
    
    // A Sym represents a symbolic offset from a base register.
    // Currently a Sym can be one of 3 things:
    //   - a *gc.Node, for an offset from SP (the stack pointer)
    //   - a *obj.LSym, for an offset from SB (the global pointer)
    //   - nil, for no offset
    type Sym interface {
    	CanBeAnSSASym()
    	CanBeAnSSAAux()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. cmd/bitrot-streaming.go

    func (b *streamingBitrotReader) ReadAt(buf []byte, offset int64) (int, error) {
    	var err error
    	if offset%b.shardSize != 0 {
    		// Offset should always be aligned to b.shardSize
    		// Can never happen unless there are programmer bugs
    		return 0, errUnexpected
    	}
    	if b.rc == nil {
    		// For the first ReadAt() call we need to open the stream for reading.
    		b.currOffset = offset
    		streamOffset := (offset/b.shardSize)*int64(b.h.Size()) + offset
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java

                stream.reset();
    
                int offset = 0;
                while (stream.incrementToken()) {
                    final CharTermAttribute att = stream.getAttribute(CharTermAttribute.class);
                    final String term = att.toString();
                    final int pos = inputStr.indexOf(term, offset);
                    if (pos > 0) {
                        final String tmp = inputStr.substring(offset, pos);
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            if (mappingItemList == null) {
                reload(null);
            }
    
            if (offset >= mappingItemList.size() || offset < 0) {
                return new PagingList<>(Collections.<CharMappingItem> emptyList(), offset, size, mappingItemList.size());
            }
    
            int toIndex = offset + size;
            if (toIndex > mappingItemList.size()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/internal/syscall/unix/siginfo_linux_test.go

    	}
    	ofUid := ofPid + 4
    	ofStatus := ofPid + 8
    
    	offsets := []struct {
    		name string
    		got  uintptr
    		want int
    	}{
    		{"Signo", unsafe.Offsetof(si.Signo), ofSigno},
    		{"Errno", unsafe.Offsetof(si.Errno), ofErrno},
    		{"Code", unsafe.Offsetof(si.Code), ofCode},
    		{"Pid", unsafe.Offsetof(si.Pid), ofPid},
    		{"Uid", unsafe.Offsetof(si.Uid), ofUid},
    		{"Status", unsafe.Offsetof(si.Status), ofStatus},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.h

    // three, which does not have an extended builtin code.
    flatbuffers::Offset<OperatorCode> CreateOperatorCode(
        flatbuffers::FlatBufferBuilder &_fbb,
        BuiltinOperator builtin_code = BuiltinOperator_ADD,
        flatbuffers::Offset<flatbuffers::String> custom_code = 0,
        int32_t version = 1);
    
    flatbuffers::Offset<OperatorCode> CreateOperatorCodeDirect(
        flatbuffers::FlatBufferBuilder &_fbb,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractEncoder.java

        public void writeBinary(byte[] bytes) throws IOException {
            writeBinary(bytes, 0, bytes.length);
        }
    
        @Override
        public void writeBinary(byte[] bytes, int offset, int count) throws IOException {
            writeSmallInt(count);
            writeBytes(bytes, offset, count);
        }
    
        @Override
        public void encodeChunked(EncodeAction<Encoder> writeAction) throws Exception {
            throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top