Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for sig1 (0.14 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		// in Identical() or String().
    		sig, _ := sel.Type().(*Signature)
    		if sel.Kind() == MethodVal {
    			got := sig.Recv().Type()
    			want := sel.Recv()
    			if !Identical(got, want) {
    				t.Errorf("%s: Recv() = %s, want %s", segment, got, want)
    			}
    		} else if sig != nil && sig.Recv() != nil {
    			t.Errorf("%s: signature has receiver %s", sig, sig.Recv().Type())
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    		// in Identical() or String().
    		sig, _ := sel.Type().(*Signature)
    		if sel.Kind() == MethodVal {
    			got := sig.Recv().Type()
    			want := sel.Recv()
    			if !Identical(got, want) {
    				t.Errorf("%s: Recv() = %s, want %s", syntax, got, want)
    			}
    		} else if sig != nil && sig.Recv() != nil {
    			t.Errorf("%s: signature has receiver %s", sig, sig.Recv().Type())
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - google.golang.org/grpc: v1.58.3 → v1.59.0
    - honnef.co/go/tools: v0.0.1-2020.1.4 → v0.0.1-2019.2.3
    - sigs.k8s.io/knftables: v0.0.14 → v0.0.16
    - sigs.k8s.io/kustomize/api: 6ce0bf3 → v0.17.2
    - sigs.k8s.io/kustomize/cmd/config: v0.11.2 → v0.14.1
    - sigs.k8s.io/kustomize/kustomize/v5: 6ce0bf3 → v5.4.2
    - sigs.k8s.io/kustomize/kyaml: 6ce0bf3 → v0.17.1
    - sigs.k8s.io/yaml: v1.3.0 → v1.4.0
    
    ### Removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "type": "string"
              },
              "kind": {
                "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
    	"status":   "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status",
    	"message":  "A human-readable description of the status of this operation.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. src/math/big/float_test.go

    }
    
    func TestFloatPredicates(t *testing.T) {
    	for _, test := range []struct {
    		x            string
    		sign         int
    		signbit, inf bool
    	}{
    		{x: "-Inf", sign: -1, signbit: true, inf: true},
    		{x: "-1", sign: -1, signbit: true},
    		{x: "-0", signbit: true},
    		{x: "0"},
    		{x: "1", sign: 1},
    		{x: "+Inf", sign: 1, inf: true},
    	} {
    		x := makeFloat(test.x)
    		if got := x.Signbit(); got != test.signbit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  9. src/time/format.go

    	// Format monotonic clock reading as m=±ddd.nnnnnnnnn.
    	if t.wall&hasMonotonic != 0 {
    		m2 := uint64(t.ext)
    		sign := byte('+')
    		if t.ext < 0 {
    			sign = '-'
    			m2 = -m2
    		}
    		m1, m2 := m2/1e9, m2%1e9
    		m0, m1 := m1/1e9, m1%1e9
    		buf := make([]byte, 0, 24)
    		buf = append(buf, " m="...)
    		buf = append(buf, sign)
    		wid := 0
    		if m0 != 0 {
    			buf = appendInt(buf, int(m0), 0)
    			wid = 9
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    		// Switch to negation.
    		case '-':
    			if sign < 0 {
    				break Loop
    			}
    			sign = -1
    			// Invert flags so that | above turn into &^ and vice versa.
    			// We'll invert flags again before using it below.
    			flags = ^flags
    			sawFlag = false
    
    		// End of flags, starting group or not.
    		case ':', ')':
    			if sign < 0 {
    				if !sawFlag {
    					break Loop
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top