Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 564 for Location (0.07 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/location.js

    !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.formUtils.registerLoadedModule("location"),a.formUtils.addValidator({name:"country",validatorFunction:function(b){return a.inArray(b.toLowerCase(),this.countries)>-1},countries:["afghanistan","albania","algeria","american samoa","andorra","angola","anguilla","antarctica","antigua and b...
    Registered: 2025-05-26 08:04
    - Last Modified: 2018-01-01 05:12
    - 5.2K bytes
    - Viewed (0)
  2. internal/s3select/simdj/testdata/parking-citations-10.json.zst

    1","RPState":"CA","PlateExpiry":"200304","Make":"HOND","BodyStyle":"PA","Color":"GY","Location":"13147 WELBY WAY","Route":"01521","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO EVIDENCE OF REG","Fine":50,"Latitude":99999,"Longitude":99999} {"Ticket":1103700150,"IssueData":"2015-12-21T00:00:00","IssueTime":"1435","RPState":"CA","PlateExpiry":"201512","Make":"GMC","BodyStyle":"VN","Color":"WH","Location":"525 S MAIN ST","Route":"1C51","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO...
    Registered: 2025-05-25 19:28
    - Last Modified: 2021-06-01 21:59
    - 693 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/entity/GeoInfoTest.java

            request.setParameter("geo.location.1.point", "34,150");
            request.setParameter("geo.location.1.distance", "10km");
            request.setParameter("geo.location.2.point", "35,151");
            request.setParameter("geo.location.2.distance", "1km");
    
            final GeoInfo geoInfo = new GeoInfo(request);
            String result =
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 2.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

             *
             * @param path the filesystem path to the source content
             * @param location the logical location of the source, used for reporting purposes.
             *                 If null, the path string representation is used
             */
            protected PathSource(Path path, String location) {
                this.path = requireNonNull(path, "path").normalize();
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-02-07 00:45
    - 8K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/web.xml

        <error-code>400</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=badRequest</location>
      </error-page>
      <error-page>
        <error-code>401</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=badAuth</location>
      </error-page>
      <error-page>
        <error-code>403</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location>
      </error-page>
      <error-page>
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-05-06 09:19
    - 7.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * This method is the converse of {@link #location()}.
         *
         * @param location identification of a path in the {@code javax.tool} API
         * @return Java path type associated to the given location
         */
        public static Optional<JavaPathType> valueOf(JavaFileManager.Location location) {
            for (JavaPathType type : JavaPathType.values()) {
                if (location.equals(type.location)) {
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-04-05 11:52
    - 15K bytes
    - Viewed (1)
  7. pom.xml

    							<sources>
    								<source>
    									<location>${project.build.directory}/tomcat-lib</location>
    								</source>
    							</sources>
    						</mapping>
    						<mapping>
    							<directory>${packaging.fess.lib.dir}/classes/org/codelibs/fess</directory>
    							<sources>
    								<source>
    									<location>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess</location>
    									<includes>
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-05-24 08:18
    - 49.6K bytes
    - Viewed (0)
  8. cmd/handler-utils.go

    		internalLogOnceIf(GlobalContext, err, "location-constraint-xml-parsing")
    		// Treat all other failures as XML parsing errors.
    		return "", ErrMalformedXML
    	} // else for both err as nil or io.EOF
    	location = locationConstraint.Location
    	if location == "" {
    		location = globalSite.Region()
    	}
    	if !isValidLocation(location) {
    		return location, ErrInvalidRegion
    	}
    
    	return location, ErrNone
    }
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-05-07 15:37
    - 16.3K bytes
    - Viewed (1)
  9. architecture/tests/integration.md

    ## Integration Tests High-Level Architecture
    
    ### Pilot Integration Tests
    
    - **Location**: `tests/integration/pilot`
    - **Purpose**: Tests related to the Istio Pilot component, which is responsible for configuring the Envoy proxies.
    - **Focus**:
      1. Configuration of Envoy proxies by Pilot.
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-10-09 00:57
    - 5.9K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/Sitemap.java

    import java.io.Serializable;
    
    /**
     * The Sitemap interface represents a sitemap entity with location and last modification date.
     * It extends the Serializable interface to allow sitemap objects to be serialized.
     */
    public interface Sitemap extends Serializable {
    
        /**
         * Retrieves the location (URL) of the sitemap.
         *
         * @return the location of the sitemap as a String.
         */
        String getLoc();
    
        /**
    Registered: 2025-05-25 03:50
    - Last Modified: 2025-03-15 06:52
    - 1.2K bytes
    - Viewed (0)
Back to top