Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 225 for run_id (0.1 sec)

  1. src/cmd/internal/goobj/funcinfo.go

    type CUFileIndex uint32
    
    // FuncInfo is serialized as a symbol (aux symbol). The symbol data is
    // the binary encoding of the struct below.
    type FuncInfo struct {
    	Args      uint32
    	Locals    uint32
    	FuncID    abi.FuncID
    	FuncFlag  abi.FuncFlag
    	StartLine int32
    	File      []CUFileIndex
    	InlTree   []InlTreeNode
    }
    
    func (a *FuncInfo) Write(w *bytes.Buffer) {
    	writeUint8 := func(x uint8) {
    		w.WriteByte(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java

         */
        @Override
        public String getRuleId() {
            return ruleId;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.AccessResult#setRuleId(java.lang.String)
         */
        @Override
        public void setRuleId(final String ruleId) {
            this.ruleId = ruleId;
        }
    
        /*
         * (non-Javadoc)
         *
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/internal/abi/symtab.go

    	FuncFlagAsm
    )
    
    // A FuncID identifies particular functions that need to be treated
    // specially by the runtime.
    // Note that in some situations involving plugins, there may be multiple
    // copies of a particular special runtime function.
    type FuncID uint8
    
    const (
    	// If you add a FuncID, you probably also want to add an entry to the map in
    	// ../../cmd/internal/objabi/funcid.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java

        }
    
        public void setParentUrl(final String parentUrl) {
            this.parentUrl = parentUrl;
        }
    
        public String getRuleId() {
            return ruleId;
        }
    
        public void setRuleId(final String ruleId) {
            this.ruleId = ruleId;
        }
    
        public String getSessionId() {
            return sessionId;
        }
    
        public void setSessionId(final String sessionId) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. fess-crawler-es/src/main/resources/mapping/data.json

              "data": {
                "type": "binary"
              }
            }
          },
          "contentLength": {
            "type": "long"
          },
          "lastModified": {
            "type": "long"
          },
          "ruleId": {
            "type": "keyword"
          },
          "httpStatusCode": {
            "type": "integer"
          },
          "status": {
            "type": "integer"
          }
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Feb 24 02:06:09 UTC 2019
    - 963 bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pcln.go

    		}
    		off = sb.SetUint32(ctxt.Arch, off, cuIdx)
    
    		// startLine int32
    		off = sb.SetUint32(ctxt.Arch, off, uint32(startLine))
    
    		// funcID uint8
    		var funcID abi.FuncID
    		if fi.Valid() {
    			funcID = fi.FuncID()
    		}
    		off = sb.SetUint8(ctxt.Arch, off, uint8(funcID))
    
    		// flag uint8
    		var flag abi.FuncFlag
    		if fi.Valid() {
    			flag = fi.FuncFlag()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/rule.xml

    		</postConstruct>
    		<postConstruct name="addRule">
    			<arg>fileRule</arg>
    		</postConstruct>
    	</component>
    
    	<component name="sitemapsRule" class="org.codelibs.fess.crawler.rule.impl.SitemapsRule">
    		<property name="ruleId">"sitemapsRule"</property>
    		<property name="responseProcessor">
    			<component
    				class="org.codelibs.fess.crawler.processor.impl.SitemapsResponseProcessor">
    			</component>
    		</property>
    		<postConstruct name="addRule">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/SessionReuseTest.kt

        // javax.net.ssl.SSLHandshakeException: No new session is allowed and no existing
        // session can be resumed
        //
        // Report https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8264944
        // Sessions improvement https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8245576
        if (!platform.isJdk9() && !platform.isOpenJsse() && !platform.isJdk8Alpn()) {
          reuseSession = true
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    		throw("traceback stuck")
    	}
    
    	injectedCall := f.funcID == abi.FuncID_sigpanic || f.funcID == abi.FuncID_asyncPreempt || f.funcID == abi.FuncID_debugCallV2
    	if injectedCall {
    		u.flags |= unwindTrap
    	} else {
    		u.flags &^= unwindTrap
    	}
    
    	// Unwind to next frame.
    	u.calleeFuncID = f.funcID
    	frame.fn = flr
    	frame.pc = frame.lr
    	frame.lr = 0
    	frame.sp = frame.fp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. docs/tr/docs/benchmarks.md

    # Kıyaslamalar
    
    Bağımsız TechEmpower kıyaslamaları gösteriyor ki <a href="https://www.techempower.com/benchmarks/#section=test&runid=7464e520-0dc2-473d-bd34-dbdfd7e85911&hw=ph&test=query&l=zijzen-7" class="external-link" target="_blank">en hızlı Python frameworklerinden birisi</a> olan Uvicorn ile çalıştırılan **FastAPI** uygulamaları, sadece Starlette ve Uvicorn'dan daha düşük sıralamada (FastAPI bu frameworklerin üzerine kurulu) yer alıyor. (*)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 14:10:30 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top