Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 131 for cautious (0.17 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/helpers.go

    	ip, _ := netip.AddrFromSlice(b) // Address only comes from objects we create, so it must be valid
    	return ip
    }
    
    func (a index) getWaypointAddress(w *Waypoint) *workloadapi.GatewayAddress {
    	// probably overly cautious... I don't think the ambient index impl counts something with zero addresses as waypoint
    	if w != nil && len(w.Addresses) >= 1 {
    		return &workloadapi.GatewayAddress{
    			Destination: &workloadapi.GatewayAddress_Address{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 22 20:35:23 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/go/types/operand.go

    		buf.WriteString(" (")
    	}
    
    	// <untyped kind>
    	hasType := false
    	switch x.mode {
    	case invalid, novalue, builtin, typexpr:
    		// no type
    	default:
    		// should have a type, but be cautious (don't crash during printing)
    		if x.typ != nil {
    			if isUntyped(x.typ) {
    				buf.WriteString(x.typ.(*Basic).name)
    				buf.WriteByte(' ')
    				break
    			}
    			hasType = true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/operand.go

    		buf.WriteString(" (")
    	}
    
    	// <untyped kind>
    	hasType := false
    	switch x.mode {
    	case invalid, novalue, builtin, typexpr:
    		// no type
    	default:
    		// should have a type, but be cautious (don't crash during printing)
    		if x.typ != nil {
    			if isUntyped(x.typ) {
    				buf.WriteString(x.typ.(*Basic).name)
    				buf.WriteByte(' ')
    				break
    			}
    			hasType = true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        We must ensure that there is a single underlying resource that not
        distributed across replicas. There is a single underlying resource when the
        resource device type is CPU, so we cautiously only apply in this case.
    
        To be cautious we never hoist a read that comes after a write to the same
        resource.
      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateHoistBroadcastReadPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    		v := reflect.Indirect(reflect.ValueOf(parent)).FieldByName(name)
    		if a.iter.index >= v.Len() {
    			break
    		}
    
    		// element x may be nil in a bad AST - be cautious
    		var x ast.Node
    		if e := v.Index(a.iter.index); e.IsValid() {
    			x = e.Interface().(ast.Node)
    		}
    
    		a.iter.step = 1
    		a.apply(parent, name, &a.iter, x)
    		a.iter.index += a.iter.step
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    If you are extending Gradle, e.g. by writing a plugin for another ecosystem, declaring custom attributes could be an option if you want to support variant-aware dependency management features in your plugin.
    However, you should be cautious if you also attempt to publish libraries.
    Semantics of new attributes are usually defined through a plugin, which can carry <<#sec:abm_compatibility_rules,compatibility>> and <<sec:abm_disambiguation_rules,disambiguation>> rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/assignments.go

    func (check *Checker) typesSummary(list []Type, variadic bool) string {
    	var res []string
    	for i, t := range list {
    		var s string
    		switch {
    		case t == nil:
    			fallthrough // should not happen but be cautious
    		case !isValid(t):
    			s = "unknown type"
    		case isUntyped(t):
    			if isNumeric(t) {
    				// Do not imply a specific type requirement:
    				// "have number, want float64" is better than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/go/types/assignments.go

    func (check *Checker) typesSummary(list []Type, variadic bool) string {
    	var res []string
    	for i, t := range list {
    		var s string
    		switch {
    		case t == nil:
    			fallthrough // should not happen but be cautious
    		case !isValid(t):
    			s = "unknown type"
    		case isUntyped(t):
    			if isNumeric(t) {
    				// Do not imply a specific type requirement:
    				// "have number, want float64" is better than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/resolver.go

    				imp = NewPackage(path, name)
    			}
    			// continue to use the package as best as we can
    			imp.fake = true // avoid follow-up lookup failures
    		}
    	}
    
    	// package should be complete or marked fake, but be cautious
    	if imp.complete || imp.fake {
    		check.impMap[key] = imp
    		// Once we've formatted an error message, keep the pkgPathMap
    		// up-to-date on subsequent imports. It is used for package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/go/types/resolver.go

    				imp = NewPackage(path, name)
    			}
    			// continue to use the package as best as we can
    			imp.fake = true // avoid follow-up lookup failures
    		}
    	}
    
    	// package should be complete or marked fake, but be cautious
    	if imp.complete || imp.fake {
    		check.impMap[key] = imp
    		// Once we've formatted an error message, keep the pkgPathMap
    		// up-to-date on subsequent imports. It is used for package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top