Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 9,567 for Implements (0.39 sec)

  1. src/math/big/ratmarsh.go

    // license that can be found in the LICENSE file.
    
    // This file implements encoding/decoding of Rats.
    
    package big
    
    import (
    	"errors"
    	"fmt"
    	"internal/byteorder"
    	"math"
    )
    
    // Gob codec version. Permits backward-compatible changes to the encoding.
    const ratGobVersion byte = 1
    
    // GobEncode implements the [encoding/gob.GobEncoder] interface.
    func (x *Rat) GobEncode() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/cidr.go

    }
    
    // ConvertToType implements ref.Val.ConvertToType.
    func (d CIDR) ConvertToType(typeVal ref.Type) ref.Val {
    	switch typeVal {
    	case CIDRType:
    		return d
    	case types.TypeType:
    		return CIDRType
    	case types.StringType:
    		return types.String(d.Prefix.String())
    	}
    	return types.NewErr("type conversion error from '%s' to '%s'", CIDRType, typeVal)
    }
    
    // Equal implements ref.Val.Equal.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                    String getVeryDeepMessage()
                }
    
                interface SideModel extends BaseModel {
                }
    
                abstract class AbstractModel implements DeepChildModel {
                }
    
                class DefaultModel extends AbstractModel implements ShallowChildModel, DeepChildModel, VeryDeepChildModel, SideModel, java.io.Serializable {
    
                    private final String message
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/PluginTestPreconditions.groovy

            ].find { it.exists() }
        }
    
        static class BashAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
                return satisfied(UnitTestPreconditions.UnixDerivative) && locate("bash") != null
            }
        }
    
        static class DashAvailable implements TestPrecondition {
            @Override
            boolean isSatisfied() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

            buildFile '''
                import org.gradle.api.flow.*
                import org.gradle.api.services.*
                import java.util.concurrent.atomic.AtomicInteger
    
                class FlowActionPlugin implements Plugin<Project> {
                    final FlowScope flowScope
                    final FlowProviders flowProviders
                    @Inject FlowActionPlugin(FlowScope flowScope, FlowProviders flowProviders) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. cmd/storage-datatypes_gen.go

    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z BaseOptions) 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 BaseOptions) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  7. cmd/bucket-replication-metrics_gen.go

    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z InQueueStats) 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 InQueueStats) 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
    - 33.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/api_object_versioner.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    )
    
    // APIObjectVersioner implements versioning and extracting etcd node information
    // for objects that have an embedded ObjectMeta or ListMeta field.
    type APIObjectVersioner struct{}
    
    // UpdateObject implements Versioner
    func (a APIObjectVersioner) UpdateObject(obj runtime.Object, resourceVersion uint64) error {
    	accessor, err := meta.Accessor(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 15:19:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. pkg/registry/admissionregistration/validatingadmissionpolicy/storage/storage.go

    	"k8s.io/kubernetes/pkg/registry/admissionregistration/validatingadmissionpolicy"
    	"sigs.k8s.io/structured-merge-diff/v4/fieldpath"
    )
    
    // REST implements a RESTStorage for validatingAdmissionPolicy against etcd
    type REST struct {
    	*genericregistry.Store
    }
    
    // StatusREST implements a RESTStorage for ValidatingAdmissionPolicyStatus
    type StatusREST struct {
    	// DO NOT embed Store, manually select function to export.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 23:43:34 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiConnection.groovy

        T setStandardError(OutputStream outputStream) {
            configurableLauncher.standardError = new TeeOutputStream(outputStream, stderr)
            return configurableLauncher
        }
    }
    
    class ToolingApiBuildLauncher implements BuildLauncher, ToolingApiConfigurableLauncher<BuildLauncher> {
        @Delegate
        private final BuildLauncher buildLauncher
    
        ToolingApiBuildLauncher(BuildLauncher buildLauncher, OutputStream stdout, OutputStream stderr) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top