Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 154 for outlier (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/crypto/internal/boring/rsa.go

    	defer C._goboringcrypto_EVP_PKEY_CTX_free(ctx)
    
    	var outLen C.size_t
    	if crypt(ctx, nil, &outLen, base(in), C.size_t(len(in))) == 0 {
    		return nil, fail("EVP_PKEY_decrypt/encrypt")
    	}
    	out := make([]byte, outLen)
    	if crypt(ctx, base(out), &outLen, base(in), C.size_t(len(in))) == 0 {
    		return nil, fail("EVP_PKEY_decrypt/encrypt")
    	}
    	return out[:outLen], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 23:38:03 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. src/cmd/covdata/tool_test.go

    func testMergeSimple(t *testing.T, s state, indir1, indir2, tag string) {
    	outdir := filepath.Join(s.dir, "simpleMergeOut"+tag)
    	if err := os.Mkdir(outdir, 0777); err != nil {
    		t.Fatalf("can't create outdir %s: %v", outdir, err)
    	}
    
    	// Merge the two dirs into a final result.
    	ins := fmt.Sprintf("-i=%s,%s", indir1, indir2)
    	out := fmt.Sprintf("-o=%s", outdir)
    	margs := []string{ins, out}
    	lines := runToolOp(t, s, "merge", margs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top