Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 725 for alternate (0.18 sec)

  1. 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)
  2. pkg/controller/garbagecollector/graph_builder.go

    				// this alternate is the first following verifiedAbsentIdentity lexically
    				firstFollowing = &ref
    			}
    		}
    	}
    
    	// return the first alternate identity following the verified absent identity, if there is one
    	if firstFollowing != nil {
    		return firstFollowing
    	}
    	// otherwise return the first alternate identity
    	return first
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/mod_convert_git.txt

    env GO111MODULE=on
    
    # We should not create a go.mod file unless the user ran 'go mod init' explicitly.
    # However, we should suggest 'go mod init' if we can find an alternate config file.
    cd $WORK/test/x
    ! go list .
    stderr 'found .git/config in .*[/\\]test'
    stderr '\s*cd \.\. && go mod init'
    
    # The command we suggested should succeed.
    cd ..
    go mod init
    go list -m all
    stdout '^m$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 13 20:43:12 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

                    }
                });
            } else {
                row.find("td,th").each(function(index){
                    $(this).addClass(slices[index]);
                })
            }
        });
    
        // Add alternate row styles for tables
        $("table").each(function () {
            var counter = 0;
            var rows = $(this).find("tr");
            if (rows.length != 1) {
                rows.each(function () {
                    var e = $(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            } else {
                outputs.recompiledClasses('greeter', 'renamed-sum', 'main')
            }
    
            outputDirectory.assertContainsDescendants(expectedIntermediateDescendants(app.alternate))
            installation("build/install/main/debug").exec().out == app.expectedAlternateOutput
        }
    
        def "removes stale object files for library"() {
            def lib = new IncrementalSwiftStaleCompileOutputLib()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. src/internal/nettrace/nettrace.go

    // TraceKey is a context.Context Value key. Its associated value should
    // be a *Trace struct.
    type TraceKey struct{}
    
    // LookupIPAltResolverKey is a context.Context Value key used by tests to
    // specify an alternate resolver func.
    // It is not exposed to outsider users. (But see issue 12503)
    // The value should be the same type as lookupIP:
    //
    //	func lookupIP(ctx context.Context, host string) ([]IPAddr, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top