Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 284 for Compilation (0.99 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

    using mlir::PassManager;
    using mlir::func::FuncOp;
    
    namespace {
    
    void CreateReplicatedBridgePipelineV1(OpPassManager &pm) {
      pm.addPass(mlir::tf2xla::internal::CreateInferenceMetricsPass());
    
      // Convert to unified compilation and replication attributes.
      pm.addNestedPass<FuncOp>(
          mlir::TF::CreateCanonicalizeCompileAndReplicateAttributesPass());
      // Guarantee all functions have one use, which enables more exact shape
      // inference.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIncludedBuildIntegrationTest.groovy

            """
            when:
            fails("help")
            then:
            failure.assertHasDescription("Execution failed for task ':included:compileJava'.")
            failure.assertHasCause("Compilation failed; see the compiler error output for details.")
        }
    
        def "buildSrc can apply plugins contributed by a build included by the root build and use them in plugins for the root build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

        }
    
        /**
         * Configures {@code compileTask} to compile against {@code sourceSet}'s compile classpath
         * in addition to the outputs of the java compilation, as specified by {@link SourceSet#getJava()}
         *
         * @param compileTask The task to configure.
         * @param sourceSet The source set whose output contains the java classes to compile against.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

                insideVariantDescriptionBlock = isInsideVariantDescriptionBlock(insideVariantDescriptionBlock, line);
    
                // https://youtrack.jetbrains.com/issue/KT-29546
                if (line.contains("Compilation with Kotlin compile daemon was not successful")) {
                    insideKotlinCompilerFlakyStacktrace = true;
                    i++;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/dwarfgen/dwinl.go

    		if c.Root {
    			checkInlCall(fnsym.Name, inlcalls, fnsym.Size, k, -1)
    		}
    	}
    
    	return inlcalls
    }
    
    // Secondary hook for DWARF inlined subroutine generation. This is called
    // late in the compilation when it is determined that we need an
    // abstract function DIE for an inlined routine imported from a
    // previously compiled package.
    func AbstractFunc(fn *obj.LSym) {
    	ifn := base.Ctxt.DwFixups.GetPrecursorFunc(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.cc

          // a control flow operator.
          return errors::Internal(
              "Found cycle in graph without control flow operator during XLA "
              "compilation: ",
              DescribeCycle(cycles, *graph, edge->src()->id(), edge->dst()->id()));
        }
      }
    
      return true;
    }
    
    std::optional<absl::string_view> GetXlaClusterForNode(const Node& node) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    As previously described in this chapter, this is modeled by `A` depending on a _variant of_ `B`, where the variant is selected based on the needs of `A`.
    For compilation, we need the API dependencies of `B`, provided by the `apiElements` variant.
    For runtime, we need the runtime dependencies of `B`, provided by the `runtimeElements` variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractJavaGroovyCompileAvoidanceIntegrationSpec.groovy

            then:
            noExceptionThrown()
    
            when: "Apache Commons is removed from classpath"
            fails ":${language.compileTaskName}"
    
            then:
            failure.assertHasCause('Compilation failed; see the compiler error output for details.')
        }
    
        def "detects changes in compile classpath order"() {
            given:
            // Same class is defined in both project `a` and `b` but with a different ABI
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - plugin dependency metadata missing
    - plugin dependency metadata retrieval problem
    - plugin configuration problem
    - plugin execution failure due to something that is know to possibly go wrong (like compilation failure)
    - plugin execution error due to something that is not expected to go wrong (the compiler executable missing)
    - asking to use a plugin for which you do not have a version defined - tools to easily select versions
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		"empty": {
    			selector:     "",
    			wantFailures: field.ErrorList{field.Required(nil, "")},
    		},
    		"undefined": {
    			selector:     "nosuchvar",
    			wantFailures: field.ErrorList{field.Invalid(nil, "nosuchvar", "compilation failed: ERROR: <input>:1:1: undeclared reference to 'nosuchvar' (in container '')\n | nosuchvar\n | ^")},
    		},
    		"wrong-type": {
    			selector:     "1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top