Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,511 for implementMe (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/io/fs/readdir.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs
    
    import (
    	"errors"
    	"internal/bytealg"
    	"slices"
    )
    
    // ReadDirFS is the interface implemented by a file system
    // that provides an optimized implementation of [ReadDir].
    type ReadDirFS interface {
    	FS
    
    	// ReadDir reads the named directory
    	// and returns a list of directory entries sorted by filename.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/toolingApi/customModel/groovy/plugin/src/main/java/org/gradle/sample/plugin/DefaultModel.java

     * are compatible with the custom tooling model interface. It may or may not implement the custom tooling model interface.
     */
    public class DefaultModel implements Serializable {
        public String getName() {
            return "name";
        }
    
        public List<String> getTasks() {
            return Arrays.asList(":a", ":b", ":c");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 599 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

     */
    @NoConventionMapping
    @SuppressWarnings("deprecation")
    @DisableCachingByDefault(because = "Gradle would require more information to cache this task")
    public abstract class DefaultTask extends org.gradle.api.internal.AbstractTask implements Task {
        // NOTE: These methods are duplicated here because Eclipse treats methods implemented in the deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  10. pkg/credentialprovider/provider.go

    	// cache fields
    	cacheDockerConfig DockerConfig
    	expiration        time.Time
    	mu                sync.Mutex
    }
    
    // Enabled implements dockerConfigProvider
    func (d *defaultDockerConfigProvider) Enabled() bool {
    	return true
    }
    
    // Provide implements dockerConfigProvider
    func (d *defaultDockerConfigProvider) Provide(image string) DockerConfig {
    	// Read the standard Docker credentials from .dockercfg
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 00:08:54 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top