Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for opset (0.06 sec)

  1. src/go/types/struct.go

    		return embeddedFieldIdent(e.X)
    	case *ast.IndexListExpr:
    		return embeddedFieldIdent(e.X)
    	}
    	return nil // invalid embedded field
    }
    
    func (check *Checker) declareInSet(oset *objset, pos token.Pos, obj Object) bool {
    	if alt := oset.insert(obj); alt != nil {
    		err := check.newError(DuplicateDecl)
    		err.addf(atPos(pos), "%s redeclared", obj.Name())
    		err.addAltDecl(alt)
    		err.report()
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/struct.go

    		return e.Sel
    	case *syntax.IndexExpr:
    		return embeddedFieldIdent(e.X)
    	}
    	return nil // invalid embedded field
    }
    
    func (check *Checker) declareInSet(oset *objset, pos syntax.Pos, obj Object) bool {
    	if alt := oset.insert(obj); alt != nil {
    		err := check.newError(DuplicateDecl)
    		err.addf(pos, "%s redeclared", obj.Name())
    		err.addAltDecl(alt)
    		err.report()
    		return false
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/ssa/prove.go

    // cleanup returns the posets to the free list
    func (ft *factsTable) cleanup(f *Func) {
    	for _, po := range []*poset{ft.orderS, ft.orderU} {
    		// Make sure it's empty as it should be. A non-empty poset
    		// might cause errors and miscompilations if reused.
    		if checkEnabled {
    			if err := po.CheckEmpty(); err != nil {
    				f.Fatalf("poset not empty after function %s: %v", f.Name, err)
    			}
    		}
    		f.retPoset(po)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/runtime/os_linux.go

    	}
    
    	// Disable signals during clone, so that the new thread starts
    	// with signals disabled. It will enable them in minit.
    	var oset sigset
    	sigprocmask(_SIG_SETMASK, &sigset_all, &oset)
    	ret := retryOnEAGAIN(func() int32 {
    		r := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(abi.FuncPCABI0(mstart)))
    		// clone returns positive TID, negative errno.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top