Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,303 for invalide (0.21 sec)

  1. src/go/types/errors.go

    		check.firstErr = e
    	}
    
    	f := check.conf.Error
    	if f == nil {
    		panic(bailout{}) // record first error and exit
    	}
    	f(e)
    }
    
    const (
    	invalidArg = "invalid argument: "
    	invalidOp  = "invalid operation: "
    )
    
    // The positioner interface is used to extract the position of type-checker errors.
    type positioner interface {
    	Pos() token.Pos
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    // describing the nature of the error (e.g. "invalid", "unused", "misplaced"),
    // and end with a noun identifying the relevant language object. For example,
    // "DuplicateDecl" or "InvalidSliceExpr". For brevity, naming follows the
    // convention that "bad" implies a problem with syntax, and "invalid" implies a
    // problem with types.
    
    const (
    	// InvalidSyntaxTree occurs if an invalid syntax tree is provided
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. pkg/kubelet/config/http_test.go

    			pod:  &v1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: ""}},
    		},
    		{
    			desc: "Invalid version",
    			pod:  &v1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: "v1betta2"}},
    		},
    		{
    			desc: "Invalid volume name",
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{APIVersion: "v1"},
    				Spec: v1.PodSpec{
    					Volumes: []v1.Volume{{Name: "_INVALID_"}},
    				},
    			},
    		},
    		{
    			desc: "Duplicate volume names",
    			pod: &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/generate_invalid.txt

    // Go generate should process this file with GOPACKAGE=c
    
    //go:generate echo Success $GOPACKAGE
    package c
    // Invalid package clause, should be ignored:
    package cinvalid
    //go:generate echo Success $GOPACKAGE
    
    -- inconsistent/d.go --
    // Go file with invalid package name.
    // Go generate should ignore this file.
    
    package +d+
    //go:generate echo Fail $GOPACKAGE
    
    -- syntax/a.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. internal/config/config.go

    	kvsMap := c[subSys]
    	for tgt, kvs := range kvsMap {
    		invalidKV := KVS{}
    		for _, kv := range kvs {
    			if !validKeysSet.Contains(kv.Key) {
    				invalidKV = append(invalidKV, kv)
    			}
    		}
    		if len(invalidKV) > 0 {
    			return Errorf(
    				"found invalid keys (%s) for '%s:%s' sub-system, use 'mc admin config reset myminio %s:%s' to fix invalid keys",
    				invalidKV.String(), subSys, tgt, subSys, tgt)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  6. docs/iam/policies/deny-objects-with-invalid-sse-kms-key-id.json

    Shubhendu <******@****.***> 1715701387 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 15:43:07 UTC 2024
    - 439 bytes
    - Viewed (0)
  7. test/fixedbugs/issue9370.go

    	_ = e == f // ERROR "invalid operation.*not defined|invalid operation"
    	_ = e != f // ERROR "invalid operation.*not defined|invalid operation"
    	_ = e >= f // ERROR "invalid operation.*not defined|invalid comparison"
    	_ = f == e // ERROR "invalid operation.*not defined|invalid operation"
    	_ = f != e // ERROR "invalid operation.*not defined|invalid operation"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 5K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/validation/validation_test.go

    	}, {
    		name: "invalid TopologyManagerScope",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.TopologyManagerScope = "invalid-scope"
    			return conf
    		},
    		errMsg: "invalid configuration: topologyManagerScope (--topology-manager-scope) \"invalid-scope\" must be one of: \"container\", or \"pod\"",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/amd64error.s

    	MOVQ CR8, (AX)                  // ERROR "invalid instruction"
    	MOVQ (AX), CR0                  // ERROR "invalid instruction"
    	MOVQ (AX), CR2                  // ERROR "invalid instruction"
    	MOVQ (AX), CR3                  // ERROR "invalid instruction"
    	MOVQ (AX), CR4                  // ERROR "invalid instruction"
    	MOVQ (AX), CR8                  // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. test/convert1.go

    	_ = string(si) // ERROR "cannot convert.* string|invalid type conversion"
    	_ = []byte(si) // ERROR "cannot convert.*\[\]byte|invalid type conversion"
    	_ = []rune(si) // ERROR "cannot convert.*\[\]rune|invalid type conversion"
    	_ = []int64(si)
    	_ = Tstring(si) // ERROR "cannot convert.*Tstring|invalid type conversion"
    	_ = Tbyte(si)   // ERROR "cannot convert.*Tbyte|invalid type conversion"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.4K bytes
    - Viewed (0)
Back to top