Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 558 for implementMe (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                    ModelType<?> internalView = internalViewRegistration.getInternalView();
                    // Managed internal views are allowed not to be implemented by the default implementation
                    if (isManaged(internalView)) {
                        continue;
                    }
                    if (!internalView.isAssignableFrom(implementationType)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

        def "restores task with Transformer implemented by Java lambda"() {
            given:
            file("buildSrc/src/main/java/my/LambdaPlugin.java").tap {
                parentFile.mkdirs()
                text = """
                    package my;
    
                    import org.gradle.api.*;
                    import org.gradle.api.tasks.*;
    
                    public class LambdaPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/go/types/instantiate.go

    		// the parameterized type.
    		bound := check.subst(pos, tpar.bound, smap, nil, ctxt)
    		var cause string
    		if !check.implements(pos, targs[i], bound, true, &cause) {
    			return i, errors.New(cause)
    		}
    	}
    	return -1, nil
    }
    
    // implements checks if V implements T. The receiver may be nil if implements
    // is called through an exported API call such as AssignableTo. If constraint
    // is set, T is a type constraint.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/instantiate.go

    		// the parameterized type.
    		bound := check.subst(pos, tpar.bound, smap, nil, ctxt)
    		var cause string
    		if !check.implements(pos, targs[i], bound, true, &cause) {
    			return i, errors.New(cause)
    		}
    	}
    	return -1, nil
    }
    
    // implements checks if V implements T. The receiver may be nil if implements
    // is called through an exported API call such as AssignableTo. If constraint
    // is set, T is a type constraint.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/crypto/tls/cipher_suites.go

    	supportedUpToTLS12 = []uint16{VersionTLS10, VersionTLS11, VersionTLS12}
    	supportedOnlyTLS12 = []uint16{VersionTLS12}
    	supportedOnlyTLS13 = []uint16{VersionTLS13}
    )
    
    // CipherSuites returns a list of cipher suites currently implemented by this
    // package, excluding those with security issues, which are returned by
    // [InsecureCipherSuites].
    //
    // The list is sorted by ID. Note that the default cipher suites selected by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. src/crypto/ecdsa/ecdsa.go

    	"golang.org/x/crypto/cryptobyte/asn1"
    )
    
    // PublicKey represents an ECDSA public key.
    type PublicKey struct {
    	elliptic.Curve
    	X, Y *big.Int
    }
    
    // Any methods implemented on PublicKey might need to also be implemented on
    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // ECDH returns k as a [ecdh.PublicKey]. It returns an error if the key is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Equivalence.java

       *   <li>{@code hash(null)} is {@code 0}.
       * </ul>
       */
      public final int hash(@CheckForNull T t) {
        if (t == null) {
          return 0;
        }
        return doHash(t);
      }
    
      /**
       * Implemented by the user to return a hash code for {@code t}, subject to the requirements
       * specified in {@link #hash}.
       *
       * <p>This method should not be called except by {@link #hash}. When {@link #hash} calls this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

        ReceivedException getException() {
            exception
        }
    
        @Override
        InternalProblemBuilder toBuilder() {
            throw new UnsupportedOperationException("Not implemented")
        }
    
        static class ReceivedProblemDefinition implements ProblemDefinition {
            private final ReceivedProblemId id
            private final Severity severity
            private final ReceivedDocumentationLink documentationLink
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/crypto/rsa/rsa.go

    // exponent E nor the precise bit size of N are similarly protected.
    type PublicKey struct {
    	N *big.Int // modulus
    	E int      // public exponent
    }
    
    // Any methods implemented on PublicKey might need to also be implemented on
    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // Size returns the modulus size in bytes. Raw signatures and ciphertexts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/net/net.go

    // Implementation of the Conn interface.
    
    // Read implements the Conn Read method.
    func (c *conn) Read(b []byte) (int, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.fd.Read(b)
    	if err != nil && err != io.EOF {
    		err = &OpError{Op: "read", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	return n, err
    }
    
    // Write implements the Conn Write method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top