Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 4,111 for Tables (0.12 sec)

  1. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    		}
    
    	}
    	s += `}
    `
    	// write types for name+array tables.
    	fmt.Printf("%s",
    		`
    type blo struct {
    	inc   int64
    	cond  bool
    	succs [2]int64
    }
    type fun struct {
    	f      func(int64) int64
    	maxin  int64
    	blocks []blo
    }
    `)
    	// write table of function names and blo arrays.
    	fmt.Printf("%s", s)
    
    	// write interpreter and main/test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        The `initializers` represents the initialization functions. The function
        have no output and this function should be only called once.
    
        This is used, for example, to initialize hash tables stored in resources and
        accessed by resource name (rather than as resource handles or bound inputs
        which is how `global_tensor`s are referenced)
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    		for labels.reset(); !labels.done(); labels.next() {
    			label := labels.label()
    			if !ascii(label) {
    				a, err2 := encode(acePrefix, label)
    				if err == nil {
    					err = err2
    				}
    				label = a
    				labels.set(a)
    			}
    			n := len(label)
    			if p.verifyDNSLength && err == nil && (n == 0 || n > 63) {
    				err = &labelError{label, "A4"}
    			}
    		}
    	}
    	s = labels.result()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. src/runtime/vdso_linux.go

    	_DT_NULL     = 0          /* Marks end of dynamic section */
    	_DT_HASH     = 4          /* Dynamic symbol hash table */
    	_DT_STRTAB   = 5          /* Address of string table */
    	_DT_SYMTAB   = 6          /* Address of symbol table */
    	_DT_GNU_HASH = 0x6ffffef5 /* GNU-style dynamic symbol hash table */
    	_DT_VERSYM   = 0x6ffffff0
    	_DT_VERDEF   = 0x6ffffffc
    
    	_VER_FLG_BASE = 0x1 /* Version definition of file itself */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. migrator/migrator.go

    	stmt := &gorm.Statement{DB: m.DB}
    	if m.DB.Statement != nil {
    		stmt.Table = m.DB.Statement.Table
    		stmt.TableExpr = m.DB.Statement.TableExpr
    	}
    
    	if table, ok := value.(string); ok {
    		stmt.Table = table
    	} else if err := stmt.ParseWithSpecialTableName(value, stmt.Table); err != nil {
    		return err
    	}
    
    	return fc(stmt)
    }
    
    // DataTypeOf return field's db data type
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. src/log/slog/json_handler.go

    			i += size
    			start = i
    			continue
    		}
    		i += size
    	}
    	if start < len(s) {
    		str(s[start:])
    	}
    	return buf
    }
    
    const hex = "0123456789abcdef"
    
    // Copied from encoding/json/tables.go.
    //
    // safeSet holds the value true if the ASCII character with the given array
    // position can be represented inside a JSON string without any further
    // escaping.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. src/image/jpeg/writer_test.go

    		}
    		if zigzag[unzig[i]] != i {
    			t.Errorf("zigzag[unzig[%d]] == %d", i, zigzag[unzig[i]])
    		}
    	}
    }
    
    // unscaledQuantInNaturalOrder are the unscaled quantization tables in
    // natural (not zig-zag) order, as specified in section K.1.
    var unscaledQuantInNaturalOrder = [nQuantIndex][blockSize]byte{
    	// Luminance.
    	{
    		16, 11, 10, 16, 24, 40, 51, 61,
    		12, 12, 14, 19, 26, 58, 60, 55,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  8. pkg/kubelet/winstats/perfcounter_nodestats.go

    	// on Windows node for the following reasons:
    	// 1. GetPhysicallyInstalledSystemMemory retrieves the amount of physically
    	// installed RAM from the computer's SMBIOS firmware tables.
    	// https://msdn.microsoft.com/en-us/library/windows/desktop/cc300158(v=vs.85).aspx
    	// On some VM, it is unable to read data from SMBIOS and fails with ERROR_INVALID_DATA.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/sql-databases-peewee.md

    ## Main **FastAPI** app
    
    And now in the file `sql_app/main.py` let's integrate and use all the other parts we created before.
    
    ### Create the database tables
    
    In a very simplistic way create the database tables:
    
    ```Python hl_lines="9-11"
    {!../../../docs_src/sql_databases_peewee/sql_app/main.py!}
    ```
    
    ### Create a dependency
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/http2/hpack/encode.go

    type Encoder struct {
    	dynTab dynamicTable
    	// minSize is the minimum table size set by
    	// SetMaxDynamicTableSize after the previous Header Table Size
    	// Update.
    	minSize uint32
    	// maxSizeLimit is the maximum table size this encoder
    	// supports. This will protect the encoder from too large
    	// size.
    	maxSizeLimit uint32
    	// tableSizeUpdate indicates whether "Header Table Size
    	// Update" is required.
    	tableSizeUpdate bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top