Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for eastwest (0.51 sec)

  1. src/image/draw/draw_test.go

    import (
    	"image"
    	"image/color"
    	"image/png"
    	"os"
    	"testing"
    	"testing/quick"
    )
    
    // slowestRGBA is a draw.Image like image.RGBA, but it is a different type and
    // therefore does not trigger the draw.go fastest code paths.
    //
    // Unlike slowerRGBA, it does not implement the draw.RGBA64Image interface.
    type slowestRGBA struct {
    	Pix    []uint8
    	Stride int
    	Rect   image.Rectangle
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. cmd/batch-expire.go

    //         greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
    //       purge:
    //           # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
    //           # retainVersions: 5 # keep the latest 5 versions of the object.
    //
    //     - type: deleted # objects with delete marker as their latest version
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_java_projects.adoc

    The easiest way to avoid this performance penalty is to not use annotation processors.
    However, if you need to use them, make sure you set the annotation processor classpath explicitly to include only the libraries needed for annotation processing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    1. `noIsolation()`
    2. `classLoaderIsolation()`
    3. `processIsolation()`
    
    The `noIsolation()` mode is the lowest level of isolation and will prevent a unit of work from changing the project state.
    This is the fastest isolation mode because it requires the least overhead to set up and execute the work item.
    However, it will use a single shared classloader for all units of work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. docs/en/docs/index.md

    The key features are:
    
    * **Fast**: Very high performance, on par with **NodeJS** and **Go** (thanks to Starlette and Pydantic). [One of the fastest Python frameworks available](#performance).
    * **Fast to code**: Increase the speed to develop features by about 200% to 300%. *
    * **Fewer bugs**: Reduce about 40% of human (developer) induced errors. *
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner.go

    	logger := klog.FromContext(ctx)
    
    	now := tc.clock.Now().UTC()
    	trackedSince, err := tc.latestPossibleTrackedSinceTime(ctx)
    	if err != nil {
    		logger.Error(err, "Getting lastest possible tracked_since time")
    		return
    	}
    
    	if now.Before(trackedSince.Add(tc.minimumSinceLastUsed)) {
    		// we haven't been tracking long enough
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/ResponseBody.kt

     * * `Response.body().bytes()`
     * * `Response.body().string()`
     *
     * There is no benefit to invoking multiple `close()` methods for the same response body.
     *
     * For synchronous calls, the easiest way to make sure a response body is closed is with a `try`
     * block. With this structure the compiler inserts an implicit `finally` clause that calls
     * [close()][Response.close] for you.
     *
     * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	// The Poly1305 algorithm requires that a 1 bit be appended to
    	// each message block. If the final block is less than 16 bytes
    	// long then it is easiest to insert the 1 before the message
    	// block is split into 26-bit limbs. If, on the other hand, the
    	// final message block is 16 bytes long then we append the 1 bit
    	// after expansion as normal.
    	MOVBZ  $1, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            and: "only the fast tests are run"
            def xmlResults = getTestResultsFileAsXml(dslDir, "org.gradle.junitplatform.TagTest")
            assertTestsRunCount(xmlResults, 1)
            assertTestRun(xmlResults, "fastTest()")
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("testing/testng-groups")
        def "can filter tests by TestNG group with #dsl dsl"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. docs/en/docs/features.md

    * Seriously impressive performance. It is <a href="https://github.com/encode/starlette#performance" class="external-link" target="_blank">one of the fastest Python frameworks available, on par with **NodeJS** and **Go**</a>.
    * **WebSocket** support.
    * In-process background tasks.
    * Startup and shutdown events.
    * Test client built on HTTPX.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top