Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 444 for sometimes (0.15 sec)

  1. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/SwiftApplicationInitIntegrationTest.groovy

    @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC)
    @Requires(UnitTestPreconditions.NotMacOsM1) // M1 Macs need modern Xcode to compile aarch64 binaries
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class SwiftApplicationInitIntegrationTest extends AbstractInitIntegrationSpec {
    
        public static final String SAMPLE_APPLICATION_CLASS = "main.swift"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/crypto/x509/hybrid_pool_test.go

    		t.Skipf("platform verifier not available on %s", runtime.GOOS)
    	}
    	if !testenv.HasExternalNetwork() {
    		t.Skip()
    	}
    	if runtime.GOOS == "windows" {
    		// NOTE(#51599): on the Windows builders we sometimes see that the state
    		// of the root pool is not fully initialized, causing an expected
    		// platform verification to fail. In part this is because Windows
    		// dynamically populates roots into its local trust store at time of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:11 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleProjectIntegrationTest.groovy

    import org.gradle.nativeplatform.fixtures.app.SwiftAppWithLibrary
    import org.gradle.test.fixtures.file.DoesNotSupportNonAsciiPaths
    
    @DoesNotSupportNonAsciiPaths(reason = "Swift sometimes fails when executed from non-ASCII directory")
    class XcodeMultipleProjectIntegrationTest extends AbstractXcodeIntegrationSpec {
        def setup() {
            settingsFile << """
                rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 03:57:28 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    Sometimes it is also possible to build two artifacts, one containing the volatile data and another one containing a constant representation of the volatile data.
    The non-volatile output would be used e.g. for testing while the volatile one would be published to an external repository.
    While this conflicts with the Continuous Delivery "build artifacts once" principle it can sometimes be the only option.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/Checksum.java

     * A checksum consists of a kind (md5, sha1, ...), a value, but also
     * provides <i>alternatives</i>. Alternatives are checksums which are
     * deemed trusted, because sometimes in a single build we can see different
     * checksums for the same module, because they are sourced from different
     * repositories.
     *
     * In theory, this shouldn't be allowed. However, it's often the case that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. docs/features/calls.md

    ## Retrying Requests
    
    Sometimes connections fail: either a pooled connection was stale and disconnected, or the webserver itself couldn’t be reached. OkHttp will retry the request with a different route if one is available.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

                inputFile.text = "initial"
                waitForChangesToBePickedUp()
            }
            then:
            executedAndNotSkipped(":consumer")
            // TODO: sometimes, the changes from the same build are picked up
            projectFilesInVfs >= 1
    
            when:
            runWithFileSystemWatchingAndMakeChangesWhen("consumer", "userInput") {
                inputFile.text = "changed"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git.go

    					return nil, err
    				}
    			}
    		}
    		r.remoteURL = r.remote
    		r.remote = "origin"
    	} else {
    		// Local path.
    		// Disallow colon (not in ://) because sometimes
    		// that's rcp-style host:path syntax and sometimes it's not (c:\work).
    		// The go command has always insisted on URL syntax for ssh.
    		if strings.Contains(remote, ":") {
    			return nil, fmt.Errorf("git remote cannot use host:path syntax")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Platform.java

      }
    
      /**
       * Configures the given map maker to use weak keys, if possible; does nothing otherwise (i.e., in
       * GWT). This is sometimes acceptable, when only server-side code could generate enough volume
       * that reclamation becomes important.
       */
      @J2ktIncompatible
      static MapMaker tryWeakKeys(MapMaker mapMaker) {
        return mapMaker.weakKeys();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Platform.java

      }
    
      /**
       * Configures the given map maker to use weak keys, if possible; does nothing otherwise (i.e., in
       * GWT). This is sometimes acceptable, when only server-side code could generate enough volume
       * that reclamation becomes important.
       */
      @J2ktIncompatible
      static MapMaker tryWeakKeys(MapMaker mapMaker) {
        return mapMaker.weakKeys();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top