Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 152 for forced (0.12 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

            withValidityAssertion { analysisSession.scopeProvider.getScopeContextForPosition(this, positionInFakeFile) }
    
        /**
         * Returns a [KaScopeContext] formed by all imports in the [KtFile].
         *
         * By default, this will also include default importing scopes, which can be filtered by [KaScopeKind]
         */
        public fun KtFile.getImportingScopeContext(): KaScopeContext =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            group = ciGroup
        }
    
        register("forceRealizeDependencyManagementTest") {
            description = "Runs all integration tests with the dependency management engine in 'force component realization' mode"
            group = ciGroup
        }
    }
    
    // https://github.com/gradle/gradle-private/issues/3380
    fun Test.configureAndroidUserHome() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/archive/tar/writer_test.go

    	fileinfo, err := os.Stat("testdata/small.txt")
    	if err != nil {
    		t.Fatal(err)
    	}
    	hdr, err := FileInfoHeader(fileinfo, "")
    	if err != nil {
    		t.Fatalf("os.Stat: %v", err)
    	}
    	// Force a PAX long name to be written
    	longName := strings.Repeat("ab", 100)
    	contents := strings.Repeat(" ", int(hdr.Size))
    	hdr.Name = longName
    	var buf bytes.Buffer
    	writer := NewWriter(&buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    	s.i.min.Store(uintptr(min))
    	s.i.max.Store(uintptr(max))
    	s.i.minHeapIdx.Store(uintptr(min))
    	s.i.test = true
    	return s
    }
    
    func (s *ScavengeIndex) Find(force bool) (ChunkIdx, uint) {
    	ci, off := s.i.find(force)
    	return ChunkIdx(ci), off
    }
    
    func (s *ScavengeIndex) AllocRange(base, limit uintptr) {
    	sc, ec := chunkIndex(base), chunkIndex(limit-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/runtime/debug/garbage.go

    			// See the allocation at the top of the function.
    			sorted := stats.Pause[n : n+n]
    			copy(sorted, stats.Pause)
    			slices.Sort(sorted)
    			nq := len(stats.PauseQuantiles) - 1
    			for i := 0; i < nq; i++ {
    				stats.PauseQuantiles[i] = sorted[len(sorted)*i/nq]
    			}
    			stats.PauseQuantiles[nq] = sorted[len(sorted)-1]
    		}
    	}
    }
    
    // SetGCPercent sets the garbage collection target percentage:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            // When configuration cache is enabled, the task graph for cache-hit builds will be loaded from the cache and tasks will run in parallel and start in an arbitrary order
            // Use max-workers=1 to force non-parallel execution and the tasks to run in the specified order
            // (--no-parallel doesn't have an effect with CC, but max-workers should affect both CC and parallel executors)
            args("--max-workers=1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            // distribution loading is deprecated in Gradle 8.2.
            return getClasspathWithAdditionalModules(classpath, modulepath, unfiltered, isModule);
        }
    
        /**
         * Creates a classpath for the forked process which injects the additional modules from
         * {@code additional} into the classpath provided by {@code classpath} and {@code modulepath}.
         */
        private ForkedTestClasspath getClasspathWithAdditionalModules(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    struct LayoutOptimizationPipelineOptions
        : public PassPipelineOptions<LayoutOptimizationPipelineOptions> {
      Option<std::string> force_data_format{
          *this, "force-data-format",
          llvm::cl::desc("Force data format for all layout sensitive ops")};
      Option<bool> skip_fold_transpose_in_ops{
          *this, "skip-fold-transpose-in-ops",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

         * This method uses reflection to detect the API and calls the version with the correct signature.
         *
         * If the TestNG version is greater than or equal to 6.9.12, the provided {@code value} is coerced to
         * an Enum, otherwise the method which accepts a {@code String} is called with the unmodified {@code value}.
         *
         * @param testNg the TestNG instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

                }
    
                jar.doLast {
                    println 'from jar task'
                }
    
                task resolve {
                    doLast {
                        // force resolve
                        configurations.runtimeClasspath.files
                    }
                }
    
                build.dependsOn resolve
    
                logger.lifecycle('from build.gradle')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top