Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for suffixMsg (0.11 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

            ReservedAlias shouldNotContain(String name) {
                this.alias(name)
                this
            }
    
            ReservedAlias reservedAliasPrefix(String... suffixes) {
                this.solution = "Use a different alias which prefix is not equal to ${oxfordListOf(suffixes as List, 'or')}"
                this
            }
    
            ReservedAlias reservedAliases(String... aliases) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  2. src/net/dnsconfig_unix_test.go

    		}
    		for _, fqdn := range conf.nameList(longName) {
    			if len(fqdn) > 254 {
    				t.Errorf("got %d; want less than or equal to 254", len(fqdn))
    			}
    		}
    
    		// Now test a name that's too long for suffixing.
    		unsuffixable := "a." + longName[1:]
    		unsuffixableResults := conf.nameList(unsuffixable)
    		if len(unsuffixableResults) != 1 {
    			t.Errorf("suffixed names %v; want []", unsuffixableResults[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)
  3. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	SkipHexDigits int
    
    	// Add is a list of suffixes to add to every trial, because they
    	// contain changes that are necessary for a group we are assembling.
    	Add []string
    
    	// Skip is a list of suffixes that uniquely identify changes to exclude from every trial,
    	// because they have already been used in failing change sets.
    	// Suffixes later in the list may only be unique after removing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/SampleIncludeProcessor.java

        private static final Pattern GENERAL_SAMPLE_TAG = Pattern.compile(".*(tag|end)::(\\S+)\\[]\\s*");
    
        // Map file suffixes to syntax highlighting where they differ
        private static Map<String, String> initializeSyntaxMap() {
            Map<String, String> map = new HashMap<>();
            map.put("gradle", "groovy");
            map.put("kt", "kotlin");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 10:45:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/html/template/js.go

    		// Handle "42."
    		if n != 1 && '0' <= s[n-2] && s[n-2] <= '9' {
    			return jsCtxDivOp
    		}
    		return jsCtxRegexp
    	// Suffixes for all punctuators from section 7.7 of the language spec
    	// that only end binary operators not handled above.
    	case ',', '<', '>', '=', '*', '%', '&', '|', '^', '?':
    		return jsCtxRegexp
    	// Suffixes for all punctuators from section 7.7 of the language spec
    	// that are prefix operators not handled above.
    	case '!', '~':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/net/dnsclient_unix.go

    			break
    		}
    	}
    	if err == nil {
    		return p, server, nil
    	}
    	if err, ok := err.(*DNSError); ok {
    		// Show original name passed to lookup, not suffixed one.
    		// In general we might have tried many suffixes; showing
    		// just one is misleading. See also golang.org/issue/6324.
    		err.Name = name
    	}
    	return dnsmessage.Parser{}, "", err
    }
    
    // avoidDNS reports whether this is a hostname for which we should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. pkg/bootstrap/config_test.go

    			templateParams, _ := option.NewTemplateParams(options...)
    			inclusionSuffixes := templateParams["inclusionSuffix"]
    			if !reflect.DeepEqual(inclusionSuffixes, tc.wantInclusionSuffixes) {
    				tt.Errorf("unexpected inclusion suffixes. want: %v, got: %v", tc.wantInclusionSuffixes, inclusionSuffixes)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/amd64error.s

    	// TODO(quasilyte): improve error message (#21860).
    	V4FMADDPS (AX), [AX-Z3], K1, Z7  // ERROR "invalid instruction"
    	V4FMADDPS (AX), [Z0-AX], K1, Z7  // ERROR "invalid instruction"
    	// Usage of suffixes for non-EVEX instructions.
    	ADCB.Z $7, AL                    // ERROR "invalid instruction"
    	ADCB.RU_SAE $7, AL               // ERROR "invalid instruction"
    	ADCB.RU_SAE.Z $7, AL             // ERROR "invalid instruction"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais2.go

    			map_64(sa, numLMS)
    			recurse_64(sa, tmp, numLMS, maxID)
    			unmap_8_64(text, sa, numLMS)
    		} else {
    			// If maxID == numLMS, then each LMS-substring
    			// is unique, so the relative ordering of two LMS-suffixes
    			// is determined by just the leading LMS-substring.
    			// That is, the LMS-suffix sort order matches the
    			// (simpler) LMS-substring sort order.
    			// Copy the original LMS-substring order into the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

     * such as {@code project.build.sourceDirectory}.
     * <p>
     * In addition to usual getters using {@code getXxx} or {@code isXxx} suffixes, accessors
     * using {@code asXxx} or {@code toXxx} prefixes are also supported.
     */
    public class ReflectionValueExtractor {
        private static final Object[] OBJECT_ARGS = new Object[0];
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top