Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 213 for alternate (0.33 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalElement.java

    public abstract class IncrementalElement {
        public final OriginalElement original = new OriginalElement();
        public final AlternateElement alternate = new AlternateElement();
    
        protected abstract List<Transform> getIncrementalChanges();
    
        /**
         * Transforms the app element into the alternate app element in the given project.
         */
        public void applyChangesToProject(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. src/internal/testlog/exit.go

    // with calls to os.Exit
    var panicOnExit0 struct {
    	mu  sync.Mutex
    	val bool
    }
    
    // SetPanicOnExit0 sets panicOnExit0 to v.
    //
    // SetPanicOnExit0 should be an internal detail,
    // but alternate implementations of go test in other
    // build systems may need to access it using linkname.
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname SetPanicOnExit0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/install_cross_gobin.txt

    env GO111MODULE=off
    [short] skip # rebuilds std for alternate architecture
    
    cd mycmd
    go build mycmd
    
    # cross-compile install with implicit GOBIN=$GOPATH/bin can make subdirectory
    env GOARCH=386
    [GOARCH:386] env GOARCH=amd64
    env GOOS=linux
    go install mycmd
    exists $GOPATH/bin/linux_$GOARCH/mycmd
    
    # cross-compile install with explicit GOBIN cannot make subdirectory
    env GOBIN=$WORK/bin
    ! go install mycmd
    ! exists $GOBIN/linux_$GOARCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 667 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleArtifactResolutionIntegrationTest.groovy

            given:
            httpRepo = server.getRemoteIvyRepo(true, "[module]/[revision]", "alternate-ivy.xml", "[artifact](.[ext])")
    
            buildFile.text = """
    repositories {
        ivy {
            url '${httpRepo.uri}'
            patternLayout {
                artifact '[module]/[revision]/[artifact](.[ext])'
                ivy '[module]/[revision]/alternate-ivy.xml'
            }
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteDatabase.kt

     * used so that OkHttp can learn from its mistakes: if there was a failure attempting to connect to
     * a specific IP address or proxy server, that failure is remembered and alternate routes are
     * preferred.
     */
    class RouteDatabase {
      private val _failedRoutes = mutableSetOf<Route>()
    
      val failedRoutes: Set<Route>
        @Synchronized get() = _failedRoutes.toSet()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingList.java

         */
        Property<String> getPost();
    
        /**
         * The URL where you can browse the archive of this mailing list.
         */
        Property<String> getArchive();
    
        /**
         * The alternate URLs where you can browse the archive of this mailing list.
         */
        SetProperty<String> getOtherArchives();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/net/http/example_test.go

    	// To serve a directory on disk (/tmp) under an alternate URL
    	// path (/tmpfiles/), use StripPrefix to modify the request
    	// URL's path before the FileServer sees it:
    	http.Handle("/tmpfiles/", http.StripPrefix("/tmpfiles/", http.FileServer(http.Dir("/tmp"))))
    }
    
    func ExampleStripPrefix() {
    	// To serve a directory on disk (/tmp) under an alternate URL
    	// path (/tmpfiles/), use StripPrefix to modify the request
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 16:12:45 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/JavaClassNameFormatter.java

            int endIdx = qualifiedClassName.lastIndexOf(PACKAGE_SEPARATOR);
            int iterations = 0;
    
            while(beginIdx + (qualifiedClassName.length() - endIdx) <= maxLengthWithoutEllipsis) {
                // Alternate appending packages at beginning and end until we reach max length
                if (iterations % 2 == 0) {
                    int tmp = qualifiedClassName.indexOf(PACKAGE_SEPARATOR, beginIdx + 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/names/generate.go

    // name (63 characters)
    var SimpleNameGenerator NameGenerator = simpleNameGenerator{}
    
    const (
    	// TODO: make this flexible for non-core resources with alternate naming rules.
    	maxNameLength          = 63
    	randomLength           = 5
    	MaxGeneratedNameLength = maxNameLength - randomLength
    )
    
    func (simpleNameGenerator) GenerateName(base string) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/testdata/tsan9.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // This program failed when run under the C/C++ ThreadSanitizer. The
    // TSAN library was not keeping track of whether signals should be
    // delivered on the alternate signal stack, and the Go signal handler
    // was not preserving callee-saved registers from C callers.
    
    /*
    #cgo CFLAGS: -g -fsanitize=thread
    #cgo LDFLAGS: -g -fsanitize=thread
    
    #include <stdlib.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top