Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 621 for coreit (0.05 sec)

  1. .gitignore

    1. /_artifacts/
    2. /_rundir/
    3.  
    4. # Go dependencies installed on Jenkins
    5. /_gopath/
    6.  
    7. # Config directories created by gcloud and gsutil on Jenkins
    8. /.config/gcloud*/
    9. /.gsutil/
    10.  
    11. # CoreOS stuff
    12. /cluster/libvirt-coreos/coreos_*.img
    13.  
    14. # Downloaded Kubernetes binary release
    15. /kubernetes/
    16.  
    17. # direnv .envrc files
    18. .envrc
    19.  
    20. # Downloaded kubernetes binary release tar ball
    21. 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)
  2. cni/pkg/nodeagent/podcgroupns_test.go

    1. // limitations under the License.
    2.  
    3. package nodeagent
    4.  
    5. import (
    6. "testing"
    7.  
    8. corev1 "k8s.io/api/core/v1"
    9. metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    10. "k8s.io/apimachinery/pkg/types"
    11.  
    12. "istio.io/istio/pkg/test/util/assert"
    13. )
    14.  
    15. func TestWithProcFs(t *testing.T) {
    16. n := NewPodNetnsProcFinder(fakeFs())
    17. pod := &corev1.Pod{ObjectMeta: metav1.ObjectMeta{
    18. Name: "foo",
    19. 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)
  3. docs/en/docs/advanced/additional-responses.md

    1. The correct place is:
    2.  
    3. * In the key `content`, that has as value another JSON object (`dict`) that contains:
    4. * A key with the media type, e.g. `application/json`, that contains as value another JSON object, that contains:
    5. * 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)
  4. docs/releasing.md

    1. "s/\/com.squareup.okhttp3\/\([^\:]*\)\/[^\/]*\//\/com.squareup.okhttp3\/\1\/$RELEASE_VERSION\//g" \
    2. `find . -name "README.md"`
    3. ```
    4.  
    5. 4. Tag the release and push to GitHub.
    6.  
    7. ```
    8. git commit -am "Prepare for release $RELEASE_VERSION."
    9. git tag -a parent-$RELEASE_VERSION -m "Version $RELEASE_VERSION"
    10. git push && git push --tags
    11. ```
    12.  
    13. 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)
  5. docs_src/sql_databases/tutorial001_an_py310.py

    1. app = FastAPI()
    2.  
    3.  
    4. @app.on_event("startup")
    5. def on_startup():
    6. create_db_and_tables()
    7.  
    8.  
    9. @app.post("/heroes/")
    10. def create_hero(hero: Hero, session: SessionDep) -> Hero:
    11. session.add(hero)
    12. session.commit()
    13. session.refresh(hero)
    14. return hero
    15.  
    16.  
    17. @app.get("/heroes/")
    18. def read_heroes(
    19. session: SessionDep,
    20. offset: int = 0,
    21. limit: Annotated[int, Query(le=100)] = 100,
    22. ) -> 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)
  6. cni/pkg/plugin/testdata/dns.txt.golden

    1. -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    2. -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j RETURN
    3. -A ISTIO_OUTPUT -p udp --dport 53 -j REDIRECT --to-port 15053
    4. COMMIT
    5. * raw
    6. -N ISTIO_OUTPUT
    7. -A OUTPUT -p udp -j ISTIO_OUTPUT
    8. -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    9. -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)
  7. docs_src/sql_databases/tutorial001_an.py

    1. app = FastAPI()
    2.  
    3.  
    4. @app.on_event("startup")
    5. def on_startup():
    6. create_db_and_tables()
    7.  
    8.  
    9. @app.post("/heroes/")
    10. def create_hero(hero: Hero, session: SessionDep) -> Hero:
    11. session.add(hero)
    12. session.commit()
    13. session.refresh(hero)
    14. return hero
    15.  
    16.  
    17. @app.get("/heroes/")
    18. def read_heroes(
    19. session: SessionDep,
    20. offset: int = 0,
    21. limit: Annotated[int, Query(le=100)] = 100,
    22. ) -> 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)
  8. .github/workflows/codeql-analysis.yml

    1. # For most projects, this workflow file will not need changing; you simply need
    2. # to commit it to your repository.
    3. #
    4. # You may wish to alter this file to override the set of languages analyzed,
    5. # or to provide custom queries or build logic.
    6. name: "CodeQL"
    7.  
    8. on:
    9. push:
    10. branches: [master]
    11. pull_request:
    12. # The branches below must be a subset of the branches above
    13. branches: [master]
    14. schedule:
    15. - cron: '0 11 * * 4'
    16.  
    17. 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)
  9. fess-crawler-opensearch/pom.xml

    1. <artifactId>fess-crawler-lasta</artifactId>
    2. <version>${project.version}</version>
    3. <optional>true</optional>
    4. </dependency>
    5. <dependency>
    6. <groupId>org.codelibs</groupId>
    7. <artifactId>corelib</artifactId>
    8. <version>${corelib.version}</version>
    9. </dependency>
    10. <dependency>
    11. <groupId>org.codelibs.fesen.client</groupId>
    12. <artifactId>fesen-httpclient</artifactId>
    13. <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)
  10. tests/test_response_by_alias.py

    1. "proper OpenAPI use another model with the correct field names"
    2. )
    3. }
    4. )
    5. else:
    6.  
    7. class Config:
    8. schema_extra = {
    9. "description": (
    10. "response_model_by_alias=False is basically a quick hack, to support "
    11. "proper OpenAPI use another model with the correct field names"
    12. )
    13. }
    14.  
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top