Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 530 for Diagnostic (0.4 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/AutoTestedSamplesToolingApiTest.groovy

            def checkDiagnostic = { diagnostic ->
                if (diagnostic.kind.name() == 'ERROR') {
                    String[] lines = source.split("\n")
                    int lineNo = diagnostic.lineNumber - 1
    
                    def message = "Compilation error in sample in line: \n" + lines[lineNo] + "\n" + diagnostic + "\n"
                    message = message - sourceFile.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/InstrumentationCodeGeneratorHost.java

                if (maybeOriginatingElement.isPresent()) {
                    messager.printMessage(Diagnostic.Kind.ERROR, details.reason, maybeOriginatingElement.get());
                } else {
                    messager.printMessage(Diagnostic.Kind.ERROR, details.reason);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue27340/a.go

    // license that can be found in the LICENSE file.
    
    // Failed to resolve typedefs consistently.
    // No runtime test; just make sure it compiles.
    // In separate directory to isolate #pragma GCC diagnostic.
    
    package issue27340
    
    // We use the #pragma to avoid a compiler warning about incompatible
    // pointer types, because we generate code passing a struct ptr rather
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ResourceAwareResolveResult.java

        List<String> getAttempted();
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(String locationDescription);
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(ExternalResourceName location);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

          return rewriter.notifyMatchFailure(mul_op, [&](::mlir::Diagnostic &diag) {
            diag << "entities 'mul_value' failed to satisfy constraint: "
                    "unsupported dimensions";
          });
        }
        if (!is_dynamic_broadcast &&
            !((*conv_op.getODSResults(0).begin()).hasOneUse())) {
          return rewriter.notifyMatchFailure(mul_op, [&](::mlir::Diagnostic &diag) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/processor/src/main/java/org/gradle/EntityProcessor.java

    import javax.lang.model.SourceVersion;
    import javax.lang.model.element.Element;
    import javax.lang.model.element.Name;
    import javax.lang.model.element.TypeElement;
    import javax.tools.Diagnostic;
    import javax.tools.JavaFileObject;
    import java.io.IOException;
    import java.io.Writer;
    import java.util.Collections;
    import java.util.Set;
    
    @SupportedAnnotationTypes("Entity")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/processor/src/main/java/org/gradle/ServiceRegistryProcessor.java

    import javax.annotation.processing.*;
    import javax.lang.model.SourceVersion;
    import javax.lang.model.element.Element;
    import javax.lang.model.element.Name;
    import javax.lang.model.element.TypeElement;
    import javax.tools.Diagnostic;
    import javax.tools.JavaFileObject;
    import java.io.IOException;
    import java.io.Writer;
    import java.util.Collections;
    import java.util.Set;
    
    @SupportedAnnotationTypes("Service")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	TypeErrors   []types.Error  // type errors (only if Analyzer.RunDespiteErrors)
    
    	// Report reports a Diagnostic, a finding about a specific location
    	// in the analyzed source code such as a potential mistake.
    	// It may be called by the Run function.
    	Report func(Diagnostic)
    
    	// ResultOf provides the inputs to this analysis pass, which are
    	// the corresponding results of its prerequisite analyzers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

            }
        }
    
        private fun computeErrors(diagnostics: Diagnostics, allowedErrorFilter: (KaDiagnostic) -> Boolean): List<KaDiagnostic> {
            return buildList {
                for (diagnostic in diagnostics.all()) {
                    if (diagnostic.severity == Severity.ERROR) {
                        val ktDiagnostic = KaFe10Diagnostic(diagnostic, token)
                        if (!allowedErrorFilter(ktDiagnostic)) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/configurations/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Diagnostic tasks which report information about configurations.
     */
    @NonNullApi
    package org.gradle.api.tasks.diagnostics.configurations;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 19 20:35:52 UTC 2022
    - 796 bytes
    - Viewed (0)
Back to top