Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 8,982 for implementMe (0.16 sec)

  1. pkg/scheduler/testing/framework/fake_listers.go

    }
    
    func (f *serviceNamespaceLister) Get(name string) (*v1.Service, error) {
    	return nil, fmt.Errorf("not implemented")
    }
    
    func (f *serviceNamespaceLister) List(selector labels.Selector) ([]*v1.Service, error) {
    	return f.services, nil
    }
    
    var _ corelisters.ReplicationControllerLister = &ControllerLister{}
    
    // ControllerLister implements ControllerLister on []v1.ReplicationController for test purposes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 10:14:08 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/source/JavaUtilLoggingSystem.java

     */
    public class JavaUtilLoggingSystem implements LoggingSourceSystem {
    
        private static final Map<LogLevel, Level> LOG_LEVEL_MAPPING = new HashMap<LogLevel, Level>();
    
        // Gradle's log levels correspond to slf4j log levels
        // as implemented in OutputEventListenerBackedLogger.
        // These levels are mapped to java.util.logging.Levels
        // corresponding to the mapping implemented in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Converter.java

       * @throws UnsupportedOperationException if backward conversion is not implemented; this should be
       *     very rare. Note that if backward conversion is not only unimplemented but
       *     unimplement<i>able</i> (for example, consider a {@code Converter<Chicken, ChickenNugget>}),
       *     then this is not logically a {@code Converter} at all, and should just implement {@link
       *     Function}.
       */
      @ForOverride
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/encoding/encoding.go

    package encoding
    
    // BinaryMarshaler is the interface implemented by an object that can
    // marshal itself into a binary form.
    //
    // MarshalBinary encodes the receiver into a binary form and returns the result.
    type BinaryMarshaler interface {
    	MarshalBinary() (data []byte, err error)
    }
    
    // BinaryUnmarshaler is the interface implemented by an object that can
    // unmarshal a binary representation of itself.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:43:37 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32.go

    	Koopman = 0xeb31d82e
    )
    
    // Table is a 256-word table representing the polynomial for efficient processing.
    type Table [256]uint32
    
    // This file makes use of functions implemented in architecture-specific files.
    // The interface that they implement is as follows:
    //
    //    // archAvailableIEEE reports whether an architecture-specific CRC32-IEEE
    //    // algorithm is available.
    //    archAvailableIEEE() bool
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestNGExecutionResult.groovy

        }
    
        boolean testClassExists(String testClass) {
            throw new UnsupportedOperationException("Unsupported. Implement if you need it.")
        }
    
        boolean testClassDoesNotExist(String testClass) {
            throw new UnsupportedOperationException("Unsupported. Implement if you need it.")
        }
    
        TestClassExecutionResult testClass(String testClass) {
            parseResults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/internal/DefaultActorFactory.java

            }
            synchronized (lock) {
                if (blockingActors.containsKey(target)) {
                    throw new UnsupportedOperationException("Cannot create a non-blocking and blocking actor for the same object. This is not implemented yet.");
                }
                NonBlockingActor actor = nonBlockingActors.get(target);
                if (actor == null) {
                    actor = new NonBlockingActor(target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     *
     * Mandatory platform components must be implemented by a platform to fully support the Analysis API in the desired environment. A few
     * platform components are optional, signified by [KotlinOptionalPlatformComponent]. As a marker interface, [KotlinPlatformComponent]
     * makes it easy to find all platform components to implement.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. src/hash/hash.go

    	// are a multiple of the block size.
    	BlockSize() int
    }
    
    // Hash32 is the common interface implemented by all 32-bit hash functions.
    type Hash32 interface {
    	Hash
    	Sum32() uint32
    }
    
    // Hash64 is the common interface implemented by all 64-bit hash functions.
    type Hash64 interface {
    	Hash
    	Sum64() uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top