Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,564 for wads (0.06 sec)

  1. pkg/model/xds.go

    		return "SDS"
    	case NameTableType:
    		return "NDS"
    	case ProxyConfigType:
    		return "PCDS"
    	case ExtensionConfigurationType:
    		return "ECDS"
    	case AddressType, WorkloadType:
    		return "WDS"
    	case WorkloadAuthorizationType:
    		return "WADS"
    	default:
    		return typeURL
    	}
    }
    
    // GetMetricType returns the form of a type reported for metrics
    func GetMetricType(typeURL string) string {
    	switch typeURL {
    	case ClusterType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. manifests/addons/dashboards/lib/panels.libsonnet

            overrideSeries('lds', 'Listeners'),
            overrideSeries('rds', 'Routes'),
            overrideSeries('istio.io/debug', 'Debug'),
            overrideSeries('wads', 'Authorization'),
            overrideSeries('wds', 'Workloads'),
          ]),
      },
    
      heatmap: {
        local heatmap = g.panel.heatmap,
        local options = heatmap.options,
    
        base(title, targets, desc=''):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. releasenotes/notes/wds.yaml

    Kuat <******@****.***> 1697144509 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 21:01:49 UTC 2023
    - 440 bytes
    - Viewed (0)
  4. tests/integration/iop-wds.yaml

    John Howard <******@****.***> 1713467383 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 398 bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/lite/quantization/quantization_passes.h

    // different dialect ops might have different ways to assign the name.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateImportQuantStatsPass(
        OperationToName op_to_name, const std::string& stats_str);
    
    // Creates an instance pass to import quantization stats to the operations in
    // the function. A custom method to get the name from the op is used because
    // different dialect ops might have different ways to assign the name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:43:51 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. architecture/security/docs/overview.dot

    digraph {
        envoy -> sds [dir=both, label="SDS"]
        envoy -> xdsproxy  [dir=both, label="ADS"]
    
        sds -> ca [label="CSR"]
    
        xdsproxy -> discovery [dir=both,label="ADS"]
    
        envoy [shape=hexagon, color=purple]
    
        subgraph cluster_istioagent {
            label = "Istio Agent"
            color="orange"
            sds
            xdsproxy
        }
    
        subgraph cluster_istiod {
            label = "Istiod"
            color="lightblue"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 00:43:58 UTC 2023
    - 460 bytes
    - Viewed (0)
  7. tests/testdata/mcp_bootstrap_tmpl.json

                }
              }
            ],
            "http2_protocol_options": {}
          }
        ]
      },
      "dynamic_resources": {
        "lds_config": {
          "ads": {}
         },
        "cds_config": {
          "ads": {}
        },
        "ads_config": {
          "api_type": "GRPC",
          "grpc_services": {
            "envoy_grpc": {
              "cluster_name": "xds-grpc"
            }
          },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 08 21:09:56 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/index.md

    ## OAuth2
    
    OAuth2 is a specification that defines several ways to handle authentication and authorization.
    
    It is quite an extensive specification and covers several complex use cases.
    
    It includes ways to authenticate using a "third party".
    
    That's what all the systems with "login with Facebook, Google, Twitter, GitHub" use underneath.
    
    ### OAuth 1
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. test/copy.go

    	for i = 0; i < out; i++ {
    		if outputS[i] != u8(i+13) {
    			badS("beforeS", i, length, in, out)
    			return
    		}
    	}
    	// copied part
    	for ; i < out+n; i++ {
    		if outputS[i] != u8(i+in-out) {
    			badS("copiedS", i, length, in, out)
    			return
    		}
    	}
    	// after
    	for ; i < len(outputS); i++ {
    		if outputS[i] != u8(i+13) {
    			badS("afterS", i, length, in, out)
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  10. test/codegen/race.go

    // license that can be found in the LICENSE file.
    
    package codegen
    
    // Check that we elide racefuncenter/racefuncexit for
    // functions with no calls (but which might panic
    // in various ways). See issue 31219.
    // amd64:-"CALL.*racefuncenter.*"
    // arm64:-"CALL.*racefuncenter.*"
    // ppc64le:-"CALL.*racefuncenter.*"
    func RaceMightPanic(a []int, i, j, k, s int) {
    	var b [4]int
    	_ = b[i]     // panicIndex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 02 03:03:16 UTC 2020
    - 651 bytes
    - Viewed (0)
Back to top