Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for City (0.2 sec)

  1. src/main/resources/fess_config.properties

    ldap.attr.facsimileTelephoneNumber=facsimileTelephoneNumber
    ldap.attr.postOfficeBox=postOfficeBox
    ldap.attr.initials=initials
    ldap.attr.carLicense=carLicense
    ldap.attr.mobile=mobile
    ldap.attr.postalAddress=postalAddress
    ldap.attr.city=l
    ldap.attr.teletexTerminalIdentifier=teletexTerminalIdentifier
    ldap.attr.x121Address=x121Address
    ldap.attr.businessCategory=businessCategory
    ldap.attr.registeredAddress=registeredAddress
    ldap.attr.displayName=displayName
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. postalAddress */
        String LDAP_ATTR_POSTAL_ADDRESS = "ldap.attr.postalAddress";
    
        /** The key of the configuration. e.g. l */
        String LDAP_ATTR_CITY = "ldap.attr.city";
    
        /** The key of the configuration. e.g. teletexTerminalIdentifier */
        String LDAP_ATTR_TELETEX_TERMINAL_IDENTIFIER = "ldap.attr.teletexTerminalIdentifier";
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  3. doc/go1.17_spec.html

    </p>
    
    <pre>
    type Person struct {
    	Name    string
    	Address *struct {
    		Street string
    		City   string
    	}
    }
    
    var data *struct {
    	Name    string `json:"name"`
    	Address *struct {
    		Street string `json:"street"`
    		City   string `json:"city"`
    	} `json:"address"`
    }
    
    var person = (*Person)(data)  // ignoring tags, the underlying types are identical
    </pre>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    <pre>
    type Person struct {
    	Name    string
    	Address *struct {
    		Street string
    		City   string
    	}
    }
    
    var data *struct {
    	Name    string `json:"name"`
    	Address *struct {
    		Street string `json:"street"`
    		City   string `json:"city"`
    	} `json:"address"`
    }
    
    var person = (*Person)(data)  // ignoring tags, the underlying types are identical
    </pre>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top