Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 275 for uris (0.07 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         */
        fun relativePath(path: Any): String
    
        /**
         * Resolves a file path to a URI, relative to this script's target base directory.
         *
         * Evaluates the provided path object as described for [file],
         * with the exception that any URI scheme is supported, not just `file:` URIs.
         */
        fun uri(path: Any): URI
    
        /**
         * Resolves a file path relative to this script's target base directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

            return originalClassPath.isEmpty();
        }
    
        /**
         * {@inheritDoc}
         * <p>
         * This method returns the list of original JAR/class directory URIs.
         */
        @Override
        public List<URI> getAsURIs() {
            return originalClassPath.getAsURIs();
        }
    
        /**
         * {@inheritDoc}
         * <p>
         * This method returns the list of original JARs/class directories.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                crawler.setSessionId(sid);
                sessionIdList.add(sid);
    
                final String pathsStr = fileConfig.getPaths();
                if (StringUtil.isBlank(pathsStr)) {
                    logger.warn("No target uris. Skipped");
                    break;
                }
    
                final int intervalTime =
                        fileConfig.getIntervalTime() != null ? fileConfig.getIntervalTime() : Constants.DEFAULT_INTERVAL_TIME_FOR_FS;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

        /**
         * Resolves a file path to a URI, relative to this script's target base directory.
         *
         * Evaluates the provided path object as described for [file],
         * with the exception that any URI scheme is supported, not just `file:` URIs.
         */
        @Suppress("unused")
        fun uri(path: Any): URI =
            fileOperations.uri(path)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

        /**
         * Resolves a file path to a URI, relative to this script's target base directory.
         *
         * Evaluates the provided path object as described for [KotlinInitScript.file],
         * with the exception that any URI scheme is supported, not just `file:` URIs.
         */
        @Suppress("unused")
        fun uri(path: Any): URI =
            fileOperations.uri(path)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Script.java

        /**
         * <p>Resolves a file path to a URI, relative to the directory containing this script. Evaluates the provided path
         * object as described for {@link #file(Object)}, with the exception that any URI scheme is supported, not just
         * 'file:' URIs.</p>
         *
         * @param path The object to resolve as a URI.
         * @return The resolved URI. Never returns null.
         */
        URI uri(Object path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/jwks_resolver.go

    	}
    
    	return jwksURI, nil
    }
    
    func (r *JwksResolver) getRemoteContentWithRetry(uri string, retry int, timeout time.Duration) ([]byte, error) {
    	u, err := url.Parse(uri)
    	if err != nil {
    		log.Errorf("Failed to parse %q", uri)
    		return nil, err
    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), timeout)
    	defer cancel()
    
    	client := r.httpClient
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        serviceAccountAnnotations: {}
        topologySpreadConstraints: []
        # You can use jwksResolverExtraRootCA to provide a root certificate
        # in PEM format. This will then be trusted by pilot when resolving
        # JWKS URIs.
        jwksResolverExtraRootCA: ""
        # This is used to set the source of configuration for
        # the associated address in configSource, if nothing is specified
        # the default MCP is assumed.
        configSource:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/values.yaml

        serviceAccountAnnotations: {}
    
        topologySpreadConstraints: []
    
        # You can use jwksResolverExtraRootCA to provide a root certificate
        # in PEM format. This will then be trusted by pilot when resolving
        # JWKS URIs.
        jwksResolverExtraRootCA: ""
    
        # This is used to set the source of configuration for
        # the associated address in configSource, if nothing is specified
        # the default MCP is assumed.
        configSource:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util.go

    		div *= unit
    		exp++
    	}
    	return fmt.Sprintf("%.1f%cB",
    		float64(b)/float64(div), "kMGTPE"[exp])
    }
    
    // IPv6Compliant encloses ipv6 addresses in square brackets followed by port number in Host header/URIs
    func IPv6Compliant(host string) string {
    	if strings.Contains(host, ":") {
    		return "[" + host + "]"
    	}
    	return host
    }
    
    // DomainName builds the domain name for a given host and port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top