Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,453 for url (0.02 sec)

  1. src/main/webapp/WEB-INF/web.xml

        <filter-name>corsFilter</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
    
      <filter-mapping>
        <filter-name>webApiFilter</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
    
      <filter-mapping>
        <filter-name>lastaShowbaseFilter</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
    Registered: 2024-10-31 13:40
    - Last Modified: 2024-07-29 02:54
    - 7.1K bytes
    - Viewed (0)
  2. src/main/webapp/js/search.js

        e.trigger.classList.remove("far");
        e.trigger.classList.remove("fa-copy");
        e.trigger.classList.add("url-copied");
        e.trigger.classList.add("fas");
        e.trigger.classList.add("fa-check");
        setTimeout(function(){
          e.trigger.classList.remove("url-copied");
          e.trigger.classList.remove("fas");
          e.trigger.classList.remove("fa-check");
          e.trigger.classList.add("url-copy");
    Registered: 2024-10-31 13:40
    - Last Modified: 2023-03-30 05:45
    - 7.5K bytes
    - Viewed (0)
  3. cmd/admin-bucket-handlers.go

    		return
    	}
    	var target madmin.BucketTarget
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	if err = json.Unmarshal(reqBytes, &target); err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrAdminConfigBadJSON, err), r.URL)
    		return
    	}
    	sameTarget, _ := isLocalHost(target.URL().Hostname(), target.URL().Port(), globalMinioPort)
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-08-28 15:32
    - 33.2K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                file.deleteOnExit();
                fileTransformer.setPath(file.getAbsolutePath());
                crawler.addUrl(url);
                crawler.crawlerContext.setMaxAccessCount(maxCount);
                crawler.crawlerContext.setNumOfThread(numOfThread);
                crawler.urlFilter.addInclude(url + ".*");
                final String sessionId = crawler.execute();
                assertEquals(maxCount, dataService.getCount(sessionId));
    Registered: 2024-11-10 03:50
    - Last Modified: 2024-02-22 01:47
    - 11.9K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-expected.xml

        <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection>
        <url>https://domain.org/base</url>
      </scm>
      <distributionManagement>
        <site child.site.url.inherit.append.path="false">
          <url>scp://scp.domain.org/base/</url>
        </site>
      </distributionManagement>
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 2.1K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-parent.xml

      <url>http://www.apache.org/path/to/parent/</url>
      <scm child.scm.connection.inherit.append.path="false"
           child.scm.developerConnection.inherit.append.path="false"
           child.scm.url.inherit.append.path="false">
        <connection>scm:my-scm:http://domain.org/base</connection>
        <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection>
        <url>https://domain.org/base</url>
      </scm>
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 2.1K bytes
    - Viewed (0)
  7. cmd/admin-handlers-site-replication.go

    		return
    	}
    	status, err := globalSiteReplicationSys.RemovePeerCluster(ctx, objectAPI, rreq)
    	if err != nil {
    		adminLogIf(ctx, err)
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	body, err := json.Marshal(status)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-05-24 23:05
    - 19.4K bytes
    - Viewed (0)
  8. docs/en/data/people.yml

      url: https://github.com/tiangolo
    experts:
    - login: Kludex
      count: 608
      avatarUrl: https://avatars.githubusercontent.com/u/7353520?u=62adc405ef418f4b6c8caa93d3eb8ab107bc4927&v=4
      url: https://github.com/Kludex
    - login: dmontagu
      count: 241
      avatarUrl: https://avatars.githubusercontent.com/u/35119617?u=540f30c937a6450812628b9592a1dfe91bbe148e&v=4
      url: https://github.com/dmontagu
    - login: jgould22
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-06-03 01:09
    - 55.4K bytes
    - Viewed (0)
  9. test-site/app/models/ContentsCreator.java

                final int endpos = h.indexOf('"');
                String url = h.substring(0, endpos);
                if(url.contains("#")) {
                    continue;
                }
                if(url.startsWith("http")) {
                    queue.add(url);
                } else if(url.startsWith("//")) {
                    queue.add(schema + ":" + url);
                } else if(url.startsWith("/")) {
                    queue.add(schema + "://" + host + url);
    Registered: 2024-11-08 09:08
    - Last Modified: 2015-11-06 08:48
    - 3.7K bytes
    - Viewed (0)
  10. cmd/bucket-lifecycle-handlers.go

    		return
    	}
    
    	// Validate the received bucket policy document
    	if err = bucketLifecycle.Validate(rcfg); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Validate the transition storage ARNs
    	if err = validateTransitionTier(bucketLifecycle); err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Create a map of updated set of rules in request
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-05-24 23:05
    - 7K bytes
    - Viewed (0)
Back to top