Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 285 for diag (0.07 sec)

  1. src/cmd/internal/obj/pass.go

    			break
    		}
    		return
    
    	case TYPE_MEM:
    		return
    
    	case TYPE_CONST:
    		// TODO(rsc): After fixing SHRQ, check a.Index != 0 too.
    		if a.Name != 0 || a.Sym != nil || a.Reg != 0 {
    			ctxt.Diag("argument is TYPE_CONST, should be TYPE_ADDR, in %v", p)
    			return
    		}
    
    		if a.Reg != 0 || a.Scale != 0 || a.Name != 0 || a.Sym != nil || a.Val != nil {
    			break
    		}
    		return
    
    	case TYPE_FCONST, TYPE_SCONST:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzer_test.go

    // limitations under the License.
    
    package analysis
    
    import (
    	"testing"
    
    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/collection"
    	resource2 "istio.io/istio/pkg/config/schema/resource"
    )
    
    type analyzer struct {
    	name   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    				}
    			}
    			if allKeyValue {
    				// all the struct fields are keyed
    				continue
    			}
    
    			diag := analysis.Diagnostic{
    				Pos:     cl.Pos(),
    				End:     cl.End(),
    				Message: fmt.Sprintf("%s struct literal uses unkeyed fields", typeName),
    			}
    			if suggestedFixAvailable {
    				diag.SuggestedFixes = []analysis.SuggestedFix{{
    					Message:   "Add field names to struct literal",
    					TextEdits: missingKeys,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    		if target == "" || source == "" {
    			return // something went wrong
    		}
    
    		diag := analysis.Diagnostic{
    			Pos:     n.Pos(),
    			Message: fmt.Sprintf("conversion from %s to %s yields a string of one rune, not a string of digits (did you mean fmt.Sprint(x)?)", source, target),
    		}
    
    		if convertibleToRune {
    			diag.SuggestedFixes = []analysis.SuggestedFix{
    				{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/schema/validation.go

    // limitations under the License.
    package schema
    
    import (
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/collections"
    	sresource "istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 07:38:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/find_errorline_utils.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/resource"
    )
    
    const (
    	// Path templates for different fields with different paths, may edited by future developers if not covered in this list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

    }
    
    std::unique_ptr<tfrt::CoreRuntime> CreateTestCoreRuntime() {
      auto corert = tfrt::CoreRuntime::Create(
          /*diag_handler=*/[](const tfrt::DecodedDiagnostic&
                                  diag) { LOG(ERROR) << diag.message(); },
          tfrt::CreateMallocAllocator(),
          tfrt::CreateMultiThreadedWorkQueue(16, 16));
      CHECK(corert);
      auto fallback_op_handler = tensorflow::tfd::CreateKernelFallbackOpHandler(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/diag/helper.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package diag
    
    import (
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/resource"
    )
    
    var (
    	_ resource.Origin    = &testOrigin{}
    	_ resource.Reference = &testReference{}
    )
    
    type testOrigin struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/diag/level.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package diag
    
    import (
    	"strings"
    )
    
    // Level is the severity level of a message.
    type Level struct {
    	sortOrder int
    	name      string
    }
    
    func (l Level) String() string {
    	return l.name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MaximumHeapHelper.java

         *
         * See <a href="https://docs.oracle.com/javase/8/docs/technotes/guides/vm/gctuning/parallel.html#default_heap_size">Oracle</a>
         * and <a href="http://www.ibm.com/support/knowledgecenter/SSYKE2_8.0.0/com.ibm.java.lnx.80.doc/diag/appendixes/defaults.html">IBM</a>
         * corresponding documentation.
         *
         * @param osTotalMemory OS total memory in bytes
         * @return Default maximum heap size for the current JVM
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top