- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 595 for 30 (0.09 sec)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java
import org.eclipse.aether.resolution.MetadataRequest; import org.eclipse.aether.resolution.MetadataResult; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Resolves a plugin prefix. * * @since 3.0 */ @Named @Singleton public class DefaultPluginPrefixResolver implements PluginPrefixResolver { private static final String REPOSITORY_CONTEXT = org.apache.maven.api.services.RequestTrace.CONTEXT_PLUGIN;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 17 13:14:10 UTC 2025 - 11.9K bytes - Viewed (0) -
docs/ru/docs/advanced/openapi-callbacks.md
* А также может быть объявление модели ответа, например `response_model=InvoiceEventReceived`. {* ../../docs_src/openapi_callbacks/tutorial001_py310.py hl[14:16,19:20,26:30] *} Есть 2 основных отличия от обычной *операции пути*:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Dec 11 21:25:03 UTC 2025 - 12.7K bytes - Viewed (0) -
scripts/notify_translations.py
model_config = {"env_ignore_empty": True} github_repository: str github_token: SecretStr github_event_path: Path github_event_name: Union[str, None] = None httpx_timeout: int = 30 debug: Union[bool, None] = False number: int | None = None class PartialGitHubEventIssue(BaseModel): number: int | None = None class PartialGitHubEvent(BaseModel):Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameServicePacketTest.java
} @Test void testWriteResourceRecordWireFormat_differentRecordName() { byte[] dst = new byte[30]; packet.recordType = NameServicePacket.A; packet.recordClass = NameServicePacket.IN; packet.ttl = 100; packet.rDataLength = 0;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java
private Artifact projectArtifact; @BeforeEach @Override public void setUp() throws Exception { super.setUp(); projectArtifact = createLocalArtifact("project", "3.0"); } @Override protected DefaultRepositorySystemSession initRepoSession() throws Exception { DefaultRepositorySystemSession session = super.initRepoSession();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 10.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashing.java
@GwtIncompatible final class CompactHashing { private CompactHashing() {} /** Indicates blank table entries. */ static final byte UNSET = 0; /** Number of bits used to store the numbers of hash table bits (max 30). */ private static final int HASH_TABLE_BITS_MAX_BITS = 5; /** Use high bits of metadata for modification count. */ static final int MODIFICATION_COUNT_INCREMENT = 1 << HASH_TABLE_BITS_MAX_BITS;Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 7K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arm64.go
} func arm64RegisterNumber(name string, n int16) (int16, bool) { switch name { case "F": if 0 <= n && n <= 31 { return arm64.REG_F0 + n, true } case "R": if 0 <= n && n <= 30 { // not 31 return arm64.REG_R0 + n, true } case "V": if 0 <= n && n <= 31 { return arm64.REG_V0 + n, true } } return 0, false }
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Oct 16 00:35:29 UTC 2025 - 6.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
## Dependencies ### Added - github.com/checkpoint-restore/go-criu/v6: [v6.3.0](https://github.com/checkpoint-restore/go-criu/tree/v6.3.0) - github.com/moby/sys/user: [v0.3.0](https://github.com/moby/sys/tree/user/v0.3.0) ### Changed - github.com/cilium/ebpf: [v0.11.0 → v0.16.0](https://github.com/cilium/ebpf/compare/v0.11.0...v0.16.0)
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Dec 16 18:27:41 UTC 2025 - 448.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/AbstractTableTest.java
public abstract class AbstractTableTest<C extends @Nullable Character> extends AbstractTableReadTest<C> { protected void populate(Table<String, Integer, C> table, @Nullable Object... data) { checkArgument(data.length % 3 == 0); for (int i = 0; i < data.length; i += 3) { table.put( (String) data[i], (Integer) data[i + 1], nullableCellValue((Character) data[i + 2])); } } protected boolean supportsRemove() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 6K bytes - Viewed (0) -
guava/src/com/google/common/collect/Interners.java
import com.google.errorprone.annotations.CanIgnoreReturnValue; import org.jspecify.annotations.Nullable; /** * Contains static methods pertaining to instances of {@link Interner}. * * @author Kevin Bourrillion * @since 3.0 */ @J2ktIncompatible @GwtIncompatible public final class Interners { private Interners() {} /** * Builder for {@link Interner} instances. * * @since 21.0 */Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 6K bytes - Viewed (0)