Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for insertions (0.26 sec)

  1. cni/pkg/iptables/iptables.go

    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, iptablesconstants.OUTPUT, iptablesconstants.NAT,
    		"-j", ChainInpodOutput,
    	)
    
    	// From here on, we should be only inserting rules into our custom chains.
    
    	// CLI: -A ISTIO_PRERT -m mark --mark 0x539/0xfff -j CONNMARK --set-xmark 0x111/0xfff
    	//
    	// DESC: If we have a packet mark, set a connmark.
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  2. common/config/.golangci.yml

        - unparam
        - unused
        - gci
        - gosec
      fast: false
    linters-settings:
      errcheck:
        # report about not checking of errors in type assertions: `a := b.(MyStruct)`;
        # default is false: such cases aren't reported by default.
        check-type-assertions: false
        # report about assignment of errors to blank identifier: `num, _ := strconv.Atoi(numStr)`;
        # default is false: such cases aren't reported by default.
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/pilot-dashboard.json

                    "uid": "${datasource}"
                  },
                  "expr": "sum(rate(sidecar_injection_success_total[1m]))",
                  "interval": "",
                  "legendFormat": "Injections (Success)",
                  "refId": "A"
                },
                {
                  "datasource": {
                    "type": "prometheus",
                    "uid": "${datasource}"
                  },
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 03:47:04 GMT 2024
    - 61K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest-generate_test.go

    					if want, ok := predicate(s); ok {
    						if want != found {
    							t.Fatalf("expected webhook to go to service %q, found %q", want, found)
    						}
    						return
    					}
    					// Otherwise, look through our assertions for a matching one, and check that
    					for _, w := range tt.checks {
    						if w.namespaceLabel.String() == s.namespace.String() && w.objectLabel.String() == s.pod.String() {
    							if found != w.match {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    "seriesOverrides": [], "spaceLength": 10, "stack": false, "steppedLine": false, "targets": [ { "expr": "sum(rate(sidecar_injection_success_total[1m]))", "interval": "", "legendFormat": "Injections (Success)", "refId": "A" }, { "expr": "sum(rate(sidecar_injection_failure_total[1m]))", "interval": "", "legendFormat": "Injections (Failure)", "refId": "B" } ], "thresholds": [], "timeFrom": null, "timeRegions": [], "timeShift": null, "title": "Sidecar Injection", "tooltip": { "shared": true, "sort": 0, "value_type":...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          properties:
                            filterClass:
                              description: |-
                                Determines the filter insertion order.
    
                                Valid Options: AUTHN, AUTHZ, STATS
                              enum:
                              - UNSPECIFIED
                              - AUTHN
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                          properties:
                            filterClass:
                              description: |-
                                Determines the filter insertion order.
    
                                Valid Options: AUTHN, AUTHZ, STATS
                              enum:
                              - UNSPECIFIED
                              - AUTHN
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  8. architecture/networking/pilot.md

    * Be very, very careful.
    * The cache has a builtin test, enabled with `UNSAFE_PILOT_ENABLE_RUNTIME_ASSERTIONS=true`, that runs in CI. This will panic if any key is written to with a different value.
    
    #### Partial Computations
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
Back to top