Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for workaround (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/Workarounds.kt

     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.TaskInternal
    import org.gradle.tooling.model.kotlin.dsl.KotlinDslModelsParameters
    
    
    internal
    object Workarounds {
    
        // TODO:[DefaultBuildTreeLifecycleController.isEligibleToRunTasks()] remove once fixed
    
        private
        val ignoredStartParameterProperties = arrayOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/build.gradle

        testClassesDirs = sourceSets.docsTest.output.classesDirs
        // 'integTest.samplesdir' is set to an absolute path by the 'org.gradle.samples' plugin
        systemProperties.clear()
    
        filter {
            // workaround for https://github.com/gradle/dotcom/issues/5958
            failOnNoMatchingTests = false
            // Only execute C++ sample tests on Linux because it is the configured target
            if (!OperatingSystem.current().linux) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.cc

      // GPU.
      if (device_type == DEVICE_GPU) {
        options.strict_shape_checking = false;
      }
      // Note: TF does not use PJRT host callbacks as of today. Setting this option
      // to true to workaround an ExecuteOptions check: [1].
      //
      // [1]:
      // tensorflow/compiler/xla/pjrt/pjrt_c_api_client.cc;l=923-927;rcl=519286815
      options.use_major_to_minor_data_layout_for_callbacks = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[kotlin_dsl_plugins_catalogs_workaround]]
    ==== Workaround for false positive errors shown in Kotlin DSL `plugins {}` block using version catalog is not needed anymore
    
    Version catalog accessors for plugin aliases in the `plugins {}` block aren't shown as errors in IntelliJ IDEA and Android Studio Kotlin script editor anymore.
    
    If you were using the `@Suppress("DSL_SCOPE_VIOLATION")` annotation as a workaround, you can now remove it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. pkg/volume/util/util.go

    			return false
    		}
    		if fsUser == nil {
    			fsUser = runAsUser
    		}
    		return true
    	})
    	return fsUser
    }
    
    // HasMountRefs checks if the given mountPath has mountRefs.
    // TODO: this is a workaround for the unmount device issue caused by gci mounter.
    // In GCI cluster, if gci mounter is used for mounting, the container started by mounter
    // script will cause additional mounts created in the container. Since these mounts are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # https://github.com/tensorflow/tensorflow/blob/cd67f4f3723f9165aabedd0171aaadc6290636e5/tensorflow/tensorflow.bzl#L396-L425
    # And is usable in the "deps" attribute instead of the "srcs" attribute
    # as a workaround for https://github.com/tensorflow/tensorflow/issues/34117
    cc_import(
        name = "libtensorflow_framework_import_lib",
        shared_library = select({
            "//tensorflow:macos": ":libtensorflow_framework.dylib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      public void testOf_ordering() {
        SortedSet<String> set = of("e", "a", "f", "b", "d", "c");
        assertThat(set).containsExactly("a", "b", "c", "d", "e", "f").inOrder();
      }
    
      /*
       * Tests that we workaround GWT bug #3621 (or that it is already fixed).
       *
       * A call to of() with a parameter that is not a plain Object[] (here,
       * Interface[]) creates a RegularImmutableSortedSet backed by an array of that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/controller.go

    // This should probably not be used in production code.
    func (s *Controller) ResyncEDS() {
    	s.mutex.RLock()
    	allInstances := s.serviceInstances.getAll()
    	s.mutex.RUnlock()
    	s.edsUpdate(allInstances)
    	// HACK to workaround Service syncing after WorkloadEntry: https://github.com/istio/istio/issues/45114
    	s.workloadInstances.ForEach(func(wi *model.WorkloadInstance) {
    		if wi.Kind == model.WorkloadEntryKind {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                // The transformation may need to access dependencies raw models,
                // which may cause some re-entrance in the build() method and can
                // actually cause deadlocks.  In order to workaround the problem,
                // we do a first pass by reading all rawModels in order.
                List<ProjectBuildingResult> results = new ArrayList<>();
                boolean failure = false;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def property = propertyWithNoValue()
            def function = Mock(Callable)
            def provider = new DefaultProvider<T>(function)
            property.set(provider)
    
            // TODO - this verifies that a workaround to accidental concurrent access works. Instead, this should really be an error
    
            when:
            property.finalizeValue()
    
            then:
            1 * function.call() >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top