Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for index (0.09 sec)

  1. src/debug/elf/elf.go

    	R_386_TLS_GD        R_386 = 18 /* 32 bit offset to GOT (index,off) pair */
    	R_386_TLS_LDM       R_386 = 19 /* 32 bit offset to GOT (index,zero) pair */
    	R_386_16            R_386 = 20
    	R_386_PC16          R_386 = 21
    	R_386_8             R_386 = 22
    	R_386_PC8           R_386 = 23
    	R_386_TLS_GD_32     R_386 = 24 /* 32 bit offset to GOT (index,off) pair */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	case obj.TYPE_NONE:
    		return C_NONE
    
    	case obj.TYPE_REG:
    		return c.aclassreg(a.Reg)
    
    	case obj.TYPE_MEM:
    		if a.Index != 0 {
    			if a.Name != obj.NAME_NONE || a.Offset != 0 {
    				c.ctxt.Logf("Unexpected Instruction operand index %d offset %d class %d \n", a.Index, a.Offset, a.Class)
    
    			}
    			return C_XOREG
    		}
    		switch a.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    			return C_ADDR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	}
    	type row struct {
    		age  int
    		name string
    	}
    	got := []row{}
    	index := 0
    	for rows.Next() {
    		if index == 2 {
    			cancel()
    			waitForRowsClose(t, rows)
    		}
    		var r row
    		err = rows.Scan(&r.age, &r.name)
    		if err != nil {
    			if index == 2 {
    				break
    			}
    			t.Fatalf("Scan: %v", err)
    		}
    		if index == 2 && err != context.Canceled {
    			t.Fatalf("Scan: %v; want context.Canceled", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // and the latter will match any other path in the "/images/" subtree.
    //
    // As another example, consider the patterns "GET /" and "/index.html":
    // both match a GET request for "/index.html", but the former pattern
    // matches all other GET and HEAD requests, while the latter matches any
    // request for "/index.html" that uses a different method.
    // The patterns conflict.
    //
    // # Trailing-slash redirection
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // All entries are 4 bytes. The index of the identifier (divided by 4) is the language tag.
    // For 2-byte language identifiers, the two successive bytes have the following meaning:
    //   - if the first letter of the 2- and 3-letter ISO codes are the same:
    //     the second and third letter of the 3-letter ISO code.
    //   - otherwise: a 0 and a by 2 bits right-shifted index into altLangISO3.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    // If there isn't one, findInternal returns ok=false.
    // Otherwise, findInternal returns ok=true and the index of the "internal".
    func findInternal(path string) (index int, ok bool) {
    	// Three cases, depending on internal at start/end of string or not.
    	// The order matters: we must return the index of the final element,
    	// because the final one produces the most restrictive requirement
    	// on the importer.
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	AdapterName         [MAX_ADAPTER_NAME_LENGTH + 4]byte
    	Description         [MAX_ADAPTER_DESCRIPTION_LENGTH + 4]byte
    	AddressLength       uint32
    	Address             [MAX_ADAPTER_ADDRESS_LENGTH]byte
    	Index               uint32
    	Type                uint32
    	DhcpEnabled         uint32
    	CurrentIpAddress    *IpAddrString
    	IpAddressList       IpAddrString
    	GatewayList         IpAddrString
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    			// No ellipses pattern. Anonymize host name from every pool arg
    			pools := strings.Fields(poolsArgs)
    			anonPools = make([]string, len(pools))
    			for index, arg := range pools {
    				anonPools[index] = anonAddr(arg)
    			}
    			return cmdLineWithoutPools + strings.Join(anonPools, " ")
    		}
    
    		// Ellipses pattern in pool args. Regex groups:
    		// 1 - server prefix
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation_test.go

    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name: "webhook.k8s.io",
    			ClientConfig: admissionregistration.WebhookClientConfig{
    				URL: strPtr("arg#backwards=thisis?html.index/port:host//:https"),
    			},
    		},
    		}, true),
    		expectedError: `host must be specified`,
    	}, {
    		name: "path must start with slash",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	// allocation to store the index. But generally the set will be small and
    	// under a scannable-threshold. As an optimization, we could permit the *int
    	// to be nil when the set is small and should be scanned. This works even if
    	// the set grows over the threshold with delete handles outstanding because
    	// an element can only move to a lower index. So if it starts with a nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top