Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 621 for coreit (0.04 sec)

  1. istioctl/pkg/workload/workload_test.go

    1. createClientFunc := func(client kube.CLIClient) {
    2. client.Kube().CoreV1().ServiceAccounts("bar").Create(context.Background(), &v1.ServiceAccount{
    3. ObjectMeta: metav1.ObjectMeta{Namespace: "bar", Name: "vm-serviceaccount"},
    4. Secrets: []v1.ObjectReference{{Name: "test"}},
    5. }, metav1.CreateOptions{})
    6. client.Kube().CoreV1().ConfigMaps("bar").Create(context.Background(), &v1.ConfigMap{
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 20:04:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.properties

    1. # Hibernate Validator
    2. # -------------------
    3. constraints.CreditCardNumber.message = {item} is invalid credit card number.
    4. constraints.EAN.message = {item} is invalid {type} barcode.
    5. constraints.Email.message = {item} is not a well-formed email address.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_en.properties

    1. # Hibernate Validator
    2. # -------------------
    3. constraints.CreditCardNumber.message = {item} is invalid credit card number.
    4. constraints.EAN.message = {item} is invalid {type} barcode.
    5. constraints.Email.message = {item} is not a well-formed email address.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Mar 18 03:05:44 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. cni/pkg/iptables/testdata/tproxy.golden

    1. COMMIT
    2. * raw
    3. -N ISTIO_OUTPUT
    4. -N ISTIO_PRERT
    5. -A PREROUTING -j ISTIO_PRERT
    6. -A OUTPUT -j ISTIO_OUTPUT
    7. -A ISTIO_OUTPUT -p udp -m mark --mark 0x539/0xfff -m udp --dport 53 -j CT --zone 1
    8. -A ISTIO_PRERT -p udp -m mark ! --mark 0x539/0xfff -m udp --sport 53 -j CT --zone 1
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Sep 25 20:54:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. cni/pkg/plugin/testdata/invalid-drop.txt.golden

    1. * mangle
    2. -N ISTIO_DROP
    3. -A PREROUTING -m conntrack --ctstate INVALID -j ISTIO_DROP
    4. -A ISTIO_DROP -j DROP
    5. COMMIT
    6. * nat
    7. -N ISTIO_INBOUND
    8. -N ISTIO_REDIRECT
    9. -N ISTIO_IN_REDIRECT
    10. -N ISTIO_OUTPUT
    11. -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    12. -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    13. -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    14. -A PREROUTING -p tcp -j ISTIO_INBOUND
    15. -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Sep 25 20:54:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. .github/pull_request_template.md

    1. - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
    2. - [ ] Run `mvn clean verify` to make sure basic checks pass. A more thorough check will
    3. be performed on your pull request automatically.
    4. - [ ] You have run the [Core IT][core-its] successfully.
    5.  
    6. If your pull request is about ~20 lines of code you don't need to sign an
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. docs_src/sql_databases/tutorial002_py310.py

    1. session.add(hero_db)
    2. session.commit()
    3. session.refresh(hero_db)
    4. return hero_db
    5.  
    6.  
    7. @app.delete("/heroes/{hero_id}")
    8. def delete_hero(hero_id: int, session: Session = Depends(get_session)):
    9. hero = session.get(Hero, hero_id)
    10. if not hero:
    11. raise HTTPException(status_code=404, detail="Hero not found")
    12. session.delete(hero)
    13. session.commit()
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/kubeinject.go

    1. options := metav1.ListOptions{LabelSelector: selector}
    2.  
    3. sortBy := func(pods []*corev1.Pod) sort.Interface { return sort.Reverse(podutils.ActivePods(pods)) }
    4. podList, err := client.Pods(namespace).List(context.TODO(), options)
    5. if err != nil {
    6. return nil, err
    7. }
    8. pods := make([]*corev1.Pod, 0, len(podList.Items))
    9. for i := range podList.Items {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 15 16:31:46 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. docs_src/sql_databases/tutorial001_py39.py

    1. @app.on_event("startup")
    2. def on_startup():
    3. create_db_and_tables()
    4.  
    5.  
    6. @app.post("/heroes/")
    7. def create_hero(hero: Hero, session: Session = Depends(get_session)) -> Hero:
    8. session.add(hero)
    9. session.commit()
    10. session.refresh(hero)
    11. return hero
    12.  
    13.  
    14. @app.get("/heroes/")
    15. def read_heroes(
    16. session: Session = Depends(get_session),
    17. offset: int = 0,
    18. limit: int = Query(default=100, le=100),
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/net.go

    1. s.ztunnelServer.Close()
    2. }
    3.  
    4. func (s *NetServer) rescanPod(pod *corev1.Pod) error {
    5. // this can happen if the pod was dynamically added to the mesh after it was created.
    6. // in that case, try finding the netns using procfs.
    7. filter := map[types.UID]*corev1.Pod{
    8. pod.UID: pod,
    9. }
    10. return s.scanProcForPodsAndCache(filter)
    11. }
    12.  
    13. func (s *NetServer) getOrOpenNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    14. if netNs == "" {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Oct 21 16:48:55 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top