Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 677 for accept4 (0.23 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/build.gradle

    dependencies {
        components {
            all(StatusRule)
        }
    }
    
    // tag::reject-version-1-1[]
    configurations {
        rejectConfig {
            resolutionStrategy {
                componentSelection {
                    // Accept the highest version matching the requested version that isn't '1.5'
                    all { ComponentSelection selection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/build.gradle.kts

            all(StatusRule::class.java)
        }
    }
    
    // tag::reject-version-1-1[]
    configurations {
        create("rejectConfig") {
            resolutionStrategy {
                componentSelection {
                    // Accept the highest version matching the requested version that isn't '1.5'
                    all {
                        if (candidate.group == "org.sample" && candidate.module == "api" && candidate.version == "1.5") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    Publishing a build scan to scans.gradle.com requires accepting the Gradle Terms of Service defined at https://gradle.com/terms-of-service.
    Do you accept these terms? [yes, no] yes
    
    Gradle Terms of Service accepted.
    
    Publishing build scan...
    https://gradle.com/s/5u4w3gxeurtd2
    ----
    
    Click the link and explore which tasks where executed, which dependencies where downloaded and many more details!
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  4. src/net/internal/socktest/sys_unix.go

    		return so.Err
    	}
    	sw.stats.getLocked(so.Cookie).Listened++
    	return nil
    }
    
    // Accept wraps syscall.Accept.
    func (sw *Switch) Accept(s int) (ns int, sa syscall.Sockaddr, err error) {
    	so := sw.sockso(s)
    	if so == nil {
    		return syscall.Accept(s)
    	}
    	sw.fmu.RLock()
    	f := sw.fltab[FilterAccept]
    	sw.fmu.RUnlock()
    
    	af, err := f.apply(so)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ParamsMatchingConstructorSelector.java

                        // C1(A, B, C, D)
                        // C2(A, B, X, D)
                        // C1 and C2 both accept the parameters A, B and D, but
                        // C1 accepts a parameter of type C at position 2 and
                        // C2 accepts a parameter of type X at position 2.
                        // This will trigger this check because we cannot tell which is the "better"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/accepted-changes/accepted-public-api-changes.json

    Bo Zhang <******@****.***> 1718090200 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 32 bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

        }
    
        private static class TestServer extends ExternalResource {
            ServerSocketChannel socket;
            Thread acceptor;
    
            void tryStart(int port) {
                socket = ServerSocketChannel.open()
                socket.socket().bind(new InetSocketAddress(port))
                acceptor = new Thread() {
                    @Override
                    void run() {
                        while (true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. internal/config/errors.go

    		"Please check the passed value",
    		"MINIO_DOMAIN only accepts non-overlapping domain values",
    	)
    
    	ErrInvalidDomainValue = newErrFn(
    		"Invalid domain value",
    		"Please check the passed value",
    		"Domain can only accept DNS compatible values",
    	)
    
    	ErrInvalidErasureSetSize = newErrFn(
    		"Invalid erasure set size",
    		"Please check the passed value",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/UnicastMessagingIntegrationTest.groovy

            private ConnectionAcceptor acceptor
            private ObjectConnection connection
            final Address address
    
            Server() {
                def server = services.get(MessagingServer)
                acceptor = server.accept({ event ->
                    lock.lock()
                    try {
                        connection = event
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/parse.go

    // If parsing succeeded but an unknown value was found, it returns
    // ValueError. The Tag returned in this case is just stripped of the unknown
    // value. All other values are preserved. It accepts tags in the BCP 47 format
    // and extensions to this standard defined in
    // https://www.unicode.org/reports/tr35/#Unicode_Language_and_Locale_Identifiers.
    // The resulting tag is canonicalized using the default canonicalization type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top