Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1571 - 1580 of 1,768 for inde (0.06 seconds)

  1. src/archive/zip/reader.go

    	return p
    }
    
    func (r *Reader) initFileList() {
    	r.fileListOnce.Do(func() {
    		// Preallocate the minimum size of the index.
    		// We may also synthesize additional directory entries.
    		r.fileList = make([]fileListEntry, 0, len(r.File))
    		// files and knownDirs map from a file/directory name
    		// to an index into the r.fileList entry that we are
    		// building. They are used to mark duplicate entries.
    		files := make(map[string]int)
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 15 18:35:56 GMT 2026
    - 28.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

        /**
         * Shows the main elevate word management page.
         *
         * @return HTML response for the elevate word list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Lists elevate words with pagination support.
         *
         * @param pageNumber optional page number for pagination
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb/SID.java

        CIFSContext origin_ctx = null;
    
        /**
         * Construct a SID from it's binary representation.
         *
         *
         * @param src the byte array containing the SID
         * @param si the starting index in the array
         */
        public SID(final byte[] src, int si) {
            this.revision = src[si];
            si++;
            this.sub_authority_count = src[si++];
            this.identifier_authority = new byte[6];
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 16K bytes
    - Click Count (0)
  4. docs/es/docs/_llm-test.md

    //// tab | Prueba
    
    El texto del enlace debe traducirse, la dirección del enlace debe permanecer sin cambios:
    
    * [Enlace al encabezado de arriba](#code-snippets)
    * [Enlace interno](index.md#installation)
    * [Enlace externo](https://sqlmodel.tiangolo.com/)
    * [Enlace a un estilo](https://fastapi.tiangolo.com/css/styles.css)
    * [Enlace a un script](https://fastapi.tiangolo.com/js/logic.js)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 12.2K bytes
    - Click Count (0)
  5. docs/fr/docs/_llm-test.md

    //// tab | Test
    
    Le texte du lien doit être traduit, l’adresse du lien doit rester inchangée :
    
    * [Lien vers le titre ci-dessus](#code-snippets)
    * [Lien interne](index.md#installation)
    * [Lien externe](https://sqlmodel.tiangolo.com/)
    * [Lien vers une feuille de style](https://fastapi.tiangolo.com/css/styles.css)
    * [Lien vers un script](https://fastapi.tiangolo.com/js/logic.js)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcVersions.java

     * <p>
     * Parse the Java source file containing the versions declarations and use the known rules to figure out which are all
     * the version the current one is wire and index compatible with.
     * On top of this, figure out which of these are unreleased and provide the branch they can be built from.
     * <p>
     * Note that in this context, currentVersion is the unreleased version this build operates on.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 16.8K bytes
    - Click Count (0)
  7. cmd/iam-store.go

    	for index := range groups {
    		g.Go(func() error {
    			err := store.loadMappedPolicy(context.TODO(), groups[index], regUser, true, c.iamGroupPolicyMap)
    			if err != nil && !errors.Is(err, errNoSuchPolicy) {
    				return err
    			}
    			if errors.Is(err, errNoSuchPolicy) {
    				return nil
    			}
    			policy, _ := c.iamGroupPolicyMap.Load(groups[index])
    			mu.Lock()
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 87.1K bytes
    - Click Count (0)
  8. docs/ja/docs/deployment/docker.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)
    
    ## 代替のAPIドキュメント { #alternative-api-docs }
    
    また、[http://192.168.99.100/redoc](http://192.168.99.100/redoc) や [http://127.0.0.1/redoc](http://127.0.0.1/redoc) (またはそれに相当するDockerホストを使用したもの)にもアクセスできます。
    
    代替の自動ドキュメント([ReDoc](https://github.com/Rebilly/ReDoc)によって提供される)が表示されます:
    
    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 36.8K bytes
    - Click Count (0)
  9. tensorflow/c/eager/c_api.cc

      return tensorflow::unwrap(op)->GetInputs().size();
    }
    
    extern TFE_TensorHandle* TFE_OpGetFlatInput(const TFE_Op* op, int index,
                                                TF_Status* status) {
      return tensorflow::wrap(tensorflow::unwrap(op)->GetInputs()[index]);
    }
    
    TF_AttrType TFE_OpGetAttrType(TFE_Op* op, const char* attr_name,
                                  unsigned char* is_list, TF_Status* status) {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Nov 07 05:55:21 GMT 2025
    - 43.9K bytes
    - Click Count (0)
  10. docs/en/docs/_llm-test.md

    ## Web- and internal links { #web-and-internal-links }
    
    //// tab | Test
    
    The link text should get translated, the link address should remain unchanged:
    
    * [Link to heading above](#code-snippets)
    * [Internal link](index.md#installation)
    * [External link](https://sqlmodel.tiangolo.com/)
    * [Link to a style](https://fastapi.tiangolo.com/css/styles.css)
    * [Link to a script](https://fastapi.tiangolo.com/js/logic.js)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
Back to Top