Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 838 for tencent (0.14 sec)

  1. src/internal/poll/errno_unix.go

    	errEINVAL error = syscall.EINVAL
    	errENOENT error = syscall.ENOENT
    )
    
    // errnoErr returns common boxed Errno values, to prevent
    // allocations at runtime.
    func errnoErr(e syscall.Errno) error {
    	switch e {
    	case 0:
    		return nil
    	case syscall.EAGAIN:
    		return errEAGAIN
    	case syscall.EINVAL:
    		return errEINVAL
    	case syscall.ENOENT:
    		return errENOENT
    	}
    	return e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:40 UTC 2023
    - 696 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactResults.java

            List<ResolvedArtifactSet> resolvedArtifactSets = new ArrayList<>(artifactsById.size());
            for (ArtifactSet artifactSet : artifactsById) {
                ResolvedArtifactSet resolvedArtifacts = artifactSet.select(variantSelector, spec);
                if (!lenient || !(resolvedArtifacts instanceof UnavailableResolvedArtifactSet)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/LenientConfiguration.java

         * Returns successfully resolved files. Ignores dependencies or files that cannot be resolved.
         *
         * @param dependencySpec dependency spec
         * @return resolved dependencies files
         *
         * @deprecated Use a lenient {@link ArtifactView} with a {@code componentFilter} instead.
         */
        @Deprecated
        Set<File> getFiles(Spec<? super Dependency> dependencySpec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt

     *
     *  * Characters in `encodeSet` are percent-encoded.
     *
     *  * Control characters and non-ASCII characters are percent-encoded.
     *
     *  * All other characters are copied without transformation.
     *
     * @param alreadyEncoded true to leave '%' as-is; false to convert it to '%25'.
     * @param strict true to encode '%' if it is not the prefix of a valid percent encoding.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. docs/bucket/lifecycle/README.md

    ```
    
    ### 3.2 Automatic removal of noncurrent versions keeping only most recent ones after noncurrent days
    
    It is possible to configure automatic removal of older noncurrent versions keeping only the most recent `N` using `NewerNoncurrentVersions`.
    
    e.g, To remove noncurrent versions of all objects keeping the most recent 5 noncurrent versions under the prefix `user-uploads/` 30 days after they become noncurrent ,
    
    ```
    {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/verification/DependencyVerificationMode.java

     * and fail <i>as soon as possible</i>, to avoid as much compromising of
     * the builds as possible.
     *
     * There are, however, two additional modes which can be used: the lenient
     * one will collect all errors but only log them to the CLI. This is useful
     * when updating the file and you want to collect as many errors as possible
     * before failing.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleBuildPhaseFunctionalTest.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
        GradleHandle gradle
    
        def setup() {
            server.start()
        }
    
        def "shows progress bar and percent phase completion"() {
            createDirs("a", "b", "c", "d")
            settingsFile << """
                ${server.callFromBuild('settings')}
                include "a", "b", "c", "d"
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 07:25:15 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedArtifactsApiIntegrationTest.groovy

            "incoming.artifactView({componentFilter { true }}).artifacts" | _
            "incoming.artifactView({lenient(false)}).artifacts"           | _
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "lenient artifact view reports failure to resolve graph and artifacts"() {
            settingsFile << "include 'a', 'b'"
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/ArtifactCollectionCodec.kt

        }
    
        override suspend fun ReadContext.decode(): ArtifactCollectionInternal {
            val displayName = readString()
            val lenient = readBoolean()
            val elements = readList().uncheckedCast<List<Any>>()
    
            val files = artifactSetConverter.asFileCollection(displayName, lenient,
                elements.map { element ->
                    when (element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/traffic-mirroring-template.yaml

    spec:
      hosts:
        - b
      http:
        - route:
            - destination:
                host: b
          mirror:
            host: {{.MirrorHost}}
    {{- if not .Absent }}
          mirrorPercentage:
            value: {{.Percent}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 24 22:09:33 UTC 2020
    - 306 bytes
    - Viewed (0)
Back to top