Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 277 for table_1 (0.21 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    	}
    
    	// Parameter "obj" is a table from server; print it.
    	// display tables following the rules of options
    	if table, ok := obj.(*metav1.Table); ok {
    		// Do not print headers if this table has no column definitions, or they are the same as the last ones we printed
    		localOptions := h.options
    		if h.printedHeaders && (len(table.ColumnDefinitions) == 0 || reflect.DeepEqual(table.ColumnDefinitions, h.lastColumns)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  2. src/debug/dwarf/line_test.go

    		}
    
    		// Check file table.
    		if !ignore {
    			if !compareFiles(files[0], lr.Files()) {
    				t.Log("File tables do not match. Got:")
    				dumpFiles(t, lr.Files())
    				t.Log("Want:")
    				dumpFiles(t, files[0])
    				t.Fail()
    			}
    			files = files[1:]
    		}
    	}
    
    	// Compare line tables.
    	if !compareLines(t, got, want) {
    		t.Log("Line tables do not match. Got:")
    		dumpLines(t, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. statement.go

    		if tables := strings.Split(stmt.Schema.Table, "."); len(tables) == 2 {
    			stmt.TableExpr = &clause.Expr{SQL: stmt.Quote(stmt.Schema.Table)}
    			stmt.Table = tables[1]
    			return
    		}
    
    		stmt.Table = stmt.Schema.Table
    	}
    	return err
    }
    
    func (stmt *Statement) clone() *Statement {
    	newStmt := &Statement{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_fr.properties

    labels.menu_system	=	Système
    labels.menu_wizard	=	Assistant
    labels.menu_crawl_config	=	Général
    labels.menu_scheduler_config	=	Planificateur
    labels.menu_dashboard_config	=	Tableau de bord
    labels.menu_design	=	Conception de pages
    labels.menu_dict	=	Dictionnaire
    labels.menu_data	=	Restauration de sauvegarde
    labels.menu_crawl	=	Crawler
    labels.menu_web	=	Web
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf_defs.go

    )
    
    // Table 28
    const (
    	DW_ACCESS_public    = 0x01
    	DW_ACCESS_protected = 0x02
    	DW_ACCESS_private   = 0x03
    )
    
    // Table 29
    const (
    	DW_VIS_local     = 0x01
    	DW_VIS_exported  = 0x02
    	DW_VIS_qualified = 0x03
    )
    
    // Table 30
    const (
    	DW_VIRTUALITY_none         = 0x00
    	DW_VIRTUALITY_virtual      = 0x01
    	DW_VIRTUALITY_pure_virtual = 0x02
    )
    
    // Table 31
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/sql-databases.md

    An ORM has tools to convert ("*map*") between *objects* in code and database tables ("*relations*").
    
    With an ORM, you normally create a class that represents a table in a SQL database, each attribute of the class represents a column, with a name and a type.
    
    For example a class `Pet` could represent a SQL table `pets`.
    
    And each *instance* object of that class represents a row in the database.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/archive/tar/format.go

    //	sparse files      |     no |       yes |       yes
    //
    // The table's upper portion shows the [Header] fields, where each format reports
    // the maximum number of bytes allowed for each string field and
    // the integer type used to store each numeric field
    // (where timestamps are stored as the number of seconds since the Unix epoch).
    //
    // The table's lower portion shows specialized features of each format,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/debug/dwarf/line.go

    }
    
    // Files returns the file name table of this compilation unit as of
    // the current position in the line table. The file name table may be
    // referenced from attributes in this compilation unit such as
    // [AttrDeclFile].
    //
    // Entry 0 is always nil, since file index 0 represents "no file".
    //
    // The file name table of a compilation unit is not fixed. Files
    // returns the file table as of the current position in the line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ArrayTable.java

        eraseAll();
      }
    
      private ArrayTable(Table<R, C, ? extends @Nullable V> table) {
        this(table.rowKeySet(), table.columnKeySet());
        putAll(table);
      }
    
      private ArrayTable(ArrayTable<R, C, V> table) {
        rowList = table.rowList;
        columnList = table.columnList;
        rowKeyToIndex = table.rowKeyToIndex;
        columnKeyToIndex = table.columnKeyToIndex;
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    }
    
    table LessOptions {
    }
    
    table LessEqualOptions {
    }
    
    table NegOptions {
    }
    
    table SelectOptions {
    }
    
    table SliceOptions {
    }
    
    table TransposeConvOptions {
      padding:Padding;
      stride_w:int;
      stride_h:int;
    }
    
    table ExpandDimsOptions {
    }
    
    table SparseToDenseOptions {
      validate_indices:bool;
    }
    
    table EqualOptions {
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
Back to top