Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 570 for Diagnostic (0.14 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                    assertStableResult(
                        testServices = testServices,
                        firstDiagnostic = firstCandidate.diagnostic,
                        secondDiagnostic = (secondCandidate as KaInapplicableCallCandidateInfo).diagnostic,
                    )
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

                }
                writer.write("\\"; }");
                writer.write("}");
            } finally {
                writer.close();
            }
        } catch (IOException e) {
            messager.printMessage(Diagnostic.Kind.ERROR, "Failed to generate source file " + className, element);
        }
    """
            def resourceCode = writeResources ? """
        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                val diagnostic = calleeReference.diagnostic
                val ktDiagnostic = calleeReference.createKtDiagnostic(psi)
    
                if (diagnostic is ConeHiddenCandidateError)
                    return KaErrorCallInfo(emptyList(), ktDiagnostic, token)
    
                val candidateCalls = mutableListOf<KaCall>()
                if (diagnostic is ConeDiagnosticWithCandidates) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/defers/doc.go

    // Package defers defines an Analyzer that checks for common mistakes in defer
    // statements.
    //
    // # Analyzer defers
    //
    // defers: report common mistakes in defer statements
    //
    // The defers analyzer reports a diagnostic when a defer statement would
    // result in a non-deferred call to time.Since, as experience has shown
    // that this is nearly always a mistake.
    //
    // For example:
    //
    //	start := time.Now()
    //	...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 20:06:48 UTC 2023
    - 763 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractNestedBeanLanguageInterOpIntegrationTest.groovy

    abstract class AbstractNestedBeanLanguageInterOpIntegrationTest extends AbstractLanguageInterOpIntegrationTest {
        abstract void pluginDefinesTask()
    
        def "attaches diagnostic information to property"() {
            pluginDefinesTask()
    
            buildFile << """
                apply plugin: SomePlugin
    
                println "flag = " + tasks.someTask.params.flag
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c

    gccgoGetCpuidCount(uint32_t leaf, uint32_t subleaf,
                       uint32_t *eax, uint32_t *ebx,
                       uint32_t *ecx, uint32_t *edx)
    {
    	return __get_cpuid_count(leaf, subleaf, eax, ebx, ecx, edx);
    }
    
    #pragma GCC diagnostic ignored "-Wunknown-pragmas"
    #pragma GCC push_options
    #pragma GCC target("xsave")
    #pragma clang attribute push (__attribute__((target("xsave"))), apply_to=function)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

                fileLoc.getFilename().str());
          } else {
            // If this is a non-FileLineColLoc, go ahead and include it.
            return true;
          }
        };
      }
    
      setHandler([this](Diagnostic& diag) { return this->handler(&diag); });
    }
    
    Status StatusScopedDiagnosticHandler::ConsumeStatus() {
      return BaseScopedDiagnosticHandler::ConsumeStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    const Doc = `check for unkeyed composite literals
    
    This analyzer reports a diagnostic for composite literals of struct
    types imported from another package that do not use the field-keyed
    syntax. Such literals are fragile because the addition of a new field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/direct/direct.go

    	return modes.Encode.Marshal(src)
    }
    
    func Unmarshal(src []byte, dst interface{}) error {
    	return modes.Decode.Unmarshal(src, dst)
    }
    
    func Diagnose(src []byte) (string, error) {
    	return modes.Diagnostic.Diagnose(src)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/ResourceGeneratingProcessorFixture.groovy

        String resourceName = typeElement.getSimpleName().toString() + ".txt";
        FileObject resourceFile;
        Writer writer;
        try {
            $outputs
        } catch (Exception e) {
            messager.printMessage(Diagnostic.Kind.ERROR, "Failed to generate resource file " + resourceName + ": " + e.getMessage());
        }
    }
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top