Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 826 for raws (0.04 sec)

  1. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_edit.jsp

                                            <la:textarea styleId="urlExpr" property="urlExpr" styleClass="form-control"
                                                         rows="5"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 5K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/StyledTable.java

     */
    public class StyledTable {
        private final String indent;
        private final List<String> headers;
        private final List<Row> rows;
    
        public StyledTable(String indent, List<String> headers, List<Row> rows) {
            for (int i = 0; i < rows.size(); i++) {
                if (rows.get(i).text.size() != headers.size()) {
                    throw new IllegalArgumentException("Header and row " + i + " must have the same number of columns");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 21:03:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. api/go1.8.txt

    pkg database/sql, method (*DB) QueryContext(context.Context, string, ...interface{}) (*Rows, error)
    pkg database/sql, method (*DB) QueryRowContext(context.Context, string, ...interface{}) *Row
    pkg database/sql, method (*Rows) ColumnTypes() ([]*ColumnType, error)
    pkg database/sql, method (*Rows) NextResultSet() bool
    pkg database/sql, method (*Stmt) ExecContext(context.Context, ...interface{}) (Result, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  4. docs/sts/client-grants.md

    ### Response Elements
    
    XML response for this API is similar to [AWS STS AssumeRoleWithWebIdentity](https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRoleWithWebIdentity.html#API_AssumeRoleWithWebIdentity_ResponseElements)
    
    ### Errors
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  5. src/database/sql/driver/driver.go

    //	[]byte
    //	string
    //	time.Time
    //
    // If the driver supports cursors, a returned Value may also implement the [Rows] interface
    // in this package. This is used, for example, when a user selects a cursor
    // such as "select cursor(select * from my_table) from dual". If the [Rows]
    // from the select is closed, the cursor [Rows] will also be closed.
    type Value any
    
    // NamedValue holds both the value name and value.
    type NamedValue struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultRedrawableLabel.java

        public void scrollBy(int rows) {
            writePos.row -= rows;
            absolutePositionRow += rows;
        }
    
        // According to absolute positioning
        public void scrollUpBy(int rows) {
            scrollBy(-rows);
        }
    
        // According to absolute positioning
        public void scrollDownBy(int rows) {
            scrollBy(rows);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/software/resources-s3/build.gradle.kts

        api(project(":resources-http"))
    
        api(libs.awsS3Core)
        api(libs.awsS3S3)
        api(libs.awsS3Kms) {
            because("Loaded by the AWS libraries with reflection when present")
        }
        api(libs.awsS3Sts) {
            because("Loaded by the AWS libraries with reflection when present: https://github.com/gradle/gradle/issues/15332")
        }
        api(libs.guava)
    
        implementation(projects.baseServices)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/MultiLineBuildProgressArea.java

        }
    
        // According to absolute positioning
        private void scrollBy(int rows) {
            statusAreaPos.row -= rows;
            for (DefaultRedrawableLabel label : entries) {
                label.scrollBy(rows);
            }
        }
    
        // According to absolute positioning
        public void scrollUpBy(int rows) {
            scrollBy(-rows);
        }
    
        // According to absolute positioning
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    					}
    				}
    			}
    			if got, expected := len(tbl.Rows), 1; got != expected {
    				t.Errorf("expected %d rows, got %d", expected, got)
    			} else if got, expected := len(tbl.Rows[0].Cells), expectColumnNum; got != expected {
    				t.Errorf("expected %d cells, got %d", expected, got)
    			} else {
    				if got, expected := tbl.Rows[0].Cells[0], "foo"; got != expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/table.go

    			if info, ok := genericapirequest.RequestInfoFrom(ctx); ok {
    				resource = schema.GroupResource{Group: info.APIGroup, Resource: info.Resource}
    			}
    			return errNotAcceptable{resource: resource}
    		}
    		table.Rows = append(table.Rows, metav1.TableRow{
    			Cells:  []interface{}{m.GetName(), m.GetCreationTimestamp().Time.UTC().Format(time.RFC3339)},
    			Object: runtime.RawExtension{Object: obj},
    		})
    		return nil
    	}
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 17:25:12 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top