Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for nextName (0.18 sec)

  1. src/runtime/panic.go

    			p.retpc = d.pc
    
    			// Unlink and free.
    			popDefer(gp)
    
    			return fn, true
    		}
    
    		if !p.nextFrame() {
    			return nil, false
    		}
    	}
    }
    
    // nextFrame finds the next frame that contains deferred calls, if any.
    func (p *_panic) nextFrame() (ok bool) {
    	if p.lr == 0 {
    		return false
    	}
    
    	gp := getg()
    	systemstack(func() {
    		var limit uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/go.go

    		return
    	}
    
    	if target.IsELF {
    		elfadddynsym(ldr, target, syms, s)
    	} else if target.HeadType == objabi.Hdarwin {
    		ldr.Errorf(s, "adddynsym: missed symbol (Extname=%s)", ldr.SymExtname(s))
    	} else if target.HeadType == objabi.Hwindows {
    		// already taken care of
    	} else {
    		ldr.Errorf(s, "adddynsym: unsupported binary format")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/xcoff.go

    	var buf bytes.Buffer
    
    	ldr := ctxt.loader
    	for s, nsym := loader.Sym(1), loader.Sym(ldr.NSym()); s < nsym; s++ {
    		if !ldr.AttrCgoExport(s) {
    			continue
    		}
    		extname := ldr.SymExtname(s)
    		if !strings.HasPrefix(extname, "._cgoexp_") {
    			continue
    		}
    		if ldr.IsFileLocal(s) {
    			continue // Only export non-static symbols
    		}
    
    		// Retrieve the name of the initial symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final FacetResponse facetResponse = data.getFacetResponse();
                final String queryId = data.getQueryId();
                final String highlightParams = data.getAppendHighlightParams();
                final boolean nextPage = data.isExistNextPage();
                final boolean prevPage = data.isExistPrevPage();
                final long startRecordNumber = data.getCurrentStartRecordNumber();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	} else {
    		l.dynimpvers[i] = value
    	}
    }
    
    // SymExtname returns the "extname" value for the specified
    // symbol.
    func (l *Loader) SymExtname(i Sym) string {
    	if s, ok := l.extname[i]; ok {
    		return s
    	}
    	return l.SymName(i)
    }
    
    // SetSymExtname sets the  "extname" attribute for a symbol.
    func (l *Loader) SetSymExtname(i Sym, value string) {
    	// reject bad symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/symbolbuilder.go

    func (sb *SymbolBuilder) OnList() bool           { return sb.l.AttrOnList(sb.symIdx) }
    func (sb *SymbolBuilder) External() bool         { return sb.l.AttrExternal(sb.symIdx) }
    func (sb *SymbolBuilder) Extname() string        { return sb.l.SymExtname(sb.symIdx) }
    func (sb *SymbolBuilder) CgoExportDynamic() bool { return sb.l.AttrCgoExportDynamic(sb.symIdx) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// especially in cases when the nextBookmarkTime method
    	// give us the zero value of type Time
    	// so buckedID can hold a negative value
    	nextTime, ok := w.nextBookmarkTime(t.clock.Now(), t.bookmarkFrequency)
    	if !ok {
    		return false
    	}
    	bucketID := int64(nextTime.Sub(t.createTime) / time.Second)
    	if bucketID < t.startBucketID {
    		bucketID = t.startBucketID
    	}
    	watchers := t.watchersBuckets[bucketID]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

          var streamErrorCode = ErrorCode.INTERNAL_ERROR
          var errorException: IOException? = null
          try {
            reader.readConnectionPreface(this)
            while (reader.nextFrame(false, this)) {
            }
            connectionErrorCode = ErrorCode.NO_ERROR
            streamErrorCode = ErrorCode.CANCEL
          } catch (e: IOException) {
            errorException = e
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(synStream.headerBlock).isEqualTo(headerEntries("b", "banana"))
        val requestData = peer.takeFrame()
        assertArrayEquals("c3po".toByteArray(), requestData.data)
        val nextFrame = peer.takeFrame()
        assertThat(nextFrame.headerBlock).isEqualTo(headerEntries("e", "elephant"))
      }
    
      @Test fun clientCreatesStreamAndServerRepliesWithFin() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    	for _, e := range f.getExtensionPoints(&m) {
    		plugins := reflect.ValueOf(e.slicePtr).Elem()
    		extName := plugins.Type().Elem().Name()
    		var cfgs []config.Plugin
    		for i := 0; i < plugins.Len(); i++ {
    			name := plugins.Index(i).Interface().(framework.Plugin).Name()
    			p := config.Plugin{Name: name}
    			if extName == "ScorePlugin" {
    				// Weights apply only to score plugins.
    				p.Weight = int32(f.scorePluginWeight[name])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top