Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 5,940 for stringAt (0.13 sec)

  1. src/cmd/internal/objabi/symkind.go

    type SymKind uint8
    
    // Defined SymKind values.
    // These are used to index into cmd/link/internal/sym/AbiSymKindToSymKind
    //
    // TODO(rsc): Give idiomatic Go names.
    //
    //go:generate stringer -type=SymKind
    const (
    	// An otherwise invalid zero value for the type
    	Sxxx SymKind = iota
    	// Executable instructions
    	STEXT
    	// Read only static data
    	SRODATA
    	// Static data that does not contain any pointers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 05 19:44:37 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/config/schema/collection/schema.go

    type schemaImpl struct {
    	resource     resource.Schema
    	name         config.GroupVersionKind
    	variableName string
    }
    
    // String interface method implementation.
    func (s *schemaImpl) String() string {
    	return fmt.Sprintf("[Schema](%s, %q, %s)", s.name, s.resource.ProtoPackage(), s.resource.Proto())
    }
    
    func (s *schemaImpl) VariableName() string {
    	return s.variableName
    }
    
    func (s *schemaImpl) Resource() resource.Schema {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion_test.go

    		bElemType := b.Elem()
    		assertEqualTypes(t, path, aElemType, bElemType)
    	case reflect.String:
    		// string types are equal
    
    	default:
    		fatalTypeError(t, path, a, b, "unhandled kind")
    	}
    }
    
    func fatalTypeError(t *testing.T, path []string, a, b reflect.Type, message string) {
    	t.Helper()
    	t.Fatalf("%s: %s: %s %s", strings.Join(path, "."), message, a, b)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. cmd/net_test.go

    	testCases := []struct {
    		ipList       []string
    		sortedIPList []string
    	}{
    		// Default case of two ips one with higher octet moves
    		// to the beginning of the list.
    		{
    			ipList:       []string{"127.0.0.1", "10.0.0.13"},
    			sortedIPList: []string{"10.0.0.13", "127.0.0.1"},
    		},
    		// With multiple types of octet, chooses a higher octet.
    		{
    			ipList:       []string{"127.0.0.1", "172.0.21.1", "192.168.1.106"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 08:43:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/deprecation_test.go

    		t.Fatal(err)
    	}
    
    	testcases := []struct {
    		name    string
    		version string
    		want    []string
    	}{
    		{
    			name:    "default",
    			version: "v1alpha1",
    			want:    []string{"tests.example.com/v1alpha1 Dep is deprecated; use tests.example.com/v1beta3 Dep"},
    		},
    		{
    			name:    "custom",
    			version: "v1alpha2",
    			want:    []string{"custom deprecation warning"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 24 22:06:09 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/alg.go

    package types
    
    import "cmd/compile/internal/base"
    
    // AlgKind describes the kind of algorithms used for comparing and
    // hashing a Type.
    type AlgKind int8
    
    //go:generate stringer -type AlgKind -trimprefix A alg.go
    
    const (
    	AUNK   AlgKind = iota
    	ANOEQ          // Types cannot be compared
    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/fmt/print.go

    type Formatter interface {
    	Format(f State, verb rune)
    }
    
    // Stringer is implemented by any value that has a String method,
    // which defines the “native” format for that value.
    // The String method is used to print values passed as an operand
    // to any format that accepts a string or to an unformatted printer
    // such as [Print].
    type Stringer interface {
    	String() string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    			Labels: map[string]string{
    				discovery.LabelServiceName: serviceName,
    				discovery.LabelManagedBy:   controllerName,
    			},
    		},
    		AddressType: discovery.AddressTypeIPv4,
    	}, {
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "matching-2",
    			Namespace:       ns,
    			OwnerReferences: []metav1.OwnerReference{*ownerRef},
    			Labels: map[string]string{
    				discovery.LabelServiceName: serviceName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. operator/pkg/util/errs.go

    )
    
    // Errors is a slice of error.
    type Errors []error
    
    // Error implements the error#Error method.
    func (e Errors) Error() string {
    	return ToString(e, defaultSeparator)
    }
    
    // String implements the stringer#String method.
    func (e Errors) String() string {
    	return e.Error()
    }
    
    // ToError returns an error from Errors.
    func (e Errors) ToError() error {
    	if len(e) == 0 {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  10. Dockerfile.release

          description="MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads."
    
    ENV MINIO_ACCESS_KEY_FILE=access_key \
        MINIO_SECRET_KEY_FILE=secret_key \
        MINIO_ROOT_USER_FILE=access_key \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 29 19:10:49 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top