Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,303 for invalide (0.2 sec)

  1. src/go/types/expr.go

    		if u == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from %s (no core type)", x)
    			x.mode = invalid
    			return
    		}
    		ch, _ := u.(*Chan)
    		if ch == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from non-channel %s", x)
    			x.mode = invalid
    			return
    		}
    		if ch.dir == SendOnly {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from send-only channel %s", x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/go/types/builtins.go

    				check.convertUntyped(y, Typ[Float64])
    				// x and y should be invalid now, but be conservative
    				// and check below
    			}
    		}
    		if x.mode == invalid || y.mode == invalid {
    			return
    		}
    
    		// both argument types must be identical
    		if !Identical(x.typ, y.typ) {
    			check.errorf(x, InvalidComplex, invalidOp+"%v (mismatched types %s and %s)", call, x.typ, y.typ)
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/invalid-utf8-secret-key.asc

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/invalid-utf8-public-key.asc

    Tom Tresansky <******@****.***> 1696954098 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. security/pkg/k8s/chiron/test-data/example-invalid-ca-cert.pem

    lei-tang <******@****.***> 1566091411 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Aug 18 01:23:31 UTC 2019
    - 1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode_string.go

    // Code generated by "stringer -type=ErrorCode"; DO NOT EDIT.
    
    package typesinternal
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[InvalidSyntaxTree - -1]
    	_ = x[Test-1]
    	_ = x[BlankPkgName-2]
    	_ = x[MismatchedPkgName-3]
    	_ = x[InvalidPkgUse-4]
    	_ = x[BadImportPath-5]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pkg/registry/apps/statefulset/strategy_test.go

    		}
    		invalidPs := ps
    		invalidPs.Spec.PersistentVolumeClaimRetentionPolicy.WhenDeleted = apps.PersistentVolumeClaimRetentionPolicyType("invalid type")
    		Strategy.PrepareForUpdate(ctx, validPs, invalidPs)
    		errs = Strategy.ValidateUpdate(ctx, validPs, ps)
    		if len(errs) != 0 {
    			t.Errorf("invalid updates to PersistentVolumeClaimRetentionPolicyType should be allowed: %v", errs)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/validation/invalid-coordinate-ids-pom.xml

    Hervé Boutemy <******@****.***> 1614324322 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 26 17:05:25 UTC 2021
    - 943 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/conflicting-gateways-invalid-port.yaml

    Nicole LiHui <******@****.***> 1682232835 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 06:53:55 UTC 2023
    - 337 bytes
    - Viewed (0)
  10. pkg/kubelet/kubeletconfig/util/files/files.go

    	for name := range files {
    		// invalidate empty names
    		if name == "" {
    			return "", fmt.Errorf("invalid file key: must not be empty: %q", name)
    		}
    		// invalidate: foo/bar and /bar
    		if name != filepath.Base(name) {
    			return "", fmt.Errorf("invalid file key %q, only base names are allowed", name)
    		}
    		// invalidate `.` and `..`
    		if name == "." || name == ".." {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 01:02:46 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top