Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for suffixMsg (0.24 sec)

  1. src/cmd/internal/obj/arm64/doc.go

    Package arm64 implements an ARM64 assembler. Go assembly syntax is different from GNU ARM64
    syntax, but we can still follow the general rules to map between them.
    
    # Instructions mnemonics mapping rules
    
    1. Most instructions use width suffixes of instruction names to indicate operand width rather than
    using different register names.
    
    Examples:
    
    	ADC R24, R14, R12          <=>     adc x12, x14, x24
    	ADDW R26->24, R21, R15     <=>     add w15, w21, w26, asr #24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/internal/obj/util.go

    		}
    	}
    }
    
    func offConv(off int64) string {
    	if off == 0 {
    		return ""
    	}
    	return fmt.Sprintf("%+d", off)
    }
    
    // opSuffixSet is like regListSet, but for opcode suffixes.
    //
    // Unlike some other similar structures, uint8 space is not
    // divided by its own values set (because there are only 256 of them).
    // Instead, every arch may interpret/format all 8 bits as they like,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

    import okhttp3.internal.and
    import okhttp3.internal.platform.Platform
    import okio.FileSystem
    import okio.GzipSource
    import okio.Path
    import okio.Path.Companion.toPath
    import okio.buffer
    
    /**
     * A database of public suffixes provided by [publicsuffix.org][publicsuffix_org].
     *
     * [publicsuffix_org]: https://publicsuffix.org/
     */
    class PublicSuffixDatabase internal constructor(
      val path: Path = PUBLIC_SUFFIX_RESOURCE,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top