Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for farete (0.22 sec)

  1. docs/pt/docs/history-design-future.md

    > Qual é a história desse projeto? Parece que surgiu do nada e se tornou incrível em poucas semanas [...]
    
    Aqui está um pouco dessa história.
    
    ## Alternativas
    
    Eu tenho criado APIs com requisitos complexos por vários anos (Aprendizado de Máquina, sistemas distribuídos, tarefas assíncronas, banco de dados NoSQL etc.), liderando vários times de desenvolvedores.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ja.properties

    labels.facet_filetype_avi=AVIビデオ
    labels.facet_filetype_flv=FLVビデオ
    labels.facet_filetype_mpeg=MPEGビデオ
    labels.facet_filetype_mp4=MP4ビデオ
    labels.facet_filetype_ogv=OGVビデオ
    labels.facet_filetype_qt=QuickTimeビデオ
    labels.facet_filetype_m4v=M4Vビデオ
    labels.facet_filetype_ogg=OGGオーディオ
    labels.facet_filetype_wav=WAVオーディオ
    labels.facet_filetype_webp=WebPオーディオ
    labels.facet_filetype_aif=AIFオーディオ
    labels.facet_filetype_midi=MIDIオーディオ
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        }
    
        protected FacetInfo createFacetInfo(final HttpServletRequest request) {
            final String[] fields = getParamValueArray(request, "facet.field");
            final String[] queries = getParamValueArray(request, "facet.query");
            if (fields.length == 0 && queries.length == 0) {
                return null;
            }
            final FacetInfo facetInfo = new FacetInfo();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        }
    
        public static String facetQuery() {
            return createQuery(Constants.FACET_QUERY, FACET_PREFIX);
        }
    
        public static String geoQuery() {
            return createQuery(Constants.GEO_QUERY, GEO_PREFIX);
        }
    
        public static String facetForm() {
            return createForm(Constants.FACET_FORM, FACET_PREFIX);
        }
    
        public static String geoForm() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  5. internal/disk/stat_bsd.go

    		FSType: getFSType(s.Fstypename[:]),
    	}
    	if info.Free > info.Total {
    		return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path)
    	}
    	info.Used = info.Total - info.Free
    	return info, nil
    }
    
    // GetDriveStats returns IO stats of the drive by its major:minor
    func GetDriveStats(major, minor uint32) (iostats IOStats, err error) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/request-forms-and-files.md

        Isso não é uma limitação do **FastAPI** , é parte do protocolo HTTP.
    
    ## Recapitulando
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            assertEquals("labels.facet_timestamp_title", view1.getTitle());
            assertEquals(4, view1.getQueryMap().size());
            FacetQueryView view2 = list.get(1);
            assertEquals("labels.facet_contentLength_title", view2.getTitle());
            assertEquals(5, view2.getQueryMap().size());
            FacetQueryView view3 = list.get(2);
            assertEquals("labels.facet_filetype_title", view3.getTitle());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  8. docs/es/docs/async.md

    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-06.png" alt="illustration">
    
    No has hablado ni coqueteado mucho, ya que has pasado la mayor parte del tiempo esperando 🕙 frente al mostrador 😞.
    
    !!! info
         Las ilustraciones fueron creados por <a href="https://www.instagram.com/ketrinadrawsalot" class="external-link" target="_blank">Ketrina Thompson</a>. 🎨
    
    ---
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/request-forms.md

        Esta não é uma limitação do **FastAPI**, é parte do protocolo HTTP.
    
    ## Recapitulando
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 19:02:19 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. internal/disk/stat_windows.go

    	// amount of free space available to the user that is associated with the calling thread.
    	GetDiskFreeSpaceEx = kernel32.NewProc("GetDiskFreeSpaceExW")
    
    	// GetDiskFreeSpace - https://msdn.microsoft.com/en-us/library/windows/desktop/aa364935(v=vs.85).aspx
    	// Retrieves information about the specified disk, including the amount of free space on the disk.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 4.1K bytes
    - Viewed (0)
Back to top