Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 343 for op_set (0.06 sec)

  1. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <div class="offset-sm-2 col-sm-10">
                                            <button type="submit" class="btn btn-primary" id="submit"
                                                    name="search"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 16K bytes
    - Viewed (0)
  2. finisher_api.go

    	)
    
    	// user specified offset or limit
    	var totalSize int
    	if c, ok := tx.Statement.Clauses["LIMIT"]; ok {
    		if limit, ok := c.Expression.(clause.Limit); ok {
    			if limit.Limit != nil {
    				totalSize = *limit.Limit
    			}
    
    			if totalSize > 0 && batchSize > totalSize {
    				batchSize = totalSize
    			}
    
    			// reset to offset to 0 in next batch
    			tx = tx.Offset(-1).Session(&Session{})
    		}
    	}
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Sat Sep 14 12:58:29 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. cmd/storage-rest-server.go

    	volume := r.Form.Get(storageRESTVolume)
    	filePath := r.Form.Get(storageRESTFilePath)
    	offset, err := strconv.Atoi(r.Form.Get(storageRESTOffset))
    	if err != nil {
    		s.writeErrorResponse(w, err)
    		return
    	}
    	length, err := strconv.Atoi(r.Form.Get(storageRESTLength))
    	if err != nil {
    		s.writeErrorResponse(w, err)
    		return
    	}
    	if offset < 0 || length < 0 {
    		s.writeErrorResponse(w, errInvalidArgument)
    		return
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 14 17:11:51 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. src/archive/tar/reader_test.go

    			"23 GNU.sparse.offset=1\n25 GNU.sparse.numbytes=2\n" +
    			"23 GNU.sparse.offset=3\n25 GNU.sparse.numbytes=4\n",
    			map[string]string{paxGNUSparseSize: "10", paxGNUSparseNumBlocks: "2", paxGNUSparseMap: "1,2,3,4"}, true},
    		{"22 GNU.sparse.size=10\n26 GNU.sparse.numblocks=1\n" +
    			"25 GNU.sparse.numbytes=2\n23 GNU.sparse.offset=1\n",
    			nil, false},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/adminlte.min.js.map

    'inherit',\n        right: 0\n      })\n    } else {\n      $element.css({\n        left: 0,\n        right: 'inherit'\n      })\n    }\n\n    const offset = $element.offset()\n    const width = $element.width()\n    const visiblePart = $(window).width() - offset.left\n\n    if (offset.left < 0) {\n      $element.css({\n        left: 'inherit',\n        right: offset.left - 5\n      })\n    } else if (visiblePart < width) {\n      $element.css({\n        left: 'inherit',\n        right: 0\n      })\n    }\n...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 132.4K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        }
    
        public Ansi a(char value) {
            flushAttributes();
            builder.append(value);
            return this;
        }
    
        public Ansi a(char[] value, int offset, int len) {
            flushAttributes();
            builder.append(value, offset, len);
            return this;
        }
    
        public Ansi a(char[] value) {
            flushAttributes();
            builder.append(value);
            return this;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp

                                        </div>
                                    </div>
                                    <div class="form-group row">
                                        <div class="offset-sm-2 col-sm-10">
                                            <button type="submit" class="btn btn-primary" id="submit"
                                                    name="search"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    # Disable clang extension that rejects type definitions within offsetof. 
    # This was added in clang-16 by https://reviews.llvm.org/D133574.
    # Can be removed once upb is updated, since a type definition is used within
    # offset of in the current version of ubp.
    # See https://github.com/protocolbuffers/upb/blob/9effcbcb27f0a665f9f345030188c0b291e32482/upb/upb.c#L183.
    build --copt=-Wno-gnu-offsetof-extensions
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Jul 12 20:16:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/BaseEncoding.java

              }
            }
            int minOffset = alphabet.bytesPerChunk * 8 - charsProcessed * alphabet.bitsPerChar;
            for (int offset = (alphabet.bytesPerChunk - 1) * 8; offset >= minOffset; offset -= 8) {
              target[bytesWritten++] = (byte) ((chunk >>> offset) & 0xFF);
            }
          }
          return bytesWritten;
        }
    
        @Override
        @J2ktIncompatible
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NameServicePacket.java

            int start = dstIndex;
            if ( this.recordName == this.questionName ) {
                dst[ dstIndex++ ] = (byte) 0xC0; // label string pointer to
                dst[ dstIndex++ ] = (byte) 0x0C; // questionName (offset 12)
            }
            else {
                dstIndex += this.recordName.writeWireFormat(dst, dstIndex);
            }
            writeInt2(this.recordType, dst, dstIndex);
            dstIndex += 2;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
Back to top