Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,395 for implementMe (1.34 sec)

  1. pkg/registry/core/pod/storage/storage.go

    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"po"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

        @SuppressWarnings("unused")
        class TypeWithInheritedPropertyFromSuperClassAndInterface
            extends BaseTypeWithInheritedProperty
            implements InterfaceWithInheritedProperty {
            @Override
            String getOverriddenProperty() { "test" }
        }
    
        def "implemented properties inherit annotation from first conflicting interface"() {
            expect:
            assertProperties TypeWithImplementedPropertyFromInterfaces, [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    == Implementing a build service
    
    To implement a build service, create an abstract class that implements link:{javadocPath}/org/gradle/api/services/BuildService.html[BuildService].
    Then, define methods you want the tasks to use on this type.
    
    [source,groovy]
    ----
    abstract class BaseCountingService implements BuildService<CountingParams>, AutoCloseable {
    
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. pkg/registry/apps/replicaset/storage/storage.go

    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"rs"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top