Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 150 for conservative (0.2 sec)

  1. src/go/types/resolver.go

    		check.recordDef(file.Name, nil)
    
    		// Use the actual source file extent rather than *ast.File extent since the
    		// latter doesn't include comments which appear at the start or end of the file.
    		// Be conservative and use the *ast.File extent if we don't have a *token.File.
    		pos, end := file.Pos(), file.End()
    		if f := check.fset.File(file.Pos()); f != nil {
    			pos, end = token.Pos(f.Base()), token.Pos(f.Base()+f.Size())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    		panic("unreachable")
    	}
    	check.errorf(&x, code, "%s %s %s", keyword, msg, &x)
    }
    
    // goVal returns the Go value for val, or nil.
    func goVal(val constant.Value) any {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/go/doc/reader.go

    	domName := ""
    	domFreq := 0
    	prev := ""
    	n := 0
    	for _, spec := range decl.Specs {
    		s, ok := spec.(*ast.ValueSpec)
    		if !ok {
    			continue // should not happen, but be conservative
    		}
    		name := ""
    		switch {
    		case s.Type != nil:
    			// a type is present; determine its name
    			if n, imp := baseTypeName(s.Type); !imp {
    				name = n
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/stmt.go

    		panic("unreachable")
    	}
    	check.errorf(&x, code, "%s %s %s", keyword, msg, &x)
    }
    
    // goVal returns the Go value for val, or nil.
    func goVal(val constant.Value) interface{} {
    	// val should exist, but be conservative and check
    	if val == nil {
    		return nil
    	}
    	// Match implementation restriction of other compilers.
    	// gc only checks duplicates for integer, floating-point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_test.go

    	return s
    }
    
    // escape inserts escapes appropriate for use in a shell command line
    func escape(s string) string {
    	s = strings.Replace(s, "\\", "\\\\", -1)
    	s = strings.Replace(s, "'", "\\'", -1)
    	// Conservative guess at characters that will force quoting
    	if strings.ContainsAny(s, "\\ ;#*&$~?!|[]()<>{}`") {
    		s = " '" + s + "'"
    	} else {
    		s = " " + s
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/go/types/decl.go

    	var mset objset
    
    	// spec: "If the base type is a struct type, the non-blank method
    	// and field names must be distinct."
    	base := asNamed(obj.typ) // shouldn't fail but be conservative
    	if base != nil {
    		assert(base.TypeArgs().Len() == 0) // collectMethods should not be called on an instantiated type
    
    		// See go.dev/issue/52529: we must delay the expansion of underlying here, as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        ++i;
      }
      if (i >= kMaxIterationCount) {
        LOG(WARNING) << "Graph shapes did not converge to a fixpoint within "
                     << kMaxIterationCount
                     << " iterations. Graph shapes may be conservative.";
      }
      VLOG(1) << "Graph shapes were inferred with " << (i - 1)
              << " extra rounds of analysis to reach a fixpoint.";
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                  TensorListLengthOp, TensorListGetItemOp>(use.getOwner()))
            continue;
    
          // For any other unknown users of the TensorList, we are conservative and
          // stop element shape inference.
          DCOMMENT("TensorListType infer, unknown op " << *use.getOwner());
          return false;
        }
      }
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/decl.go

    	var mset objset
    
    	// spec: "If the base type is a struct type, the non-blank method
    	// and field names must be distinct."
    	base := asNamed(obj.typ) // shouldn't fail but be conservative
    	if base != nil {
    		assert(base.TypeArgs().Len() == 0) // collectMethods should not be called on an instantiated type
    
    		// See go.dev/issue/52529: we must delay the expansion of underlying here, as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. src/runtime/asm_s390x.s

    	// Stores are already ordered on s390x, so this is just a
    	// compile barrier.
    	RET
    
    // This is called from .init_array and follows the platform, not Go, ABI.
    // We are overly conservative. We could only save the registers we use.
    // However, since this function is only called once per loaded module
    // performance is unimportant.
    TEXT runtime·addmoduledata(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top