Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 9,567 for Implements (0.25 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/testing/cacheable_object.go

    }
    
    // Marshal implements proto.Marshaler interface.
    func (*noncacheableTestObject) Marshal() ([]byte, error) {
    	return []byte("\"proto-result\""), nil
    }
    
    // DeepCopyObject implements runtime.Object interface.
    func (*noncacheableTestObject) DeepCopyObject() runtime.Object {
    	panic("DeepCopy unimplemented for noncacheableTestObject")
    }
    
    // GetObjectKind implements runtime.Object interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 30 06:58:54 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  2. maven-di/src/test/java/org/apache/maven/di/impl/InjectorImplTest.java

            @interface MyQualifier {}
    
            interface MyService {}
    
            @Named
            @Priority(10)
            static class MyNamedServiceImpl implements MyService {}
    
            @MyQualifier
            static class MyQualifiedServiceImpl implements MyService {}
    
            @Named
            static class MyMojo {
                @Inject
                @MyQualifier
                MyService service;
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. internal/grid/msg_gen.go

    import (
    	"github.com/tinylib/msgp/msgp"
    )
    
    // DecodeMsg implements msgp.Decodable
    func (z *Flags) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    		zb0001, err = dc.ReadUint8()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = Flags(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z Flags) EncodeMsg(en *msgp.Writer) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  4. pkg/config/analysis/testing/fixtures/context.go

    }
    
    var _ analysis.Context = &Context{}
    
    // Report implements analysis.Context
    func (ctx *Context) Report(_ config.GroupVersionKind, t diag.Message) {
    	ctx.Reports = append(ctx.Reports, t)
    }
    
    // Find implements analysis.Context
    func (ctx *Context) Find(config.GroupVersionKind, resource.FullName) *resource.Instance { return nil }
    
    // Exists implements analysis.Context
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 28 20:21:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/helpers.go

    	}
    	return ua
    }
    
    // LazyClientIP implements String() string and it will
    // calls GetClientIP() lazily only when required.
    type lazyClientIP struct {
    	req *http.Request
    }
    
    func (lazy *lazyClientIP) String() string {
    	if lazy.req != nil {
    		if ip := utilnet.GetClientIP(lazy.req); ip != nil {
    			return ip.String()
    		}
    	}
    	return "unknown"
    }
    
    // lazyAccept implements String() string and it will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/fake_binder.go

    	BindCalled   bool
    }
    
    var _ SchedulerVolumeBinder = &FakeVolumeBinder{}
    
    // GetPodVolumeClaims implements SchedulerVolumeBinder.GetPodVolumes.
    func (b *FakeVolumeBinder) GetPodVolumeClaims(_ klog.Logger, pod *v1.Pod) (podVolumeClaims *PodVolumeClaims, err error) {
    	return &PodVolumeClaims{}, nil
    }
    
    // GetEligibleNodes implements SchedulerVolumeBinder.GetEligibleNodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 03:28:12 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/plugins/consuming/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)
  9. platforms/documentation/docs/src/snippets/plugins/resolutionRules/common/ivy-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)
  10. 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)
Back to top