Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 481 for street (0.29 sec)

  1. src/main/resources/fess_config.properties

    application/vnd.ms-excel=excel\n\
    application/vnd.ms-excel.sheet.2=excel\n\
    application/vnd.ms-excel.sheet.3=excel\n\
    application/vnd.ms-excel.sheet.4=excel\n\
    application/vnd.ms-excel.workspace.3=excel\n\
    application/vnd.ms-excel.workspace.4=excel\n\
    application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=excel\n\
    application/vnd.ms-powerpoint=powerpoint\n\
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  2. src/main/resources/fess_label_ko.properties

    labels.user_roomNumber = 방 번호
    labels.roomNumber = 방 번호
    labels.user_description = 설명
    labels.description = 설명
    labels.user_title = 직책
    labels.title = 직책
    labels.user_pager = 호출기
    labels.pager = 호출기
    labels.user_street = 번지
    labels.street = 번지
    labels.user_postalCode = 우편 번호
    labels.postalCode = 우편 번호
    labels.user_physicalDeliveryOfficeName = 사업소
    labels.physicalDeliveryOfficeName = 사업소
    labels.user_destinationIndicator = 특송 서비스 주소 정보
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_ja.properties

    labels.user_roomNumber=部屋番号
    labels.roomNumber=部屋番号
    labels.user_description=説明
    labels.description=説明
    labels.user_title=役職
    labels.title=役職
    labels.user_pager=ポケベル
    labels.pager=ポケベル
    labels.user_street=番地
    labels.street=番地
    labels.user_postalCode=郵便番号
    labels.postalCode=郵便番号
    labels.user_physicalDeliveryOfficeName=事業所
    labels.physicalDeliveryOfficeName=事業所
    labels.user_destinationIndicator=電報サービスアドレス情報
    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)
  4. src/main/resources/fess_label_de.properties

    labels.roomNumber=Zimmer-Nummer
    labels.user_description=Beschreibung
    labels.description=Beschreibung
    labels.user_title=Titel
    labels.title=Titel
    labels.user_pager=Pager
    labels.pager=Pager
    labels.user_street=Straße
    labels.street=Straße
    labels.user_postalCode=Postleitzahl
    labels.postalCode=Postleitzahl
    labels.user_physicalDeliveryOfficeName=Büroname für physische Zustellung
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_fr.properties

    labels.user_description	=	Description
    labels.description	=	Description
    labels.user_title	=	Titre
    labels.title	=	Titre
    labels.user_pager	=	Pager
    labels.pager	=	Pager
    labels.user_street	=	Rue
    labels.street	=	Rue
    labels.user_postalCode	=	Code Postal
    labels.postalCode	=	Code Postal
    labels.user_physicalDeliveryOfficeName	=	Nom du bureau de livraison physique
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  6. cmd/metacache-stream.go

    	"github.com/tinylib/msgp/msgp"
    	"github.com/valyala/bytebufferpool"
    )
    
    // metadata stream format:
    //
    // The stream is s2 compressed.
    // https://github.com/klauspost/compress/tree/master/s2#s2-compression
    // This ensures integrity and reduces the size typically by at least 50%.
    //
    // All stream elements are msgpack encoded.
    //
    // 1 Integer, metacacheStreamVersion of the writer.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  7. src/archive/zip/struct.go

    )
    
    // FileHeader describes a file within a ZIP file.
    // See the [ZIP specification] for details.
    //
    // [ZIP specification]: https://support.pkware.com/pkzip/appnote
    type FileHeader struct {
    	// Name is the name of the file.
    	//
    	// It must be a relative path, not start with a drive letter (such as "C:"),
    	// and must use forward slashes instead of back slashes. A trailing slash
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                        fessConfig.getSessionTrackingModesAsSet().stream().map(SessionTrackingMode::valueOf).collect(Collectors.toSet()));
            } catch (final Throwable t) {
                logger.warn("Failed to set SessionTrackingMode.", t);
            }
    
            split(fessConfig.getQueryFacetQueries(), "\n").of(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).forEach(s -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  9. cmd/postpolicyform.go

    type contentLengthRange struct {
    	Min   int64
    	Max   int64
    	Valid bool // If content-length-range was part of policy
    }
    
    // PostPolicyForm provides strict static type conversion and validation for Amazon S3's POST policy JSON string.
    type PostPolicyForm struct {
    	Expiration time.Time // Expiration date and time of the POST policy.
    	Conditions struct {  // Conditional policy structure.
    		Policies []struct {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 19 16:45:54 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  10. cmd/metacache-stream_test.go

    Klaus Post <******@****.***> 1663610716 +0200
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 15K bytes
    - Viewed (0)
Back to top