Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 207 for Unrecognized (0.42 sec)

  1. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        assertFailsToDecode(base16(), "\n\n", "Unrecognized character: 0xa");
        assertFailsToDecode(base16(), "EFGH", "Unrecognized character: G");
        // Valid base16 strings always have an even length.
        assertFailsToDecode(base16(), "A", "Invalid input length 1");
        assertFailsToDecode(base16(), "ABC");
        // These have a combination of invalid length and unrecognized characters.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  2. pkg/util/iptables/testing/parse.go

    var ipTablesValuePtrType = reflect.TypeOf((*IPTablesValue)(nil))
    
    // ParseRule parses rule. If strict is false, it will parse the recognized
    // parameters and ignore unrecognized ones. If it is true, parsing will fail if there are
    // unrecognized parameters.
    func ParseRule(rule string, strict bool) (*Rule, error) {
    	parsed := &Rule{Raw: rule}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. src/net/conf.go

    				}
    				// Unrecognized.
    				return fallbackOrder, dnsConf
    			}
    			return hostLookupDNS, dnsConf
    		case "file":
    			if len(lookup) == 2 {
    				if lookup[1] == "bind" {
    					return hostLookupFilesDNS, dnsConf
    				}
    				// Unrecognized.
    				return fallbackOrder, dnsConf
    			}
    			return hostLookupFiles, dnsConf
    		default:
    			// Unrecognized.
    			return fallbackOrder, dnsConf
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    					}
    				})
    			default:
    				// reject all unrecognized simple values
    				each.assertOnError = func(t *testing.T, e error) {
    					// TODO: Once this can pass, make the assertion stronger.
    					if e == nil {
    						t.Error("expected non-nil error")
    					}
    				}
    				each.fixme = "unrecognized simple values should be rejected"
    			}
    			generated = append(generated, each)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    			rst.writeString("::")
    		}
    		rst.writeByte('<')
    		rst.genericArgs()
    		rst.writeByte('>')
    		rst.checkChar('E')
    	case 'B':
    		rst.backref(func() { rst.path(needsSeparator) })
    	default:
    		rst.fail("unrecognized letter in path")
    	}
    }
    
    // implPath parses:
    //
    //	<impl-path> = [<disambiguator>] <path>
    func (rst *rustState) implPath() {
    	// This path is not part of the demangled string.
    	hold := rst.skip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    				Binding:    binding,
    			})
    		default:
    			deniedDecisions = append(deniedDecisions, policyDecisionWithMetadata{
    				PolicyDecision: PolicyDecision{
    					Action:  ActionDeny,
    					Message: fmt.Errorf("unrecognized failure policy: '%v'", policy).Error(),
    				},
    				Definition: definition,
    				Binding:    binding,
    			})
    		}
    	}
    
    	authz := newCachingAuthorizer(c.authz)
    
    	for _, hook := range hooks {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/asm.go

    	if cond != "" {
    		switch p.arch.Family {
    		case sys.ARM:
    			if !arch.ARMConditionCodes(prog, cond) {
    				p.errorf("unrecognized condition code .%q", cond)
    				return
    			}
    
    		case sys.ARM64:
    			if !arch.ARM64Suffix(prog, cond) {
    				p.errorf("unrecognized suffix .%q", cond)
    				return
    			}
    
    		case sys.AMD64, sys.I386:
    			if err := x86.ParseSuffix(prog, cond); err != nil {
    				p.errorf("%v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	}
    
    	// Binary is there, so try to parse version
    	verCmd := exec.Command(iptablesSaveBin, "--version")
    	// shockingly, `iptables-save` returns 0 if you pass it an unrecognized/bad option, so
    	// `os/exec` will return a *nil* error, even if the command fails. So, we must slurp stderr, and check it to
    	// see if the command *actually* failed due to not recognizing the version flag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// a NegotiateError will be returned. The current client implementations consider params to be
    	// optional modifiers to the contentType and will ignore unrecognized parameters.
    	Encoder(contentType string, params map[string]string) (Encoder, error)
    	// Decoder returns the appropriate decoder for the provided contentType (e.g. application/json)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top