Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for prefix (0.63 sec)

  1. src/cmd/go/internal/work/security.go

    	re(`-f(no-)?asynchronous-unwind-tables`),
    	re(`-f(no-)?blocks`),
    	re(`-f(no-)builtin-[a-zA-Z0-9_]*`),
    	re(`-f(no-)?common`),
    	re(`-f(no-)?constant-cfstrings`),
    	re(`-fdebug-prefix-map=([^@]+)=([^@]+)`),
    	re(`-fdiagnostics-show-note-include-stack`),
    	re(`-ffile-prefix-map=([^@]+)=([^@]+)`),
    	re(`-fno-canonical-system-headers`),
    	re(`-f(no-)?eliminate-unused-debug-types`),
    	re(`-f(no-)?exceptions`),
    	re(`-f(no-)?fast-math`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <description>Display name for the plugin.</description>
            </field>
            <field>
              <name>prefix</name>
              <type>String</type>
              <required>true</required>
              <version>1.0.0+</version>
              <description>The plugin invocation prefix (i.e. eclipse for eclipse:eclipse)</description>
            </field>
            <field>
              <name>artifactId</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/test.go

    // It is a Test (say) if there is a character after Test that is not a lower-case letter.
    // We don't want TesticularCancer.
    func isTest(name, prefix string) bool {
    	if !strings.HasPrefix(name, prefix) {
    		return false
    	}
    	if len(name) == len(prefix) { // "Test" is ok
    		return true
    	}
    	rune, _ := utf8.DecodeRuneInString(name[len(prefix):])
    	return !unicode.IsLower(rune)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    <head>.
    
    The meta tag has the form:
    
    	<meta name="go-import" content="import-prefix vcs repo-root">
    
    The import-prefix is the import path corresponding to the repository
    root. It must be a prefix or an exact match of the package being
    fetched with "go get". If it's not an exact match, another http
    request is made at the prefix to verify the <meta> tags match.
    
    The meta tag should appear as early in the file as possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            outputContains("Configuration: CI2 = 2")
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle': environment variables prefixed by 'CI'")
            }
        }
    
        def "build logic can read system properties with prefix"() {
            def configurationCache = newConfigurationCacheFixture()
            buildFile("""
                def ciVars = providers.systemPropertiesPrefixedBy("some.property.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	// when -trimpath is enabled.
    	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		if cfg.BuildTrimpath || p.Goroot {
    			prefixMapFlag := "-fdebug-prefix-map"
    			if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
    				prefixMapFlag = "-ffile-prefix-map"
    			}
    			// Keep in sync with Action.trimpath.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

     */
    package org.apache.maven.cli.transfer;
    
    import org.apache.maven.api.services.MessageBuilder;
    
    /**
     * Formats file size with the associated <a href="https://en.wikipedia.org/wiki/Metric_prefix">SI</a> prefix
     * (GB, MB, kB) and using the patterns <code>#0.0</code> for numbers between 1 and 10
     * and <code>###0</code> for numbers between 10 and 1000+ by default.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    )
    
    const (
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Using spare bit to make leading [E]VEX encoding byte different from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            return if (pathString.contains(JAR_SEPARATOR)) {
                // URLs loaded from JDK point to module names in a JRT protocol format,
                // e.g., "jrt:///path/to/jdk/home!/java.base" (JRT protocol prefix + JDK home path + JAR separator + module name)
                // After protocol erasure, we will see "/path/to/jdk/home!/java.base" as a binary root.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            if (option == null) {
                throw new IllegalStateException("No option is associated to this path type.");
            }
            String prefix = (moduleName == null) ? "" : (moduleName + '=');
            StringJoiner joiner = new StringJoiner(File.pathSeparator, prefix, "");
            joiner.setEmptyValue("");
            for (Path p : paths) {
                joiner.add(p.toString());
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top