- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 621 for coreit (0.05 sec)
-
.gitignore
- /_artifacts/
- /_rundir/
- # Go dependencies installed on Jenkins
- /_gopath/
- # Config directories created by gcloud and gsutil on Jenkins
- /.config/gcloud*/
- /.gsutil/
- # CoreOS stuff
- /cluster/libvirt-coreos/coreos_*.img
- # Downloaded Kubernetes binary release
- /kubernetes/
- # direnv .envrc files
- .envrc
- # Downloaded kubernetes binary release tar ball
- kubernetes.tar.gz
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 29 08:22:06 UTC 2024 - 2.1K bytes - Viewed (0) -
cni/pkg/nodeagent/podcgroupns_test.go
- // limitations under the License.
- package nodeagent
- import (
- "testing"
- corev1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/types"
- "istio.io/istio/pkg/test/util/assert"
- )
- func TestWithProcFs(t *testing.T) {
- n := NewPodNetnsProcFinder(fakeFs())
- pod := &corev1.Pod{ObjectMeta: metav1.ObjectMeta{
- Name: "foo",
- Namespace: "bar",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 4.6K bytes - Viewed (0) -
docs/en/docs/advanced/additional-responses.md
- The correct place is:
- * In the key `content`, that has as value another JSON object (`dict`) that contains:
- * A key with the media type, e.g. `application/json`, that contains as value another JSON object, that contains:
- * A key `schema`, that has as the value the JSON Schema from the model, here's the correct place.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:07:07 UTC 2024 - 8.7K bytes - Viewed (0) -
docs/releasing.md
- "s/\/com.squareup.okhttp3\/\([^\:]*\)\/[^\/]*\//\/com.squareup.okhttp3\/\1\/$RELEASE_VERSION\//g" \
- `find . -name "README.md"`
- ```
- 4. Tag the release and push to GitHub.
- ```
- git commit -am "Prepare for release $RELEASE_VERSION."
- git tag -a parent-$RELEASE_VERSION -m "Version $RELEASE_VERSION"
- git push && git push --tags
- ```
- 5. Wait for [GitHub Actions][github_actions] to start the publish job.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Dec 26 22:07:16 UTC 2022 - 1.5K bytes - Viewed (0) -
docs_src/sql_databases/tutorial001_an_py310.py
- app = FastAPI()
- @app.on_event("startup")
- def on_startup():
- create_db_and_tables()
- @app.post("/heroes/")
- def create_hero(hero: Hero, session: SessionDep) -> Hero:
- session.add(hero)
- session.commit()
- session.refresh(hero)
- return hero
- @app.get("/heroes/")
- def read_heroes(
- session: SessionDep,
- offset: int = 0,
- limit: Annotated[int, Query(le=100)] = 100,
- ) -> list[Hero]:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 1.7K bytes - Viewed (0) -
cni/pkg/plugin/testdata/dns.txt.golden
- -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
- -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j RETURN
- -A ISTIO_OUTPUT -p udp --dport 53 -j REDIRECT --to-port 15053
- COMMIT
- * raw
- -N ISTIO_OUTPUT
- -A OUTPUT -p udp -j ISTIO_OUTPUT
- -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
- -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon May 13 15:51:15 UTC 2024 - 1.9K bytes - Viewed (0) -
docs_src/sql_databases/tutorial001_an.py
- app = FastAPI()
- @app.on_event("startup")
- def on_startup():
- create_db_and_tables()
- @app.post("/heroes/")
- def create_hero(hero: Hero, session: SessionDep) -> Hero:
- session.add(hero)
- session.commit()
- session.refresh(hero)
- return hero
- @app.get("/heroes/")
- def read_heroes(
- session: SessionDep,
- offset: int = 0,
- limit: Annotated[int, Query(le=100)] = 100,
- ) -> List[Hero]:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 09 19:44:42 UTC 2024 - 1.8K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
- # For most projects, this workflow file will not need changing; you simply need
- # to commit it to your repository.
- #
- # You may wish to alter this file to override the set of languages analyzed,
- # or to provide custom queries or build logic.
- name: "CodeQL"
- on:
- push:
- branches: [master]
- pull_request:
- # The branches below must be a subset of the branches above
- branches: [master]
- schedule:
- - cron: '0 11 * * 4'
- jobs:
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Fri Oct 02 13:24:14 UTC 2020 - 2.5K bytes - Viewed (0) -
fess-crawler-opensearch/pom.xml
- <artifactId>fess-crawler-lasta</artifactId>
- <version>${project.version}</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.codelibs</groupId>
- <artifactId>corelib</artifactId>
- <version>${corelib.version}</version>
- </dependency>
- <dependency>
- <groupId>org.codelibs.fesen.client</groupId>
- <artifactId>fesen-httpclient</artifactId>
- <version>${fesen.httpclient.version}</version>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 3.4K bytes - Viewed (0) -
tests/test_response_by_alias.py
- "proper OpenAPI use another model with the correct field names"
- )
- }
- )
- else:
- class Config:
- schema_extra = {
- "description": (
- "response_model_by_alias=False is basically a quick hack, to support "
- "proper OpenAPI use another model with the correct field names"
- )
- }
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 11.1K bytes - Viewed (0)