Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 277 for table_1 (0.14 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go gen_common.go -output tables.go
    
    package language // import "golang.org/x/text/internal/language"
    
    // TODO: Remove above NOTE after:
    // - verifying that tables are dropped correctly (most notably matcher tables).
    
    import (
    	"errors"
    	"fmt"
    	"strings"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/debug/gosym/symtab.go

    	// In Go 1.2, Paths is nil.
    	// Use the keys of Table.Files to obtain a list of source files.
    	Paths []Sym // meta
    }
    
    /*
     * Symbol tables
     */
    
    // Table represents a Go symbol table. It stores all of the
    // symbols decoded from the program and provides methods to translate
    // between symbols, names, and addresses.
    type Table struct {
    	Syms  []Sym // nil for Go 1.3 and later binaries
    	Funcs []Func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/StandardTable.java

     * since an iteration across all row keys occurs.
     *
     * <p>Note that this implementation is not synchronized. If multiple threads access this table
     * concurrently and one of the threads modifies the table, it must be synchronized externally.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  4. src/image/gif/reader_test.go

    const (
    	headerStr = "GIF89a" +
    		"\x02\x00\x01\x00" + // width=2, height=1
    		"\x80\x00\x00" // headerFields=(a color table of 2 pixels), backgroundIndex, aspect
    	paletteStr = "\x10\x20\x30\x40\x50\x60" // the color table, also known as a palette
    	trailerStr = "\x3b"
    )
    
    // lzw.NewReader wants an io.ByteReader, this ensures we're compatible.
    var _ io.ByteReader = (*blockReader)(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. schema/relationship_test.go

    		JoinTable: JoinTable{Name: "user_profiles", Table: "user_profiles"},
    		References: []Reference{
    			{"Refer", "User", "UserReferID", "user_profiles", "", true},
    			{"UserRefer", "Profile", "ProfileRefer", "user_profiles", "", false},
    		},
    	}, Relation{
    		Name: "Profiles2", Type: schema.Many2Many, Schema: "User", FieldSchema: "Profile",
    		JoinTable: JoinTable{Name: "user_profiles2", Table: "user_profiles2"},
    		References: []Reference{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/language.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go -output tables.go
    
    package language
    
    // TODO: Remove above NOTE after:
    // - verifying that tables are dropped correctly (most notably matcher tables).
    
    import (
    	"strings"
    
    	"golang.org/x/text/internal/language"
    	"golang.org/x/text/internal/language/compact"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pcln.go

    	if ctxt.Target.IsRISCV64() {
    		// Avoid adding local symbols to the pcln table - RISC-V
    		// linking generates a very large number of these, particularly
    		// for HI20 symbols (which we need to load in order to be able
    		// to resolve relocations). Unnecessarily including all of
    		// these symbols quickly blows out the size of the pcln table
    		// and overflows hash buckets.
    		symName := ctxt.loader.SymName(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. src/runtime/pprof/proto.go

    	tagFunction_ID         = 1 // uint64
    	tagFunction_Name       = 2 // int64 (string table index)
    	tagFunction_SystemName = 3 // int64 (string table index)
    	tagFunction_Filename   = 4 // int64 (string table index)
    	tagFunction_StartLine  = 5 // int64
    )
    
    // stringIndex adds s to the string table if not already present
    // and returns the index of s in the string table.
    func (b *profileBuilder) stringIndex(s string) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    		}
    		return DS
    	}
    
    	// Add implicit arguments not present in the tables.
    	// Normally we shy away from making implicit arguments explicit,
    	// following the Intel manuals, but adding the arguments seems
    	// the best way to express the effect of the segment override prefixes.
    	// TODO(rsc): Perhaps add these to the tables and
    	// create bytecode instructions for them.
    	usedAddrSize := false
    	switch inst.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/user/admin_user_details.jsp

                                        <la:errors/>
                                    </div>
                                        <%-- Form Fields --%>
                                    <table class="table table-bordered">
                                        <tbody>
                                        <tr>
                                            <th style="width: 25%"><la:message key="labels.user_name"/></th>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 17.8K bytes
    - Viewed (0)
Back to top