Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 388 for 900s (0.04 sec)

  1. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

            notRequestPrincipals: ["not-requestPrincipals"]
            notNamespaces: ["not-ns", "*not-ns-suffix", "not-ns-prefix*", "*"]
            notIpBlocks: ["9.0.0.1"]
            notRemoteIpBlocks: ["192.168.244.139"]
        to:
        - operation:
            methods: ["method"]
            hosts: ["exact.com"]
            ports: ["80"]
            paths: ["/exact"]
            notMethods: ["not-method"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/tcp/dry-run-mix-in.yaml

      annotations:
        "istio.io/dry-run": "false"
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      action: ALLOW
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 625 bytes
    - Viewed (0)
  3. cmd/storage-datatypes_test.go

    func BenchmarkDecodeDiskInfoMsgp(b *testing.B) {
    	v := DiskInfo{
    		Total:     1000,
    		Free:      1000,
    		Used:      1000,
    		FSType:    "xfs",
    		RootDisk:  true,
    		Healing:   true,
    		Endpoint:  "http://localhost:9001/tmp/drive1",
    		MountPath: "/tmp/drive1",
    		ID:        "uuid",
    		Error:     "",
    	}
    	var buf bytes.Buffer
    	msgp.Encode(&buf, &v)
    	rd := msgp.NewEndlessReader(buf.Bytes(), b)
    	dc := msgp.NewReader(rd)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-custom-grpc-provider-out2.yaml

        value:
          stringMatch:
            prefix: istio-ext-authz
      grpcService:
        envoyGrpc:
          authority: my-custom-ext-authz.foo.svc.cluster.local
          clusterName: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
        timeout: 0.002s
      statusOnError:
        code: Forbidden
      transportApiVersion: V3
      withRequestBody:
        allowPartialMessage: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 666 bytes
    - Viewed (0)
  5. tests/testdata/config/rule-regex-route.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: regex-extsvc
      namespace: testns
    spec:
       hosts:
       - regex.extsvc.com
       ports:
       - number: 9003
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 8080
          labels:
            version: v1
        - address: 127.0.0.3
          ports:
            http: 8081
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  6. tests/testdata/config/rule-default-route-cors-policy.yaml

            allowMethods:
              - POST
              - GET
              - OPTIONS
            allowHeaders:
              - content-type
            exposeHeaders:
              - x-custom-header
            maxAge: 300s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 01 00:53:22 UTC 2020
    - 827 bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/custom-grpc-provider-out2.yaml

        value:
          stringMatch:
            prefix: istio-ext-authz
      grpcService:
        envoyGrpc:
          authority: my-custom-ext-authz.foo.svc.cluster.local
          clusterName: outbound|9000||my-custom-ext-authz.foo.svc.cluster.local
        timeout: 0.002s
      statusOnError:
        code: Forbidden
      transportApiVersion: V3
      withRequestBody:
        allowPartialMessage: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:13 UTC 2023
    - 666 bytes
    - Viewed (0)
  8. docs/iam/access-management-plugin.md

    minio server /tmp/disk{1...4}
    ```
    
    Now, let's test it out with `mc`:
    
    ```sh
    mc alias set myminio http://localhost:9000 minio minio123
    mc ls myminio
    mc mb myminio/test
    mc cp /etc/issue myminio/test
    mc admin user add myminio foo foobar123
    export MC_HOST_foo=http://foo:foobar123@localhost:9000
    mc ls foo
    mc cp /etc/issue myminio/test/issue2
    ```
    
    Only the last operation would fail with a permissions error.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 13 22:28:48 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. hack/verify-licenses.sh

        fi
    done < "${ARTIFACTS}"/licenses.csv
    awk '{ printf "%-100s : %-20s : %s\n", $1, $2, $3 }' "${ARTIFACTS}"/approved_licenses.dump
    
    
    if [[ ${#packages_url_missing[@]} -gt 0 ]]; then
        echo -e '\n[ERROR] The following go-packages in the project have unknown or unreachable license URL:'
        awk '{ printf "%-100s :  %-20s : %s\n", $1, $2, $3 }' "${ARTIFACTS}"/approved_licenses_with_missing_urls.dump
        exit_code=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. docs_src/generate_clients/tutorial003.py

    
    @app.get("/items/", response_model=List[Item], tags=["items"])
    async def get_items():
        return [
            {"name": "Plumbus", "price": 3},
            {"name": "Portal Gun", "price": 9001},
        ]
    
    
    @app.post("/users/", response_model=ResponseMessage, tags=["users"])
    async def create_user(user: User):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 04 22:02:18 UTC 2022
    - 939 bytes
    - Viewed (0)
Back to top