Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 228 for Advance (0.31 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

                        }
                        advance()
                    }
    
                    SEMICOLON -> {
                        advance()
                        seenSeparator = true
                    }
    
                    in COMMENTS -> {
                        if (ignoresComments) {
                            advance()
                        } else {
                            break
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

                if ( this.s != null ) {
                    _dst = _dst.deferred;
                    int _ss = this.count;
                    _dst.enc_ndr_long(_ss);
                    int _si = _dst.index;
                    _dst.advance(4 * _ss);
    
                    _dst = _dst.derive(_si);
                    for ( int _i = 0; _i < _ss; _i++ ) {
                        this.s[ _i ].encode(_dst);
                    }
                }
            }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 16.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

                    _dst.enc_ndr_long(_name_buffers);
                    _dst.enc_ndr_long(0);
                    _dst.enc_ndr_long(_name_bufferl);
                    int _name_bufferi = _dst.index;
                    _dst.advance(2 * _name_bufferl);
    
                    _dst = _dst.derive(_name_bufferi);
                    for (int _i = 0; _i < _name_bufferl; _i++) {
                        _dst.enc_ndr_short(name.buffer[_i]);
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 14K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/samr.java

                    _dst.enc_ndr_long(_name_buffers);
                    _dst.enc_ndr_long(0);
                    _dst.enc_ndr_long(_name_bufferl);
                    int _name_bufferi = _dst.index;
                    _dst.advance(2 * _name_bufferl);
    
                    _dst = _dst.derive(_name_bufferi);
                    for ( int _i = 0; _i < _name_bufferl; _i++ ) {
                        _dst.enc_ndr_short(this.name.buffer[ _i ]);
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 15.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

                if (array != null) {
                    _dst = _dst.deferred;
                    int _arrays = count;
                    _dst.enc_ndr_long(_arrays);
                    int _arrayi = _dst.index;
                    _dst.advance(4 * _arrays);
    
                    _dst = _dst.derive(_arrayi);
                    for (int _i = 0; _i < _arrays; _i++) {
                        array[_i].encode(_dst);
                    }
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 18.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        // can return a temporary object (and of type other then T), so just
        // having "return &*iterator_;" doesn't work.
        // value_ is updated here and not in Advance() because Advance()
        // can advance iterator_ beyond the end of the range, and we cannot
        // detect that fact. The client code, on the other hand, is
        // responsible for not calling Current() on an out-of-range iterator.
        virtual const T* Current() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

                    _dst = _dst.deferred;
                    int _arrays = this.count;
                    _dst.enc_ndr_long(_arrays);
                    int _arrayi = _dst.index;
                    _dst.advance(4 * _arrays);
    
                    _dst = _dst.derive(_arrayi);
                    for ( int _i = 0; _i < _arrays; _i++ ) {
                        this.array[ _i ].encode(_dst);
                    }
                }
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 19.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

        // can return a temporary object (and of type other then T), so just
        // having "return &*iterator_;" doesn't work.
        // value_ is updated here and not in Advance() because Advance()
        // can advance iterator_ beyond the end of the range, and we cannot
        // detect that fact. The client code, on the other hand, is
        // responsible for not calling Current() on an out-of-range iterator.
        virtual const T* Current() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    	out := fields[:0]
    	for advance, i := 0, 0; i < len(fields); i += advance {
    		// One iteration per name.
    		// Find the sequence of fields with the name of this first field.
    		fi := fields[i]
    		name := fi.name
    		for advance = 1; i+advance < len(fields); advance++ {
    			fj := fields[i+advance]
    			if fj.name != name {
    				break
    			}
    		}
    		if advance == 1 { // Only one field with this name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  10. src/crypto/sha512/sha512block_ppc64x.s

    	SHA512ROUND0(V0, V1, V2, V3, V4, V5, V6, V7, V8, R_x020)
    	LXVD2X	(INP)(R_x000), VS42	// load v10 (=vs42) in advance
    	VSLDOI	$8, V8, V8, V9
    	SHA512ROUND0(V7, V0, V1, V2, V3, V4, V5, V6, V9, R_x030)
    	VPERMLE(V10,V10,LEMASK,V10)
    	SHA512ROUND0(V6, V7, V0, V1, V2, V3, V4, V5, V10, R_x040)
    	LXVD2X	(INP)(R_x010), VS44	// load v12 (=vs44) in advance
    	VSLDOI	$8, V10, V10, V11
    	SHA512ROUND0(V5, V6, V7, V0, V1, V2, V3, V4, V11, R_x050)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top