Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 284 for Compilation (2.78 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    By default, the Java project creates a convention for organizing unit tests in the directory `src/test/java`.
    Additionally, if you apply the Groovy plugin, source code under the directory `src/test/groovy` is considered for compilation (with the same standard for Kotlin under the directory `src/test/kotlin`).
    Consequently, source code directories for other test types should follow a similar pattern:
    
    ----
    .
    └── src
        ├── functionalTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaBasePlugin.java

            incrementalAnalysisElements.setVisible(false);
            incrementalAnalysisElements.setDescription("Incremental compilation analysis files");
            incrementalAnalysisElements.getAttributes().attribute(USAGE_ATTRIBUTE, incrementalAnalysisUsage);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 10:39:12 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_platform_info.cc

    }
    }  // namespace
    
    std::string GetPersistentCacheDirectory(
        const DeviceType& compilation_device_type) {
      // If a persistent cache device type is specified, ensure it matches
      // compilation device type.
      if (!GetMarkForCompilationPassFlags()
               ->tf_xla_persistent_cache_device_types.empty() &&
          !absl::c_any_of(absl::StrSplit(GetMarkForCompilationPassFlags()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      TF_ASSERT_OK_AND_ASSIGN(
          XlaCompiler::CompilationResult result,
          CompileMlirModule(
              kMlirModuleStr,
              ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_ENABLED));
    
      // Compilation time should have been updated.
      EXPECT_GT(compilation_time.Delta(kFullBridge).num(), 0);
    }
    
    TEST(LegalizeTFTest, SuccessfullyCompilesModulesWithReturnValues) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [NOTE]
    ====
    Toolchain support is available in the Java plugins and for the tasks they define.
    
    For the Groovy plugin, compilation is supported but not yet Groovydoc generation.
    For the Scala plugin, compilation and Scaladoc generation are supported.
    ====
    
    [[sec:vendors]]
    === Selecting toolchains by vendor
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. src/debug/dwarf/entry_test.go

    	}
    	if f.Class != ClassUnknown {
    		t.Fatalf("bad class: have %s, want %s", f.Class, ClassUnknown)
    	}
    }
    
    // wantRange maps from a PC to the ranges of the compilation unit
    // containing that PC.
    type wantRange struct {
    	pc     uint64
    	ranges [][2]uint64
    }
    
    func TestReaderSeek(t *testing.T) {
    	want := []wantRange{
    		{0x40059d, [][2]uint64{{0x40059d, 0x400601}}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            and:
            executable.assertDebugFileDoesNotExist()
        }
    
        @Issue("GRADLE-3248")
        @ToBeFixedForConfigurationCache
        def "incremental compilation isn't considered up-to-date when compilation fails"() {
            expect:
            succeeds mainCompileTask
    
            when:
            app.brokenFile.writeToDir(file("src/main"))
    
            then:
            fails mainCompileTask
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util.h

    // `variable_snapshots` is a map of {index of the input to the
    // compilation_result -> underlying Tensor the variable is/was pointing to (i.e.
    // the value of the variable at the time of lowering/compilation)}.
    //
    // The obtained PjRtBuffers are populated to `args` vector.
    // `non_donatable_input_indices` will also be set, which contains the indices of
    // the input that should not be donated to output.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    // Clustering policy must make a local decision just for a single operation. It
    // is the responsibility of a clustering pass to combine all these individual
    // operations constraints to form a valid cluster.
    //
    // Example: compilation using XLA (MHLO) lowering
    //
    //   %0 = "tf.Transpose"(%input, %perm)
    //        : (tensor<?x?xf32>, tensor<2xi32>) -> tensor<?x?xf32>
    //
    //   XLAs `mhlo.transpose` operation requires permutation to be an attribute
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    		err := ctx.Err()
    		if err == nil {
    			err = fmt.Errorf("initial cache sync for %T failed", s)
    		}
    		return err
    	}
    
    	s.ctx = ctx
    
    	// Perform initial policy compilation after initial list has finished
    	s.notify()
    	s.refreshPolicies()
    
    	notifyFuncs := cache.ResourceEventHandlerFuncs{
    		AddFunc: func(_ interface{}) {
    			s.notify()
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top