Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for pass2 (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func (c *Cacher) Delete(
    	ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions,
    	validateDeletion storage.ValidateObjectFunc, _ runtime.Object) error {
    	// Ignore the suggestion and try to pass down the current version of the object
    	// read from cache.
    	if elem, exists, err := c.watchCache.GetByKey(key); err != nil {
    		klog.Errorf("GetByKey returned error: %v", err)
    	} else if exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    gentbl_cc_library(
        name = "tensorflow_lite_passes_inc_gen",
        compatible_with = get_compatible_with_portable(),
        tbl_outs = [
            (
                [
                    "-gen-pass-decls",
                    "-name=TensorFlowLite",
                ],
                "transforms/passes.h.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "transforms/passes.td",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // passthroughHttpProtocolOptions are http protocol options used for pass through clusters.
    // nolint
    // revive:disable-next-line
    var passthroughHttpProtocolOptions = protoconv.MessageToAny(&http.HttpProtocolOptions{
    	CommonHttpProtocolOptions: &core.HttpProtocolOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    	// PassthroughCluster
    	Passthrough = "allow_any"
    
    	// PassthroughFilterChain to catch traffic that doesn't match other filter chains.
    	PassthroughFilterChain = "PassthroughFilterChain"
    
    	// Inbound pass through cluster need to the bind the loopback ip address for the security and loop avoidance.
    	InboundPassthroughCluster = "InboundPassthroughCluster"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    		clusters = append(clusters, configgen.buildInboundClusters(cb, proxy, instances, inboundPatcher)...)
    		if proxy.EnableHBONEListen() {
    			clusters = append(clusters, configgen.buildInboundHBONEClusters())
    		}
    		// Pass through clusters for inbound traffic. These cluster bind loopback-ish src address to access node local service.
    		clusters = inboundPatcher.conditionallyAppend(clusters, nil, cb.buildInboundPassthroughCluster())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

          fi
          params+=" --proxy-mode=ipvs --ipvs-sync-period=1m --ipvs-min-sync-period=10s"
          ;;
        nftables)
          # Pass --conntrack-tcp-be-liberal so we can test that this makes the
          # "proxy implementation should not be vulnerable to the invalid conntrack state bug"
          # test pass. https://issues.k8s.io/122663#issuecomment-1885024015
          params+=" --proxy-mode=nftables --conntrack-tcp-be-liberal"
          ;;
      esac
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		s.startBlock(mid)
    		s.condBranch(cond.Y, yes, no, likely)
    		return
    		// Note: if likely==1, then both recursive calls pass 1.
    		// If likely==-1, then we don't have enough information to decide
    		// whether the first branch is likely or not. So we pass 0 for
    		// the likeliness of the first branch.
    		// TODO: have the frontend give us branch prediction hints for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/types.go

    type Diagnosis struct {
    	// NodeToStatusMap records the status of each retriable node (status Unschedulable)
    	// if they're rejected in PreFilter (via PreFilterResult) or Filter plugins.
    	// Nodes that pass PreFilter/Filter plugins are not included in this map.
    	// While this map may contain UnschedulableAndUnresolvable statuses, the absence of
    	// a node should be interpreted as UnschedulableAndUnresolvable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  9. RELEASE.md

        *   Add TensorSpec to represent the specification of Tensors.
        *   Constant folding pass is now deterministic.
        *   Support `float16` `dtype` in `tf.linalg.*`.
        *   Add `tf.estimator.export.TensorServingInputReceiver` that allows
            `tf.estimator.Estimator.export_savedmodel` to pass raw tensors to model
            functions.
    
    ## Deprecations
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    #include "mlir/IR/TypeUtilities.h"  // from @llvm-project
    #include "mlir/IR/Types.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "stablehlo/dialect/ChloOps.h"  // from @stablehlo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top