Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 324 for raws (0.04 sec)

  1. 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)
  2. 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)
  3. internal/s3select/json/preader.go

    )
    
    // PReader - JSON record reader for S3Select.
    // Operates concurrently on line-delimited JSON.
    type PReader struct {
    	args        *ReaderArgs
    	readCloser  io.ReadCloser   // raw input
    	buf         *bufio.Reader   // input to the splitter
    	current     []jstream.KVS   // current block of results to be returned
    	recordsRead int             // number of records read in current slice
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. src/database/sql/example_service_test.go

    		defer cancel()
    
    		var names []string
    		rows, err := db.QueryContext(ctx, "select p.name from people as p where p.active = true;")
    		if err != nil {
    			http.Error(w, err.Error(), http.StatusInternalServerError)
    			return
    		}
    
    		for rows.Next() {
    			var name string
    			err = rows.Scan(&name)
    			if err != nil {
    				break
    			}
    			names = append(names, name)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 20:21:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. internal/arn/arn.go

    //
    // In this implementation, account-id is empty.
    //
    // Reference: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
    
    const (
    	arnPrefixArn        = "arn"
    	arnPartitionMinio   = "minio"
    	arnServiceIAM       = "iam"
    	arnResourceTypeRole = "role"
    )
    
    // ARN - representation of resources based on AWS ARNs.
    type ARN struct {
    	Partition    string
    	Service      string
    	Region       string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/application-build.out.template

    ${extraKotlinCheckTask.raw}${extraCompileJava.raw}> Task :${subprojectName.raw}:compile${language.raw}
    > Task :${subprojectName.raw}:processResources NO-SOURCE
    > Task :${subprojectName.raw}:classes${classesUpToDate.raw}
    > Task :${subprojectName.raw}:jar
    > Task :${subprojectName.raw}:startScripts
    > Task :${subprojectName.raw}:distTar
    > Task :${subprojectName.raw}:distZip
    > Task :${subprojectName.raw}:assemble
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 821 bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym_edit.jsp

                                        <div class="col-sm-9">
                                            <la:errors property="inputs"/>
                                            <la:textarea styleId="inputs" property="inputs" rows="5"
                                                         styleClass="form-control"/>
                                        </div>
                                    </div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/library-build.out.template

    ${extraKotlinCheckTask.raw}${extraCompileJava.raw}> Task :${subprojectName.raw}:compile${language.raw}
    > Task :${subprojectName.raw}:processResources NO-SOURCE
    > Task :${subprojectName.raw}:classes${classesUpToDate.raw}
    > Task :${subprojectName.raw}:jar
    > Task :${subprojectName.raw}:assemble
    ${extraCompileTestJava.raw}> Task :${subprojectName.raw}:compileTest${language.raw}
    > Task :${subprojectName.raw}:processTestResources NO-SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 702 bytes
    - Viewed (0)
  9. interfaces.go

    type Valuer interface {
    	GormValue(context.Context, *DB) clause.Expr
    }
    
    // GetDBConnector SQL db connector
    type GetDBConnector interface {
    	GetDBConn() (*sql.DB, error)
    }
    
    // Rows rows interface
    type Rows interface {
    	Columns() ([]string, error)
    	ColumnTypes() ([]*sql.ColumnType, error)
    	Next() bool
    	Scan(dest ...interface{}) error
    	Err() error
    	Close() error
    }
    
    type ErrorTranslator interface {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Aug 19 13:33:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/table/writer.go

    		cells = append(cells, NewCell(name))
    	}
    	c.header = Row{Cells: cells}
    }
    
    func (c *ColoredTableWriter) AddRow(obj interface{}) {
    	c.rows = append(c.rows, c.addRowFunc(obj))
    }
    
    func (c *ColoredTableWriter) Flush() {
    	output := c.getTableOutput(c.rows)
    	if len(output) == 0 {
    		return
    	}
    	sep := getMaxWidths(output)
    	for _, row := range output {
    		for i, col := range row {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 08 04:41:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top