Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for sectnum (0.3 sec)

  1. src/cmd/link/internal/loadmacho/ldmacho.go

    			l.SetAttrDuplicateOK(s, true)
    		}
    		machsym.sym = s
    		if machsym.sectnum == 0 { // undefined
    			continue
    		}
    		if uint32(machsym.sectnum) > c.seg.nsect {
    			return errorf("reference to invalid section %d", machsym.sectnum)
    		}
    
    		sect := &c.seg.sect[machsym.sectnum-1]
    		bld := l.MakeSymbolUpdater(s)
    		outer := sect.sym
    		if outer == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  2. src/internal/xcoff/file.go

    	// Read relocations
    	// Only for .data or .text section
    	for sectNum, sect := range f.Sections {
    		if sect.Type != STYP_TEXT && sect.Type != STYP_DATA {
    			continue
    		}
    		if sect.Relptr == 0 {
    			continue
    		}
    		c := saferio.SliceCap[Reloc](uint64(sect.Nreloc))
    		if c < 0 {
    			return nil, fmt.Errorf("too many relocs (%d) for section %d", sect.Nreloc, sectNum)
    		}
    		sect.Relocs = make([]Reloc, 0, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadpe/ldpe.go

    				continue
    			}
    			outerName := l.SymName(l.OuterSym(s))
    			sectName := l.SymName(state.sectsyms[sect])
    			return nil, fmt.Errorf("%s: duplicate symbol reference: %s in both %s and %s", pn, l.SymName(s), outerName, sectName)
    		}
    
    		bld = makeUpdater(l, bld, s)
    		sectsym := state.sectsyms[sect]
    		bld.SetType(l.SymType(sectsym))
    		l.AddInteriorSym(sectsym, s)
    		bld.SetValue(int64(pesym.Value))
    		bld.SetSize(4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. src/debug/pe/symbols_test.go

    			name:   ".rdata$.refptr.__native_startup_lock",
    			ok:     true,
    			auxstr: "{Size:8 NumRelocs:1 NumLineNumbers:0 Checksum:0 SecNum:16 Selection:2 _:[0 0 0]}",
    		},
    		81: testpoint{
    			name:   ".debug_line",
    			ok:     true,
    			auxstr: "{Size:994 NumRelocs:1 NumLineNumbers:0 Checksum:1624223678 SecNum:32 Selection:0 _:[0 0 0]}",
    		},
    		155: testpoint{
    			name: ".file",
    			ok:   false,
    			err:  "incorrect symbol storage class",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            assertEquals(1, response.getNum());
            assertEquals("全文 検索", response.getWords().get(0));
    
            response = suggester.suggest().addKind("query").execute().getResponse();
            assertEquals(1, response.getNum());
    
            SuggestResponse response2 = suggester.suggest().setSuggestDetail(true).execute().getResponse();
            assertEquals(2, response2.getNum());
        }
    
        @Test
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. src/encoding/csv/reader_test.go

    			}
    
    			// Check field and error positions.
    			r, _, _, _ = newReader(tt)
    			for recNum := 0; ; recNum++ {
    				rec, err := r.Read()
    				var wantErr error
    				if recNum < len(tt.Errors) && tt.Errors[recNum] != nil {
    					wantErr = errorWithPosition(tt.Errors[recNum], recNum, positions, errPositions)
    				} else if recNum >= len(tt.Output) {
    					wantErr = io.EOF
    				}
    				if !reflect.DeepEqual(err, wantErr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  7. src/net/http/httptrace/trace_test.go

    		t.Errorf("got %q; want %q", got, want)
    	}
    }
    
    func TestCompose(t *testing.T) {
    	var buf strings.Builder
    	var testNum int
    
    	connectStart := func(b byte) func(network, addr string) {
    		return func(network, addr string) {
    			if addr != "addr" {
    				t.Errorf(`%d. args for %q case = %q, %q; want addr of "addr"`, testNum, b, network, addr)
    			}
    			buf.WriteByte(b)
    		}
    	}
    
    	tests := [...]struct {
    		trace, old *ClientTrace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. src/crypto/internal/hpke/hpke_test.go

    					seqNum, err := strconv.Atoi(enc["sequence number"])
    					if err != nil {
    						t.Fatal(err)
    					}
    					context.seqNum = uint128{lo: uint64(seqNum)}
    					expectedNonce := mustDecodeHex(t, enc["nonce"])
    					// We can't call nextNonce, because it increments the sequence number,
    					// so just compute it directly.
    					computedNonce := context.seqNum.bytes()[16-context.aead.NonceSize():]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonExpirationStrategyTest.groovy

            info.setState(state)
            registry.store(info)
            return info
        }
    
        private static Address createAddress(int i) {
            new Address() {
                int getNum() { i }
                String getDisplayName() { getNum() }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. istioctl/pkg/wait/wait.go

    				targetSchema.Group(), targetSchema.Version(), targetSchema.Kind(),
    				nameflag, namespace)
    			for {
    				// run the check here as soon as we start
    				// because tickers won't run immediately
    				present, notpresent, sdcnum, err := poll(cliCtx, cmd, generations, targetResource, proxyFlag, opts)
    				printVerbosef(cmd, "Received poll result: %d/%d", present, present+notpresent)
    				if err != nil {
    					return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
Back to top