Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 293 for north (0.05 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild/shade/tasks/ShadedJar.kt

    import java.io.FileOutputStream
    import java.nio.file.Path
    import java.util.ArrayDeque
    import java.util.Queue
    import java.util.jar.JarFile
    import java.util.jar.JarOutputStream
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class ShadedJar : DefaultTask() {
        @get:PathSensitive(PathSensitivity.RELATIVE)
        @get:InputFiles
        abstract val relocatedClassesConfiguration: ConfigurableFileCollection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 10:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. docs/features/caching.md

    server behaviour when ambiguous.
    
    # Basic Usage
    
    ```kotlin
      private val client: OkHttpClient = OkHttpClient.Builder()
          .cache(Cache(
              directory = File(application.cacheDir, "http_cache"),
              // $0.05 worth of phone storage in 2020
              maxSize = 50L * 1024L * 1024L // 50 MiB
          ))
          .build()
    ```
    
    ## EventListener events 
    
    Cache Events are exposed via the EventListener API.  Typical scenarios are below.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

    import java.util.Properties
    import javax.xml.parsers.DocumentBuilderFactory
    
    
    /**
     * Fetch the latest AGP versions and write a properties file.
     * Never up-to-date, non-cacheable.
     */
    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateAgpVersions : DefaultTask() {
    
        @get:Internal
        abstract val comment: Property<String>
    
        @get:Internal
        abstract val minimumSupportedMinor: Property<String>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 09:17:07 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/PropertyReportTask.java

    import java.util.TreeMap;
    
    /**
     * Displays the properties of a project. An instance of this type is used when you execute the {@code properties} task
     * from the command-line.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class PropertyReportTask extends AbstractProjectBasedReportTask<PropertyReportTask.PropertyReportModel> {
    
        private PropertyReportRenderer renderer = new PropertyReportRenderer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  5. src/runtime/slice.go

    		msanread(fromPtr, size)
    		msanwrite(toPtr, size)
    	}
    	if asanenabled {
    		asanread(fromPtr, size)
    		asanwrite(toPtr, size)
    	}
    
    	if size == 1 { // common case worth about 2x to do here
    		// TODO: is this still worth it with new memmove impl?
    		*(*byte)(toPtr) = *(*byte)(fromPtr) // known to be a byte pointer
    	} else {
    		memmove(toPtr, fromPtr, size)
    	}
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

            }
        }
    
        @Requires(value = IntegTestPreconditions.NotParallelExecutor, reason = """
    Don't run in parallel mode, as the expectation for the setup build are incorrect
    It could potentially be worth running this in parallel mode to demonstrate the difference between
    parallel and configuration cache
    """)
        def "runs tasks in same project in parallel by default"() {
            server.start()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

    import javax.annotation.Nullable;
    import java.nio.charset.Charset;
    
    /**
     * Assembles a ZIP archive.
     *
     * The default is to compress the contents of the zip.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Zip extends AbstractArchiveTask {
        public static final String ZIP_EXTENSION = "zip";
        private ZipEntryCompression entryCompression = ZipEntryCompression.DEFLATED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. src/runtime/memmove_386.s

    	// 128 because that is the maximum SSE register load (loading all data
    	// into registers lets us ignore copy direction).
    tail:
    	// BSR+branch table make almost all memmove/memclr benchmarks worse. Not worth doing.
    	TESTL	BX, BX
    	JEQ	move_0
    	CMPL	BX, $2
    	JBE	move_1or2
    	CMPL	BX, $4
    	JB	move_3
    	JE	move_4
    	CMPL	BX, $8
    	JBE	move_5through8
    	CMPL	BX, $16
    	JBE	move_9through16
    #ifdef GO386_softfloat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

    import java.nio.charset.Charset;
    import java.util.concurrent.Callable;
    
    /**
     * Creates a XCTest bundle with a run script so it can be easily executed.
     *
     * @since 4.4
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class InstallXCTestBundle extends DefaultTask {
        private final DirectoryProperty installDirectory;
        private final RegularFileProperty bundleBinaryFile;
    
        public InstallXCTestBundle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

      public final void clear() {
        backingMap.clear();
        size = 0;
      }
    
      /**
       * Skeleton of per-entry iterators. We could push this down and win a few bytes, but it's complex
       * enough it's not especially worth it.
       */
      abstract class Itr<T extends @Nullable Object> implements Iterator<T> {
        int entryIndex = backingMap.firstIndex();
        int toRemove = -1;
        int expectedModCount = backingMap.modCount;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top