Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 183 for outlier (0.15 sec)

  1. src/go/printer/testdata/declarations.input

    	abcdef: a,
    
    	// mixed key sizes: align when key sizes change within accepted ratio
    	abcdefgh: a,
    	abcdefghabcdefg: a,
    	abcdefghij: a,
    	abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij: a, // outlier - do not align with previous line
    	abcdefghijabcdefghijabcdefghijabcdefghijabcdefghijabcdefghij: a, // align with previous line
    
    	ab: a, // do not align with previous line
    	abcde: a, // align with previous line
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

          excludeOutboundPorts: ""
          # Log level for proxy, applies to gateways and sidecars.
          # Expected values are: trace|debug|info|warning|error|critical|off
          logLevel: warning
          # Specify the path to the outlier event log.
          # Example: /dev/stdout
          outlierLogPath: ""
          #If set to true, istio-proxy container will have privileged securityContext
          privileged: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

          # Log level for proxy, applies to gateways and sidecars.
          # Expected values are: trace|debug|info|warning|error|critical|off
          logLevel: warning
    
          # Specify the path to the outlier event log.
          # Example: /dev/stdout
          outlierLogPath: ""
    
          #If set to true, istio-proxy container will have privileged securityContext
          privileged: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. pilot/pkg/xds/endpoints/endpoint_builder.go

    	}
    
    	l := b.createClusterLoadAssignment(localityLbEndpoints)
    
    	// If locality aware routing is enabled, prioritize endpoints or set their lb weight.
    	// Failover should only be enabled when there is an outlier detection, otherwise Envoy
    	// will never detect the hosts are unhealthy and redirect traffic.
    	enableFailover, lb := getOutlierDetectionAndLoadBalancerSettings(b.DestinationRule(), b.port, b.subsetName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. istioctl/pkg/proxyconfig/proxyconfig.go

    	return endpointConfigCmd
    }
    
    // edsConfigCmd is a command to dump EDS output. This differs from "endpoints" which pulls from /clusters.
    // Notably, this shows metadata and locality, while clusters shows outlier health status
    func edsConfigCmd(ctx cli.Context) *cobra.Command {
    	var podName, podNamespace string
    
    	endpointConfigCmd := &cobra.Command{
    		Use: "eds [<type>/]<name>[.<namespace>]",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

    namespace mlir {
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_WHILEOUTLINEPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // This pass outlines the cond/body region of the TFL WhileOp into functions and
    // replaces the regions with calls to these outlined functions.
    class WhileOutlinePass : public impl::WhileOutlinePassBase<WhileOutlinePass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(WhileOutlinePass)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

    }
    
    // ordered list of all available outline colors
    var outlines = [
        "outline-blue",
        "outline-red",
        "outline-blueviolet",
        "outline-darkolivegreen",
        "outline-fuchsia",
        "outline-sienna",
        "outline-gold",
        "outline-orangered",
        "outline-teal",
        "outline-maroon",
        "outline-black"
    ];
    
    // state: which value is outlined this color?
    var outlined = {};
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/cmd/cover/cover_test.go

    		goldenLine = strings.Join(strings.Fields(goldenLine), " ")
    		outLine := strings.Join(strings.Fields(outLines[i]), " ")
    		if outLine != goldenLine {
    			t.Fatalf("line %d differs: got:\n\t%s\nwant:\n\t%s", i+1, outLine, goldenLine)
    		}
    	}
    	if len(goldenLines) != len(outLines) {
    		t.Fatalf("output longer than golden; first extra output line %d: %q\n", len(goldenLines)+1, outLines[len(goldenLines)])
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticinit/sched.go

    	// local variable or a global from another package.
    	safeLHS := func(lhs ir.Node) bool {
    		outer := ir.OuterValue(lhs)
    		// "*p = ..." should be safe if p is a local variable.
    		// TODO: Should ir.OuterValue handle this?
    		for outer.Op() == ir.ODEREF {
    			outer = outer.(*ir.StarExpr).X
    		}
    		v, ok := outer.(*ir.Name)
    		return ok && v.Op() == ir.ONAME && !(v.Class == ir.PEXTERN && v.Sym().Pkg == types.LocalPkg)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

        // arguments of the outlined functions, and become pass through values in
        // the outlined body function. So when outlining the while body, in addition
        // to the region arguments, all these external references need to be added
        // as function arguments.
        llvm::SmallVector<Value, 4> extern_values =
            CollectExternValues(while_region.getRegions());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top