- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 64 for repo2 (0.46 sec)
-
.github/workflows/topic-repos.yml
name: Update Topic Repos on: schedule: - cron: "0 12 1 * *" workflow_dispatch: env: UV_SYSTEM_PYTHON: 1 jobs: topic-repos: if: github.repository_owner == 'fastapi' runs-on: ubuntu-latest permissions: contents: write steps: - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT"Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Nov 21 13:03:21 UTC 2025 - 1021 bytes - Viewed (0) -
scripts/topic_repos.py
r = g.get_repo(settings.github_repository) repos = g.search_repositories(query="topic:fastapi") repos_list = list(repos) final_repos: list[Repo] = [] for repo in repos_list[:100]: if repo.full_name == settings.github_repository: continue final_repos.append( Repo( name=repo.name, html_url=repo.html_url, stars=repo.stargazers_count,
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 12:34:01 UTC 2025 - 2.7K bytes - Viewed (0) -
plugin.xml
<param name="plugin.groupId" value="org/codelibs/opensearch" /> <param name="plugin.name.prefix" value="opensearch-" /> <param name="plugin.name" value="configsync" /> <param name="plugin.version" value="3.4.0" /> <param name="plugin.zip.version" value="3.4.0" /> </antcall> <!-- minhash --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" />
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 18 09:50:31 UTC 2025 - 3.5K bytes - Viewed (0) -
deps.xml
<property name="kopf.branch" value="main" /> <!-- Maven Repository --> <property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" /> <property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" /> <target name="install.jars"> <mkdir dir="${target.dir}" /> <delete dir="${webinf.dir}/lib" /> <mkdir dir="${webinf.dir}/lib" />
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 08:57:53 UTC 2025 - 2.5K bytes - Viewed (0) -
.pre-commit-config.yaml
# See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v6.0.0 hooks: - id: check-added-large-files args: ['--maxkb=750'] - id: check-toml - id: check-yaml args: - --unsafe - id: end-of-file-fixer - id: trailing-whitespace - repo: local hooks: - id: local-ruff-checkRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 11:36:58 UTC 2025 - 1.8K bytes - Viewed (1) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java
String log = logs.get("eu.maveniverse.maven.plugins:toolbox:" + Environment.TOOLBOX_VERSION + ":dump"); assertTrue(log.contains("https://repo1.maven.org/maven2"), log); assertFalse(log.contains("https://repo.maven.apache.org/maven2"), log); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 21 12:17:55 UTC 2025 - 9.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
ArtifactRepository repo = MavenRepositorySystem.buildArtifactRepository( new org.apache.maven.model.DeploymentRepository(r)); repositorySystem.injectProxy(request.getRepositorySession(), List.of(repo)); repositorySystem.injectAuthentication(request.getRepositorySession(), List.of(repo));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0) -
module.xml
<property name="target.dir" value="${basedir}/target/modules" /> <!-- Maven Repository --> <property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" /> <property name="maven.release.repo.url" value="https://maven.codelibs.org" /> <property name="opensearch.version" value="3.4.0" /> <target name="install.modules"> <mkdir dir="${target.dir}" />
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 18 09:50:31 UTC 2025 - 4K bytes - Viewed (0) -
docs/en/docs/external-links.md
Most starred <a href="https://github.com/topics/fastapi" class="external-link" target="_blank">GitHub repositories with the topic `fastapi`</a>: {% for repo in topic_repos %} <a href={{repo.html_url}} target="_blank">★ {{repo.stars}} - {{repo.name}}</a> by <a href={{repo.owner_html_url}} target="_blank">@{{repo.owner_login}}</a>.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 10 12:28:40 UTC 2025 - 917 bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/RepositoryLeakageTest.java
.anyMatch(repo -> "child1-repo".equals(repo.getId())); assertTrue(child1HasOwnRepo, "Child1 should have its own repository"); // Verify that child2 has its own repository boolean child2HasOwnRepo = child2Project.getRemoteArtifactRepositories().stream() .anyMatch(repo -> "child2-repo".equals(repo.getId()));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 9.3K bytes - Viewed (0)