Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for unknownSet (0.2 sec)

  1. src/cmd/internal/obj/x86/evex.go

    			}
    		case "BCST":
    			hasBcst = true
    		case "SAE", "RN_SAE", "RZ_SAE", "RD_SAE", "RU_SAE":
    			hasRoundSae = true
    		default:
    			if !unknownSet[suffix] {
    				msg = append(msg, fmt.Sprintf("unknown suffix %q", suffix))
    			}
    			unknownSet[suffix] = true
    		}
    
    		if suffixSet[suffix] {
    			msg = append(msg, fmt.Sprintf("duplicate suffix %q", suffix))
    		}
    		suffixSet[suffix] = true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                    if (StringUtil.isNotBlank(line)) {
                        final int pos = line.indexOf('=');
                        if (pos == 0) {
                            paramMap.put("unknown." + (unknownKey + 1), line.substring(pos + 1).trim());
                            unknownKey++;
                        } else if (pos > 0) {
                            final String key = line.substring(0, pos).trim();
                            if (pos < line.length()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. src/net/dnsconfig_unix.go

    					conf.noReload = true
    				default:
    					conf.unknownOpt = true
    				}
    			}
    
    		case "lookup":
    			// OpenBSD option:
    			// https://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/resolv.conf.5
    			// "the legal space-separated values are: bind, file, yp"
    			conf.lookup = f[1:]
    
    		default:
    			conf.unknownOpt = true
    		}
    	}
    	if len(conf.servers) == 0 {
    		conf.servers = defaultNS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/ExcludeRuleNotationConverterTest.groovy

            parser.parseNotation(WrapUtil.toMap(ExcludeRule.GROUP_KEY, "aGroup"));
            parser.parseNotation(WrapUtil.toMap(ExcludeRule.MODULE_KEY, "aModule"));
    
            when:
            parser.parseNotation(WrapUtil.toMap("unknownKey", "someValue"))
    
            then:
            thrown(InvalidUserDataException)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  5. src/net/dnsconfig.go

    	timeout       time.Duration // wait before giving up on a query, including retries
    	attempts      int           // lost packets before giving up on server
    	rotate        bool          // round robin among servers
    	unknownOpt    bool          // anything unknown was encountered
    	lookup        []string      // OpenBSD top-level database "lookup" order
    	err           error         // any error that occurs during open of resolv.conf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

                assertTrue(robotsTxt.allows("/foo/bar/index.html", userAgent));
                assertEquals(1, robotsTxt.getCrawlDelay(userAgent));
            }
    
            for (String userAgent : new String[] { "UnknownBot", "", " ", null }) {
                assertTrue(robotsTxt.allows("/aaa", userAgent));
                assertFalse(robotsTxt.allows("/private/", userAgent));
                assertFalse(robotsTxt.allows("/private/index.html", userAgent));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/net/dnsconfig_unix_test.go

    			search:     []string{"localdomain."},
    			ndots:      5,
    			timeout:    10 * time.Second,
    			attempts:   3,
    			rotate:     true,
    			unknownOpt: true, // the "options attempts 3" line
    		},
    	},
    	{
    		name: "testdata/domain-resolv.conf",
    		want: &dnsConfig{
    			servers:  []string{"8.8.8.8:53"},
    			search:   []string{"localdomain."},
    			ndots:    1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    == Invalid TOML definition
    
    This error indicates that you have a syntax or grammar error in your TOML version catalog file.
    
    This can happen if you use wrong keys, for example:
    
    ```toml
    some-alias = { unknownKey = "foo" }
    ```
    
    or that you forgot about some elements:
    
    ```toml
    # missing the "group"
    some-alias = { name="my-lib", version="1.0" }
    ```
    
    [[unsupported_format_version]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/net/conf_test.go

    				{"somehostname", "myhostname", hostLookupDNSFiles},
    			},
    		},
    		{
    			name:      "resolv.conf-unknown",
    			c:         &conf{},
    			resolv:    &dnsConfig{servers: defaultNS, ndots: 1, timeout: 5, attempts: 2, unknownOpt: true},
    			nss:       nssStr(t, "foo: bar"),
    			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupCgo}},
    		},
    		// Issue 24393: make sure "Resolver.PreferGo = true" acts like netgo.
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      if (it == per_resource_access_info_.end()) return false;
      auto access_info = it->getSecond();
    
      auto unknown_it = per_resource_access_info_.find(kUnknownResourceId);
      if (unknown_it == per_resource_access_info_.end()) {
        return true;
      }
      auto unknown_access_info = unknown_it->getSecond();
    
      bool no_unknown_read = unknown_access_info.reads_since_last_write.empty();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top