Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for opset (0.44 sec)

  1. cmd/iam-store.go

    			return true
    		})
    
    		// update group policy map
    		cache.iamGroupPolicyMap.Range(func(g string, mp MappedPolicy) bool {
    			pset := mp.policySet()
    			if !pset.Contains(policy) {
    				return true
    			}
    			pset.Remove(policy)
    			cache.iamGroupPolicyMap.Store(g, newMappedPolicy(strings.Join(pset.ToSlice(), ",")))
    			return true
    		})
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package iptables
    
    import (
    	"errors"
    	"fmt"
    	"net/netip"
    	"strings"
    
    	"istio.io/istio/cni/pkg/ipset"
    	"istio.io/istio/cni/pkg/scopes"
    	"istio.io/istio/tools/istio-iptables/pkg/builder"
    	iptablesconfig "istio.io/istio/tools/istio-iptables/pkg/config"
    	iptablesconstants "istio.io/istio/tools/istio-iptables/pkg/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/daemonset.yaml

                # capabilities we actually require
                capabilities:
                  drop:
                  - ALL
                  add:
                  # CAP_NET_ADMIN is required to allow ipset and route table access
                  - NET_ADMIN
                  # CAP_NET_RAW is required to allow iptables mutation of the `nat` table
                  - NET_RAW
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/func.go

    }
    
    // newPoset returns a new poset from the internal cache
    func (f *Func) newPoset() *poset {
    	if len(f.Cache.scrPoset) > 0 {
    		po := f.Cache.scrPoset[len(f.Cache.scrPoset)-1]
    		f.Cache.scrPoset = f.Cache.scrPoset[:len(f.Cache.scrPoset)-1]
    		return po
    	}
    	return newPoset()
    }
    
    // retPoset returns a poset to the internal cache
    func (f *Func) retPoset(po *poset) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. cmd/endpoint.go

    						hostIPCache[host] = hostIPSet
    					}
    				}
    				if IPSet, ok := pathIPMap[endpoint.Path]; ok {
    					if !IPSet.Intersection(hostIPSet).IsEmpty() {
    						return nil, setupType,
    							config.ErrInvalidErasureEndpoints(nil).Msg(fmt.Sprintf("same path '%s' can not be served by different port on same address", endpoint.Path))
    					}
    					pathIPMap[endpoint.Path] = IPSet.Union(hostIPSet)
    				} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      LOG(INFO) << "odml_to_stablehlo is being deprecated, please use "
                   "TFlite converter with flag: "
                   "converter.target_spec.supported_ops = "
                   "[tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS] ";
    
      mlir::odml::initAllPasses();
      mlir::PassPipelineCLParser passPipeline("", "Add available compiler passes.");
      llvm::cl::ParseCommandLineOptions(argc, argv, "ODML StableHLO Bridge.\n");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/BUILD

        ],
        copts = ["-O3"],
        deprecation = "odml_to_stablehlo is being deprecated, please use TFlite converter with flag: " +
                      "converter.target_spec.supported_ops = " +
                      " [tf.lite.OpsSet.EXPERIMENTAL_STABLEHLO_OPS]",
        deps = [
            ":check_accepted_ops_pass",
            ":op_stat_pass",
            ":stablehlo_util",
            ":transforms",
            "//tensorflow/cc/saved_model:loader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		}
    
    		startTime := time.Now()
    		txnResp, err := s.client.KV.Txn(ctx).If(
    			clientv3.Compare(clientv3.ModRevision(key), "=", origState.rev),
    		).Then(
    			clientv3.OpDelete(key),
    		).Else(
    			clientv3.OpGet(key),
    		).Commit()
    		metrics.RecordEtcdRequest("delete", s.groupResourceString, err, startTime)
    		if err != nil {
    			return err
    		}
    		if !txnResp.Succeeded {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server_linux.go

    	"k8s.io/kubernetes/pkg/proxy"
    	proxyconfigapi "k8s.io/kubernetes/pkg/proxy/apis/config"
    	"k8s.io/kubernetes/pkg/proxy/iptables"
    	"k8s.io/kubernetes/pkg/proxy/ipvs"
    	utilipset "k8s.io/kubernetes/pkg/proxy/ipvs/ipset"
    	utilipvs "k8s.io/kubernetes/pkg/proxy/ipvs/util"
    	"k8s.io/kubernetes/pkg/proxy/nftables"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	utiliptables "k8s.io/kubernetes/pkg/util/iptables"
    	"k8s.io/utils/exec"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

              "ops and disabling `_experimental_lower_tensor_list_ops` flag in the "
              "TFLite converter object. For example, "
              "converter.target_spec.supported_ops = "
              "[tf.lite.OpsSet.TFLITE_BUILTINS, tf.lite.OpsSet.SELECT_TF_OPS]\\n "
              "converter._experimental_lower_tensor_list_ops = False");
          signalPassFailure();
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top