Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 549 for Unrecognized (0.23 sec)

  1. src/encoding/json/example_text_marshaling_test.go

    	for _, size := range inventory {
    		counts[size] += 1
    	}
    
    	fmt.Printf("Inventory Counts:\n* Small:        %d\n* Large:        %d\n* Unrecognized: %d\n",
    		counts[Small], counts[Large], counts[Unrecognized])
    
    	// Output:
    	// Inventory Counts:
    	// * Small:        3
    	// * Large:        2
    	// * Unrecognized: 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 14:18:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  2. src/encoding/xml/example_text_marshaling_test.go

    		counts[size] += 1
    	}
    
    	fmt.Printf("Inventory Counts:\n* Small:        %d\n* Large:        %d\n* Unrecognized: %d\n",
    		counts[Small], counts[Large], counts[Unrecognized])
    
    	// Output:
    	// Inventory Counts:
    	// * Small:        3
    	// * Large:        2
    	// * Unrecognized: 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 14:18:06 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. pkg/test/csrctrl/authority/policies.go

    	var keyUsage x509.KeyUsage
    	var unrecognized []capi.KeyUsage
    	extKeyUsages := make(map[x509.ExtKeyUsage]struct{})
    	for _, usage := range usages {
    		if val, ok := keyUsageDict[usage]; ok {
    			keyUsage |= val
    		} else if val, ok := extKeyUsageDict[usage]; ok {
    			extKeyUsages[val] = struct{}{}
    		} else {
    			unrecognized = append(unrecognized, usage)
    		}
    	}
    
    	var sorted sortedExtKeyUsage
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/certificates/authority/policies.go

    	var keyUsage x509.KeyUsage
    	var unrecognized []capi.KeyUsage
    	extKeyUsages := make(map[x509.ExtKeyUsage]struct{})
    	for _, usage := range usages {
    		if val, ok := keyUsageDict[usage]; ok {
    			keyUsage |= val
    		} else if val, ok := extKeyUsageDict[usage]; ok {
    			extKeyUsages[val] = struct{}{}
    		} else {
    			unrecognized = append(unrecognized, usage)
    		}
    	}
    
    	var sorted sortedExtKeyUsage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/line_test.go

    		{"VADDPD.SAE.SAE X0, X1, X2", `duplicate suffix "SAE"`},
    		{"VADDPD.RZ_SAE.SAE X0, X1, X2", `bad suffix combination`},
    
    		// BSWAP on 16-bit registers is undefined. See #29167,
    		{"BSWAPW DX", `unrecognized instruction`},
    		{"BSWAPW R11", `unrecognized instruction`},
    	})
    }
    
    func testBadInstParser(t *testing.T, goarch string, tests []badInstTest) {
    	for i, test := range tests {
    		arch, ctxt := setArch(goarch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/text/template/option.go

    }
    
    // Option sets options for the template. Options are described by
    // strings, either a simple string or "key=value". There can be at
    // most one equals sign in an option string. If the option string
    // is unrecognized or otherwise invalid, Option panics.
    //
    // Known options:
    //
    // missingkey: Control the behavior during execution if a map is
    // indexed with a key that is not present in the map.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FingerprintMapSerializer.java

                    return IgnoredPathFileSystemLocationFingerprint.create(fileType, contentHash);
                default:
                    throw new RuntimeException("Unable to read serialized file fingerprint. Unrecognized value found in the data stream.");
            }
        }
    
        private HashCode readContentHash(FileType fileType, Decoder decoder) throws IOException {
            switch (fileType) {
                case Directory:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate.go

    	UseServerVersion string
    
    	// export is true if the representation requested should exclude fields the server
    	// has set
    	Export bool
    
    	// unrecognized is a list of all unrecognized keys
    	Unrecognized []string
    
    	// the accepted media type from the client
    	Accepted runtime.SerializerInfo
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/conds.go

    				return false, fmt.Errorf("unrecognized GOOS %q", suffix)
    			}
    			return false, nil
    		})
    
    	conds["GOARCH"] = PrefixCondition(
    		"runtime.GOARCH == <suffix>",
    		func(_ *State, suffix string) (bool, error) {
    			if suffix == runtime.GOARCH {
    				return true, nil
    			}
    			if _, ok := imports.KnownArch[suffix]; !ok {
    				return false, fmt.Errorf("unrecognized GOOS %q", suffix)
    			}
    			return false, nil
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top