Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for invalidSep (0.11 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModuleTest.groovy

            def map = [invalidKey: "value", group: "com.example", name: "example", version: "1.0"]
            def dependencies = Mock(Dependencies)
            when:
            DependenciesExtensionModule.module(dependencies, map)
            then:
            def e = thrown(IllegalArgumentException)
            e.message == "The map must not contain the following keys: [invalidKey]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 23:56:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_fr.properties

    constraints.LuhnCheck.message               = Le chiffre de contrôle pour ${value} est invalide, la somme de contrôle Luhn Modulo 10 a échoué.
    constraints.Mod10Check.message              = Le chiffre de contrôle pour ${value} est invalide, la somme de contrôle Modulo 10 a échoué.
    constraints.Mod11Check.message              = Le chiffre de contrôle pour ${value} est invalide, la somme de contrôle Modulo 11 a échoué.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. pilot/pkg/util/network/ip_test.go

    			addrs:    []string{"1111:2222::1", "::1", "127.0.0.1", "2.2.2.2", "2222:3333::1"},
    			expected: false,
    		},
    		{
    			name:     "test for invalid ip address",
    			addrs:    []string{"invalidip"},
    			expected: true,
    		},
    	}
    	for _, tt := range tests {
    		result := AllIPv6(tt.addrs)
    		if result != tt.expected {
    			t.Errorf("Test %s failed, expected: %t got: %t", tt.name, tt.expected, result)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = value
    		x.typ = &Pointer{base: x.typ}
    		return
    
    	case token.ARROW:
    		u := coreType(x.typ)
    		if u == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from %s (no core type)", x)
    			x.mode = invalid
    			return
    		}
    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. cmd/generic-handlers.go

    				tc.ResponseRecorder.LogErrBody = true
    			}
    
    			defer logger.AuditLog(r.Context(), w, r, mustGetClaimsFromToken(r))
    			invalidReq := errorCodes.ToAPIErr(ErrInvalidRequest)
    			invalidReq.Description = fmt.Sprintf("%s (%s)", invalidReq.Description, err)
    			writeErrorResponse(r.Context(), w, invalidReq, r.URL)
    			atomic.AddUint64(&globalHTTPStats.rejectedRequestsInvalid, 1)
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	expectInvalidKey("Create", store.Create(ctx, invalidKey, nil, nil, 0))
    	expectInvalidKey("Delete", store.Delete(ctx, invalidKey, nil, nil, nil, nil))
    	_, watchErr := store.Watch(ctx, invalidKey, storage.ListOptions{})
    	expectInvalidKey("Watch", watchErr)
    	expectInvalidKey("Get", store.Get(ctx, invalidKey, storage.GetOptions{}, nil))
    	expectInvalidKey("GetList", store.GetList(ctx, invalidKey, storage.ListOptions{}, nil))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/index.go

    	case nil:
    		check.errorf(x, NonSliceableOperand, invalidOp+"cannot slice %s: %s has no core type", x, x.typ)
    		x.mode = invalid
    		return
    
    	case *Basic:
    		if isString(u) {
    			if e.Full {
    				at := e.Index[2]
    				if at == nil {
    					at = e // e.Index[2] should be present but be careful
    				}
    				check.error(at, InvalidSliceExpr, invalidOp+"3-index slice of string")
    				x.mode = invalid
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    			check.errorf(x, UnaddressableOperand, invalidOp+"cannot take address of %s", x)
    			x.mode = invalid
    			return
    		}
    		x.mode = value
    		x.typ = &Pointer{base: x.typ}
    		return
    
    	case syntax.Recv:
    		u := coreType(x.typ)
    		if u == nil {
    			check.errorf(x, InvalidReceive, invalidOp+"cannot receive from %s (no core type)", x)
    			x.mode = invalid
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. pkg/registry/core/configmap/strategy_test.go

    	newCfg := &api.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "valid-config-data-2",
    			Namespace:       metav1.NamespaceDefault,
    			ResourceVersion: "4",
    		},
    		Data: map[string]string{
    			"invalidKey": "updatedValue",
    		},
    	}
    
    	Strategy.PrepareForUpdate(ctx, newCfg, cfg)
    
    	errs = Strategy.ValidateUpdate(ctx, newCfg, cfg)
    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    			ExpectedMap: internalAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				RemoteAddr: publicIP,
    			},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				RemoteAddr: "invalidIP",
    			},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    	}
    
    	_, ipRange, _ := netutils.ParseCIDRSloppy("10.0.0.0/24")
    	discoveryAddresses := DefaultAddresses{DefaultAddress: "ExternalAddress"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top