Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 906 for invalide (0.27 sec)

  1. pkg/proxy/util/utils_test.go

    type cidrValidator struct {
    	cidr *net.IPNet
    }
    
    func (v *cidrValidator) isValid(ip net.IP) bool {
    	return v.cidr.Contains(ip)
    }
    func newCidrValidator(cidr string) func(ip net.IP) bool {
    	_, n, err := netutils.ParseCIDRSloppy(cidr)
    	if err != nil {
    		panic("mustParseIPNet")
    	}
    	obj := cidrValidator{n}
    	return obj.isValid
    }
    
    func TestAddressSet(t *testing.T) {
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/fuzz/FuzzReader/invalid-proc-state

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 221 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/invalid-configs/invalid-typo.yaml

    Monis Khan <******@****.***> 1715877522 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 941 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            // When true, the project is definitely invalid
            // When false, validity is not known
            private
            var invalid = false
    
            private
            val consumedBy = mutableSetOf<ProjectInvalidationState>()
    
            val isInvalid: Boolean
                get() = invalid
    
            fun consumedBy(consumer: ProjectInvalidationState) {
                if (invalid) {
                    consumer.invalidate()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    		check.expr(nil, &v, e)
    		if x.mode == invalid || v.mode == invalid {
    			continue L
    		}
    		check.convertUntyped(&v, x.typ)
    		if v.mode == invalid {
    			continue L
    		}
    		// Order matters: By comparing v against x, error positions are at the case values.
    		res := v // keep original v unchanged
    		check.comparison(&res, x, token.EQL, true)
    		if res.mode == invalid {
    			continue L
    		}
    		if v.mode != constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		for _, valid := range valids {
    			for _, invalid := range gvksToInvalidFiles[gvk] {
    				validXInvalidPairs = append(validXInvalidPairs, pair{old: valid, new: invalid})
    			}
    		}
    	}
    
    	// For each invalid file, add pair with every other invalid file of the same
    	// GVK including itself
    	for gvk, invalids := range gvksToInvalidFiles {
    		for _, invalid := range invalids {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/version_test.go

    		},
    		{
    			name:          "invalid: client version is empty",
    			remoteVersion: "v1.12.1",
    			clientVersion: "",
    			expectedError: true,
    		},
    		{
    			name:          "invalid: error parsing the remote version",
    			remoteVersion: "invalid-version",
    			clientVersion: "v1.12.0",
    			expectedError: true,
    		},
    		{
    			name:          "invalid: error parsing the client version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top