Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 9,567 for Implements (0.39 sec)

  1. platforms/documentation/docs/src/snippets/plugins/resolutionRules/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 com/example/hello/HelloPlugin$1.class package com.example.hello; synchronized class HelloPlugin$1 implements org.gradle.api.Action { void HelloPlugin$1(HelloPlugin); public void execute(org.gradle.api.Task); } com/example/hello/HelloPlugin.class package com.example.hello; public synchronized class HelloPlugin implements org.gradle.api.Plugin { public void HelloPlugin(); public void apply(org.gradle.api.Project); } com/example/goodbye/GoodbyePlugin.class package...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/strings/reader.go

    // to any other method.
    func (r *Reader) Size() int64 { return int64(len(r.s)) }
    
    // Read implements the [io.Reader] interface.
    func (r *Reader) Read(b []byte) (n int, err error) {
    	if r.i >= int64(len(r.s)) {
    		return 0, io.EOF
    	}
    	r.prevRune = -1
    	n = copy(b, r.s[r.i:])
    	r.i += int64(n)
    	return
    }
    
    // ReadAt implements the [io.ReaderAt] interface.
    func (r *Reader) ReadAt(b []byte, off int64) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    // object and potentially wraps the user-provided decorator with a new http.ResponseWriter
    // object that implements http.CloseNotifier, http.Flusher, and/or http.Hijacker by
    // delegating to the user-provided decorator (if it implements the relevant method) or
    // the inner http.ResponseWriter (otherwise), so that the returned http.ResponseWriter
    // object implements the same subset of those interfaces as the inner http.ResponseWriter.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

    plugins {
        id 'java-library'
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::config-component-metadata-rule[]
    @CacheableRule
    abstract class TargetJvmVersionRule implements ComponentMetadataRule {
        final Integer jvmVersion
        @Inject TargetJvmVersionRule(Integer jvmVersion) {
            this.jvmVersion = jvmVersion
        }
    
        @Inject abstract ObjectFactory getObjects()
    
        void execute(ComponentMetadataContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/pluginVersions/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 com/example/hello/HelloPlugin$1.class package com.example.hello; synchronized class HelloPlugin$1 implements org.gradle.api.Action { void HelloPlugin$1(HelloPlugin); public void execute(org.gradle.api.Task); } com/example/hello/HelloPlugin.class package com.example.hello; public synchronized class HelloPlugin implements org.gradle.api.Plugin { public void HelloPlugin(); public void apply(org.gradle.api.Project); } com/example/goodbye/GoodbyePlugin.class package...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. pkg/registry/apps/daemonset/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{"ds"}
    }
    
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. internal/bucket/bandwidth/monitor_gen.go

    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z BucketBandwidthReport) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 0
    	_ = z
    	err = en.Append(0x80)
    	if err != nil {
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z BucketBandwidthReport) MarshalMsg(b []byte) (o []byte, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

                }
            """
        }
    
        def "#thing can be added using #notation notation"() {
            when:
            buildFile << """
                class ModifyRule implements ComponentMetadataRule {
                    void execute(ComponentMetadataContext context) {
                        context.details.withVariant("$variantToTest") {
                            with${toCamelCase(thing)} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool-rebalance_gen.go

    import (
    	"github.com/tinylib/msgp/msgp"
    )
    
    // DecodeMsg implements msgp.Decodable
    func (z *rebalSaveOpts) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    		zb0001, err = dc.ReadUint8()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = rebalSaveOpts(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z rebalSaveOpts) EncodeMsg(en *msgp.Writer) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top