Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for ignoreMe (0.17 sec)

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

    		}
    		return Default(x.typ), nil, 0 // default type for nil is nil
    	default:
    		return nil, nil, InvalidUntypedConversion
    	}
    	return target, nil, 0
    }
    
    // If switchCase is true, the operator op is ignored.
    func (check *Checker) comparison(x, y *operand, op syntax.Operator, switchCase bool) {
    	// Avoid spurious errors if any of the operands has an invalid type (go.dev/issue/54405).
    	if !isValid(x.typ) || !isValid(y.typ) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidFileHeaderInfo: {
    		Code:           "InvalidFileHeaderInfo",
    		Description:    "The FileHeaderInfo is invalid. Only NONE, USE, and IGNORE are supported.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidJSONType: {
    		Code:           "InvalidJsonType",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  3. src/cmd/go/internal/modget/get.go

    Now, 'go get' is dedicated to adjusting dependencies in go.mod. 'go install'
    may be used to build and install commands instead. When a version is specified,
    'go install' runs in module-aware mode and ignores the go.mod file in the
    current directory. For example:
    
    	go install example.com/pkg@v1.2.3
    	go install example.com/pkg@latest
    
    See 'go help install' or https://golang.org/ref/mod#go-install for details.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		Name:      "ratings-1",
    		Namespace: "bookinfo-ratings",
    		Endpoint: &model.IstioEndpoint{
    			Labels:       labels.Instance{"app": "ratings"},
    			Address:      "2.2.2.2",
    			EndpointPort: 8081, // should be ignored since it doesn't define PortMap
    		},
    	}
    
    	wiRatings2 := &model.WorkloadInstance{
    		Name:      "ratings-2",
    		Namespace: "bookinfo-ratings",
    		Endpoint: &model.IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    			nonFreeVersions--
    			// remember the latest free version; will return this FileInfo if no non-free version remain
    			var freeVersion xlMetaV2Version
    			if inclFreeVers && !freeFound {
    				// ignore unmarshalling errors, will return errFileNotFound in that case
    				if _, err := freeVersion.unmarshalV(x.metaV, ver.meta); err == nil {
    					if freeFi, err = freeVersion.ToFileInfo(volume, path, allParts); err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    // which is positioned at (tline, tcol) (only needed for error messages).
    func (p *parser) updateBase(pos Pos, tline, tcol uint, text string) {
    	i, n, ok := trailingDigits(text)
    	if i == 0 {
    		return // ignore (not a line directive)
    	}
    	// i > 0
    
    	if !ok {
    		// text has a suffix :xxx but xxx is not a number
    		p.errorAt(p.posAt(tline, tcol+i), "invalid line number: "+text[i:])
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // include a concluding line comment that begins with "Output:" and is compared with
    // the standard output of the function when the tests are run. (The comparison
    // ignores leading and trailing space.) These are examples of an example:
    //
    //	func ExampleHello() {
    //	    fmt.Println("hello")
    //	    // Output: hello
    //	}
    //
    //	func ExampleSalutations() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * properties on the new file tree.  Example:</p>
         *
         * <pre class='autoTested'>
         * def myTree = fileTree(dir:'src', excludes:['**&#47;ignore/**', '**&#47;.data/**'])
         *
         * task copy(type: Copy) {
         *     from myTree
         * }
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top