Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,511 for implementMe (0.15 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBuildController.java

     *
     * <p>Consumer compatibility: This interface is used by all consumer versions from 1.8-rc-1 to 4.3. It is also used by later consumers when the provider does not
     * implement newer interfaces.
     * </p>
     * <p>Provider compatibility: This interface is implemented by all provider versions from 1.8-rc-1.</p>
     *
     * @since 1.8-rc-1
     * @deprecated 4.4. Use {@link InternalBuildControllerVersion2} instead.
     */
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. internal/etag/reader.go

    type UUIDHash struct {
    	uuid []byte
    }
    
    // Write -  implement hash.Hash Write
    func (u UUIDHash) Write(p []byte) (n int, err error) {
    	return len(p), nil
    }
    
    // Sum -  implement md5.Sum
    func (u UUIDHash) Sum(b []byte) []byte {
    	return u.uuid
    }
    
    // Reset -  implement hash.Hash Reset
    func (u UUIDHash) Reset() {
    	return
    }
    
    // Size -  implement hash.Hash Size
    func (u UUIDHash) Size() int {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // A Caser transforms given input to a certain case. It implements
    // transform.Transformer.
    //
    // A Caser may be stateful and should therefore not be shared between
    // goroutines.
    type Caser struct {
    	t transform.SpanningTransformer
    }
    
    // Bytes returns a new byte slice with the result of converting b to the case
    // form implemented by c.
    func (c Caser) Bytes(b []byte) []byte {
    	b, _, _ = transform.Bytes(c.t, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/rest/subresources.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/client"
    	"k8s.io/kubernetes/pkg/registry/core/pod"
    )
    
    // ProxyREST implements the proxy subresource for a Pod
    type ProxyREST struct {
    	Store          *genericregistry.Store
    	ProxyTransport http.RoundTripper
    }
    
    // Implement Connecter
    var _ = rest.Connecter(&ProxyREST{})
    
    var proxyMethods = []string{"GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

    import static org.hamcrest.Matchers.allOf
    
    class UndeclaredFileInputsIntegrationTest extends AbstractConfigurationCacheIntegrationTest implements GroovyPluginImplementation {
        @ToBeImplemented("reporting multiple consumers per input is not implemented yet")
        def "reports multiple consumers of a single file in #accessKind access"() {
            def configurationCache = newConfigurationCacheFixture()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/collections/FilteredIndexedElementSource.java

                throw new UnsupportedOperationException("Not implemented yet.");
            }
    
            @Override
            public T next() {
                nextIndex++;
                return iterator.next();
            }
    
            @Override
            public T previous() {
                throw new UnsupportedOperationException("Not implemented yet.");
            }
    
            @Override
            public int nextIndex() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 11 01:28:48 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/registry/autoscaling/horizontalpodautoscaler/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{"hpa"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  8. src/os/wait_unimp.go

    // aix, darwin, js/wasm, openbsd, solaris and wasip1/wasm don't implement
    // waitid/wait6.
    
    //go:build aix || darwin || (js && wasm) || openbsd || solaris || wasip1
    
    package os
    
    // blockUntilWaitable attempts to block until a call to p.Wait will
    // succeed immediately, and reports whether it has done so.
    // It does not actually call p.Wait.
    // This version is used on systems that do not implement waitid,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 13:16:52 UTC 2023
    - 831 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/dataflow_actions.adoc

        interface Params : FlowParameters {
    
        }
    
        override fun execute(parameters: Params) {
    
        }
    }
    ----
    
    The `execute` method must be implemented because this is where the work happens.
    An action implementation is treated as a <<custom_gradle_types.adoc#custom_gradle_types,custom Gradle type>> and can use any of the features available to custom Gradle types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. 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)
Back to top