- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 303 for relativo (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava/src/com/google/common/io/Resources.java
URL url = loader.getResource(resourceName); checkArgument(url != null, "resource %s not found.", resourceName); return url; } /** * Given a {@code resourceName} that is relative to {@code contextClass}, returns a {@code URL} * pointing to the named resource. * * @throws IllegalArgumentException if the resource is not found */
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 17:27:14 GMT 2025 - 7.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java
s = file.getPath(); } else if (file.getPath().startsWith(File.separator)) { // drive-relative Windows path, don't align with project directory but with drive root s = file.getAbsolutePath(); } else { // an ordinary relative path, align with project directory s = new File(new File(basedir, s).toURI().normalize()).getAbsolutePath(); }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 7.2K bytes - Click Count (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
final PacUnicodeString serverNameString = pacStream.readUnicodeString(); final PacUnicodeString domainNameString = pacStream.readUnicodeString(); // ID for domain (used with relative IDs to get SIDs) final int domainIdPointer = pacStream.readInt(); // Skip some reserved fields pacStream.skipBytes(8);
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 14.3K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiAggregateReportTask.kt
import org.gradle.workers.WorkerExecutor import javax.inject.Inject @CacheableTask abstract class IncubatingApiAggregateReportTask : DefaultTask() { @get:InputFiles @get:PathSensitive(PathSensitivity.RELATIVE) abstract val reports: ConfigurableFileCollection @get:Input abstract val currentCommit: Property<String> @get:OutputFile abstract val htmlReportFile: RegularFileProperty
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu May 29 08:21:16 GMT 2025 - 2.2K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/IntegrationTest.kt
@CacheableTask abstract class IntegrationTest : DistributionTest() { override val prefix = if (name.contains("CrossVersion")) "crossVersion" else "integ" @InputDirectory @PathSensitive(PathSensitivity.RELATIVE) val samplesDir = gradleInstallationForTest.gradleSnippetsDir override fun setClasspath(classpath: FileCollection) { /*
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2K bytes - Click Count (0) -
docs/de/docs/tutorial/security/index.md
/// ## OpenID Connect { #openid-connect } OpenID Connect ist eine weitere Spezifikation, die auf **OAuth2** basiert. Sie erweitert lediglich OAuth2, indem sie einige Dinge spezifiziert, die in OAuth2 relativ mehrdeutig sind, um zu versuchen, es interoperabler zu machen. Beispielsweise verwendet der Google Login OpenID Connect (welches seinerseits OAuth2 verwendet).Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Sep 20 15:10:09 GMT 2025 - 5.2K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
} else { throw GradleException(errorMessage) } } } /** * Returns non-empty directories: the mapping of directory to at most 4 leftover files' relative path in the directory. */ private fun TestFilesCleanupProjectState.tmpTestFiles(): LeftoverFiles = projectBuildDir.get().asFile.resolve("tmp/teŝt files") .listFiles()Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Nov 05 11:43:49 GMT 2025 - 12.5K bytes - Click Count (1) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferResource.java
* * @return The base URL of the repository or an empty string if unknown, never {@code null}. */ String getRepositoryUrl(); /** * The path of the artifact relative to the repository's base URL. * * @return The path of the artifact, never {@code null}. */ String getName(); /** * Gets the full URL of the artifact. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2K bytes - Click Count (0) -
docs/en/docs/css/termynal.css
font-family: var(--md-code-font-family), 'Roboto Mono', 'Fira Mono', Consolas, Menlo, Monaco, 'Courier New', Courier, monospace; border-radius: 4px; padding: 75px 45px 35px; position: relative; -webkit-box-sizing: border-box; box-sizing: border-box; /* Custom line-height */ line-height: 1.2; } [data-termynal]:before { content: ''; position: absolute;
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sun Nov 23 09:27:40 GMT 2025 - 2.2K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/Weigher.java
* * @author Charles Fry * @since 11.0 */ @GwtCompatible public interface Weigher<K, V> { /** * Returns the weight of a cache entry. There is no unit for entry weights; rather they are simply * relative to each other. * * @return the weight of the entry; must be non-negative */ int weigh(K key, V value);
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 03:10:51 GMT 2024 - 1K bytes - Click Count (0)