Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 9,567 for Implements (0.31 sec)

  1. cmd/batch-replicate_gen.go

    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *BatchJobReplicateResourceType) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 string
    		zb0001, err = dc.ReadString()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = BatchJobReplicateResourceType(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 18:51:46 UTC 2023
    - 40.6K bytes
    - Viewed (0)
  2. cmd/metacache_gen.go

    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *scanStatus) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    		zb0001, err = dc.ReadUint8()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = scanStatus(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z scanStatus) EncodeMsg(en *msgp.Writer) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/action/InstantiatingActionTest.groovy

        }
    
        static interface Details {
            void see(Object... args)
        }
    
        static class RuleWithoutParams implements Action<Details> {
            @Override
            void execute(Details details) {
                details.see()
            }
        }
    
        static class RuleWithParams implements Action<Details> {
            private final int x
            private final String str
    
            RuleWithParams(int x, String str) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 14 07:19:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/ApiRequirementNativeDependencyResolver.java

    /**
     * Adapts an 'api' library requirement to a default linkage, and then wraps the result so that only headers are provided.
     */
    public class ApiRequirementNativeDependencyResolver implements NativeDependencyResolver {
        private final NativeDependencyResolver delegate;
    
        public ApiRequirementNativeDependencyResolver(NativeDependencyResolver delegate) {
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy.go

    type policyType string
    
    // Policy implements logic for pod container to a memory assignment.
    type Policy interface {
    	Name() string
    	Start(s state.State) error
    	// Allocate call is idempotent
    	Allocate(s state.State, pod *v1.Pod, container *v1.Container) error
    	// RemoveContainer call is idempotent
    	RemoveContainer(s state.State, podUID string, containerName string)
    	// GetTopologyHints implements the topologymanager.HintProvider Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 05 17:52:25 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/flowschema/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/flowcontrol/flowschema"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // FlowSchemaStorage implements storage for flow schema.
    type FlowSchemaStorage struct {
    	FlowSchema *REST
    	Status     *StatusREST
    }
    
    // REST implements a RESTStorage for flow schema against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 15:11:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flushwriter/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package flushwriter implements a wrapper for a writer that flushes on every
    // write if that writer implements the io.Flusher interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 16:14:27 UTC 2017
    - 780 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultExternalComponentGraphResolveState.java

     */
    public class DefaultExternalComponentGraphResolveState<G extends ExternalComponentGraphResolveMetadata, A extends ExternalComponentResolveMetadata> extends AbstractComponentGraphResolveState<G> implements ExternalComponentGraphResolveState {
        private final ComponentIdGenerator idGenerator;
        private final A legacyMetadata;
    
        // The resolve state for each configuration of this component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

                class PluginA implements $Plugin.name {
                    void apply(project) {}
                }
            """
            file("buildSrc/src/main/resources/META-INF/gradle-plugins/a.properties") << "implementation-class=PluginA"
    
            file("buildSrc/src/main/groovy/PluginB.groovy") << """
                class PluginB implements $Plugin.name {
                    void apply(project) {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/features/withstaticreference/WithExtensionReferencesExtra.java

    import org.objectweb.asm.Type;
    
    public class WithExtensionReferencesExtra implements RequestExtra {
        public final Type ownerType;
        public final String methodName;
    
        public WithExtensionReferencesExtra(Type ownerType, String methodName) {
            this.ownerType = ownerType;
            this.methodName = methodName;
        }
    
        public static class ProducedSynthetically implements RequestExtra {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top