Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 437 for uris (0.04 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderVisitor.java

            URL[] urls = new URL[elements.length];
            for (int i = 0; i < elements.length; i++) {
                try {
                    URL url = new File(elements[i]).toURI().toURL();
                    urls[i] = url;
                } catch (MalformedURLException mue) {
                    throw throwAsUncheckedException(mue);
                }
            }
            return urls;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

            assert iml.contains('1.44')
    
            def ipr = getFile([:], 'root.ipr').text
            assert ipr.contains('!?*.ruby')
        }
    
    
        private containsDir(path, urls) {
            urls.any { it.endsWith(path) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/sync/example_test.go

    func (httpPkg) Get(url string) {}
    
    var http httpPkg
    
    // This example fetches several URLs concurrently,
    // using a WaitGroup to block until all the fetches are complete.
    func ExampleWaitGroup() {
    	var wg sync.WaitGroup
    	var urls = []string{
    		"http://www.golang.org/",
    		"http://www.google.com/",
    		"http://www.example.com/",
    	}
    	for _, url := range urls {
    		// Increment the WaitGroup counter.
    		wg.Add(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 17:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. releasenotes/notes/remove-operator-httpfetch.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 16:13:50 UTC 2022
    - 141 bytes
    - Viewed (0)
  5. tools/bug-report/pkg/common/common.go

    		ztunnelDebugURLs: []string{
    			"config_dump",
    		},
    	},
    }
    
    // IstiodDebugURLs returns a list of Istiod debug URLs for the given version.
    func IstiodDebugURLs(clusterVersion string) []string {
    	return versionMap[getVersionKey(clusterVersion)].istioDebugURLs
    }
    
    // ProxyDebugURLs returns a list of proxy debug URLs for the given version.
    func ProxyDebugURLs(clusterVersion string) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        private List<Integer> pageNumberList;
    
        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String name;
    
        public String urls;
    
        public String userAgent;
    
        public String numOfThread;
    
        public String intervalTime;
    
        public String boost;
    
        public String available;
    
        public String sortOrder;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/metadata.md

    # Metadata and Docs URLs
    
    You can customize several metadata configurations in your **FastAPI** application.
    
    ## Metadata for API
    
    You can set the following fields that are used in the OpenAPI specification and the automatic API docs UIs:
    
    | Parameter | Type | Description |
    |------------|------|-------------|
    | `title` | `str` | The title of the API. |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/UrlNormalizingPostProcessor.java

    import java.util.Set;
    
    import org.apache.maven.model.path.UrlNormalizer;
    import org.codehaus.plexus.interpolation.InterpolationPostProcessor;
    
    /**
     * Ensures that expressions referring to URLs evaluate to normalized URLs.
     *
     */
    class UrlNormalizingPostProcessor implements InterpolationPostProcessor {
    
        private static final Set<String> URL_EXPRESSIONS;
    
        static {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ScalaCompilerLoader.java

    public class ScalaCompilerLoader extends URLClassLoader {
        private final ClassLoader sbtLoader;
    
        public ScalaCompilerLoader(URL[] urls, ClassLoader sbtLoader) {
            super(urls, null);
            this.sbtLoader = sbtLoader;
        }
    
        @Override
        public Class<?> loadClass(String className, boolean resolve) throws ClassNotFoundException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. hack/lib/etcd.sh

        ETCD_LOGFILE=${ETCD_LOGFILE:-"/dev/null"}
      fi
      kube::log::info "etcd --advertise-client-urls ${KUBE_INTEGRATION_ETCD_URL} --data-dir ${ETCD_DIR} --listen-client-urls http://${ETCD_HOST}:${ETCD_PORT} --log-level=${ETCD_LOGLEVEL} 2> \"${ETCD_LOGFILE}\" >/dev/null"
      etcd --advertise-client-urls "${KUBE_INTEGRATION_ETCD_URL}" --data-dir "${ETCD_DIR}" --listen-client-urls "${KUBE_INTEGRATION_ETCD_URL}" --log-level="${ETCD_LOGLEVEL}" 2> "${ETCD_LOGFILE}" >/dev/null &
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top