Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 329 for idea (0.11 sec)

  1. src/slices/zsortanyfunc.go

    		if hint == decreasingHint {
    			reverseRangeCmpFunc(data, a, b, cmp)
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    		}
    
    		// The slice is likely already sorted.
    		if wasBalanced && wasPartitioned && hint == increasingHint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

    import org.gradle.kotlin.dsl.*
    import org.gradle.plugins.ide.eclipse.EclipsePlugin
    import org.gradle.plugins.ide.eclipse.model.EclipseModel
    import org.gradle.plugins.ide.idea.IdeaPlugin
    import org.gradle.plugins.ide.idea.model.IdeaModel
    import org.gradle.process.CommandLineArgumentProvider
    import org.w3c.dom.Document
    import java.io.File
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. src/sort/zsortinterface.go

    		if hint == decreasingHint {
    			reverseRange(data, a, b)
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    		}
    
    		// The slice is likely already sorted.
    		if wasBalanced && wasPartitioned && hint == increasingHint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/OrderingTest.java

        Ordering<Integer> e = integers.compound(numbers);
    
        // This works with three levels too (IDEA falsely reports errors as noted
        // below. Both javac and eclipse handle these cases correctly.)
    
        Ordering<Number> f = numbers.compound(objects).compound(objects); // bad IDEA
        Ordering<Number> g = objects.compound(numbers).compound(objects);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  5. src/slices/zsortordered.go

    		if hint == decreasingHint {
    			reverseRangeOrdered(data, a, b)
    			// The chosen pivot was pivot-a elements after the start of the array.
    			// After reversing it is pivot-a elements before the end of the array.
    			// The idea came from Rust's implementation.
    			pivot = (b - 1) - (pivot - a)
    			hint = increasingHint
    		}
    
    		// The slice is likely already sorted.
    		if wasBalanced && wasPartitioned && hint == increasingHint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. .teamcity/performance-test-durations.json

      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIDEModelPerformanceTest.get IDE model for Eclipse",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 843
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaIDEModelPerformanceTest.get IDE model for IDEA",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 886
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  7. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.regression.java.JavaIDEModelPerformanceTest.get IDE model for Eclipse",
        "groups" : [ {
          "testProject" : "largeJavaMultiProject",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.java.JavaIDEModelPerformanceTest.get IDE model for IDEA",
        "groups" : [ {
          "testProject" : "largeJavaMultiProject",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

     2215 ?        Sl   473:09 /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java -ea -Xmx384m -Dteamcity_logs=../logs/ -Dlog4j.configuration=file:../conf/teamcity-agent-log4j.xml -classpath /home/tcagent1/agent/lib/idea-settings.jar:/home/tcagent1/agent/lib/coverage-agent-common.jar:/home/tcagent1/agent/lib/coverage-report.jar:/home/tcagent1/agent/lib/log4j-1.2.12.jar:/home/tcagent1/agent/lib/commons-httpclient-3.1.jar:/home/tcagent1/agent/lib/log4j-1.2.12-json-l...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        //  We cannot use this syntax until adopting JSpecify with e.g. Jetbrains Annotations, because IDEA wrongly treats all usages as having a nullable type, even when
        //  it is explicitly spelled.
    
        private final DisplayName displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/DefaultToolingModelBuilderRegistry.java

        private final ToolingModelBuilderLookup parent;
    
        private final List<RegistrationImpl> registrations = new ArrayList<>();
        // This is a workaround for https://github.com/gradle/gradle/issues/17319. IDEA reads this field in an attempt to check if its Builder is already registered.
        @SuppressWarnings({"unused", "MismatchedQueryAndUpdateOfCollection"})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top