- Sort Score
- Num 10 results
- Language All
Results 291 - 300 of 755 for escopo (0.06 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
import org.apache.maven.execution.scope.internal.MojoExecutionScope; import org.apache.maven.execution.scope.internal.MojoExecutionScopeModule; import org.apache.maven.extension.internal.CoreExports; import org.apache.maven.extension.internal.CoreExtensionEntry; import org.apache.maven.internal.impl.DefaultLookup; import org.apache.maven.session.scope.internal.SessionScope;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 14.3K bytes - Click Count (0) -
internal/s3select/sql/parser.go
// Condition → "NOT" Condition | ConditionExpression // ConditionExpression → ValueExpression ("=" | "<>" | "<=" | ">=" | "<" | ">") ValueExpression // | ValueExpression "LIKE" ValueExpression ("ESCAPE" LitString)? // | ValueExpression ("NOT"? "BETWEEN" ValueExpression "AND" ValueExpression) // | ValueExpression "IN" "(" Expression ("," Expression)* ")"
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Jan 18 07:03:17 GMT 2024 - 12.9K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
} public void setArtifactScope(ArtifactScopeEnum artifactScope) { this.artifactScope = artifactScope; } public void setScope(String scope) { this.artifactScope = scope == null ? ArtifactScopeEnum.DEFAULT_SCOPE : ArtifactScopeEnum.valueOf(scope); } public String getClassifier() { return classifier; } public void setClassifier(String classifier) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java
// direct dependency retains its scope effectiveScope = originalScope; } else if (Artifact.SCOPE_TEST.equals(originalScope) || Artifact.SCOPE_PROVIDED.equals(originalScope)) { // test and provided are not transitive, so exclude them effectiveScope = null; } else if (Artifact.SCOPE_SYSTEM.equals(originalScope)) { // system scope come through unchanged...Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 6.2K bytes - Click Count (0) -
docs/uk/docs/how-to/custom-request-and-route.md
/// note | Технічні деталі У `Request` є атрибут `request.scope` - це просто Python `dict`, що містить метадані, пов'язані із запитом. Також `Request` має `request.receive` - це функція для «отримання» тіла запиту. `scope` `dict` і функція `receive` є частиною специфікації ASGI. І саме ці дві сутності - `scope` та `receive` - потрібні для створення нового екземпляра `Request`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 6.8K bytes - Click Count (0) -
src/test/java/jcifs/netbios/NodeStatusRequestTest.java
lenient().when(mockConfig.getNetbiosScope()).thenReturn("DEFAULT.SCOPE"); lenient().when(mockConfig.getOemEncoding()).thenReturn("UTF-8"); // Setup mock name lenient().when(mockName.writeWireFormat(any(byte[].class), anyInt())).thenReturn(34); mockName.hexCode = 0x20; mockName.name = "TEST"; mockName.scope = "test.scope"; } @Test
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
@Nonnull Project project, @Nonnull ProjectScope scope, @Nonnull Language language, @Nonnull Path directory) { MavenProject prj = getMavenProject(requireNonNull(project, "project" + " cannot be null")); prj.addSourceRoot( requireNonNull(scope, "scope" + " cannot be null"), requireNonNull(language, "language" + " cannot be null"),Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Dec 17 16:17:01 GMT 2025 - 10.9K bytes - Click Count (0) -
benchmarks/src/main/java/org/elasticsearch/common/bytes/BytesArrayReadVLongBenchmark.java
import org.openjdk.jmh.annotations.Scope; import org.openjdk.jmh.annotations.Setup; import org.openjdk.jmh.annotations.State; import org.openjdk.jmh.annotations.Warmup; import java.io.IOException; import java.util.concurrent.TimeUnit; @Warmup(iterations = 5) @Measurement(iterations = 7) @BenchmarkMode(Mode.AverageTime) @OutputTimeUnit(TimeUnit.MILLISECONDS) @State(Scope.Thread) @Fork(value = 1)
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Apr 12 20:25:06 GMT 2021 - 2.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
String scopeId = dependency.getScope(); DependencyScope scope; if (scopeId == null || scopeId.isEmpty()) { scope = DependencyScope.COMPILE; } else { scope = DependencyScope.forId(scopeId); } return scope == null || !scope.isTransitive(); } private Dependency merge(Dependency dep1, Dependency dep2) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Mar 04 19:49:40 GMT 2026 - 22.3K bytes - Click Count (0) -
doc/next/3-tools.md
Response file (`@file`) parsing is now supported for the `compile`, `link`, `asm`, `cgo`, `cover`, and `pack` tools. The response file contains whitespace-separated arguments with support for single-quoted and double-quoted strings, escape sequences, and backslash-newline line continuation. The format is compatible with GCC's response file implementation to ensure interoperability with existing build systems. ### Go command {#go-command}
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Mar 19 02:58:52 GMT 2026 - 757 bytes - Click Count (0)