Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for predefined (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ====
    
    You can specify multiple sources to tell Gradle to keep looking if a file was not found.
    In that case, the order of checking for sources is predefined.
    
    The following metadata sources are supported:
    
    .Supported metadata sources
    [%header%autowidth,compact]
    |===
    | Metadata source | Description | Order | Maven | Ivy / flat dir
    
    | `gradleMetadata()`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/rulegen.go

    //                   extra ignored args that need not appear in the replacement
    
    // extra conditions is just a chunk of Go that evaluates to a boolean. It may use
    // variables declared in the matching tsexpr. The variable "v" is predefined to be
    // the value matched by the entire rule.
    
    // If multiple rules match, the first one in file order is selected.
    
    var (
    	genLog  = flag.Bool("log", false, "generate code that logs; for debugging only")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  3. doc/asm.html

    to avoid ambiguity, division or right shift where the right operand's
    high bit is set is rejected.
    </p>
    
    <h3 id="symbols">Symbols</h3>
    
    <p>
    Some symbols, such as <code>R1</code> or <code>LR</code>,
    are predefined and refer to registers.
    The exact set depends on the architecture.
    </p>
    
    <p>
    There are four predeclared symbols that refer to pseudo-registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  4. src/cmd/go/internal/vcs/vcs.go

    	// Leave out the '--' separator in the ls-remote command: git 2.7.4 does not
    	// support such a separator for that command, and this use should be safe
    	// without it because the {scheme} value comes from the predefined list above.
    	// See golang.org/issue/33836.
    	PingCmd: "ls-remote {scheme}://{repo}",
    
    	RemoteRepo: gitRemoteRepo,
    	Status:     gitStatus,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    there are restrictions on passing pointers between Go and C.
    
    In this section the term Go pointer means a pointer to memory
    allocated by Go (such as by using the & operator or calling the
    predefined new function) and the term C pointer means a pointer to
    memory allocated by C (such as by a call to C.malloc). Whether a
    pointer is a Go pointer or a C pointer is a dynamic property
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/lex/input.go

    		includes:        append([]string{filepath.Dir(name)}, flags.I...),
    		beginningOfLine: true,
    		macros:          predefine(flags.D),
    	}
    }
    
    // predefine installs the macros set by the -D flag on the command line.
    func predefine(defines flags.MultiFlag) map[string]*Macro {
    	macros := make(map[string]*Macro)
    	for _, name := range defines {
    		value := "1"
    		i := strings.IndexRune(name, '=')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. docs/fr/docs/tutorial/path-params.md

    ## Valeurs prédéfinies
    
    Si vous avez une *fonction de chemin* qui reçoit un *paramètre de chemin*, mais que vous voulez que les valeurs possibles des paramètres soient prédéfinies, vous pouvez utiliser les <abbr title="Enumeration">`Enum`</abbr> de Python.
    
    ### Création d'un `Enum`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/flag/flag_test.go

    		flagSetName string
    		errorMsg    string
    	}{
    		{
    			flagSetName: "",
    			errorMsg:    "flag redefined: foo",
    		},
    		{
    			flagSetName: "fs",
    			errorMsg:    "fs flag redefined: foo",
    		},
    	}
    
    	for _, test := range tests {
    		testName := fmt.Sprintf("flag redefined in FlagSet(%q)", test.flagSetName)
    
    		fs := NewFlagSet(test.flagSetName, ContinueOnError)
    		buf := &strings.Builder{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

        @Inject
        SettingsBuilder settingsBuilder;
    
        @Inject
        ToolchainsBuilder toolchainsBuilder;
    
        @BeforeEach
        void setup() {
            // create session with any local repo, is redefined anyway below
            RepositorySystemSession rss = new MavenSessionBuilderSupplier(repositorySystem)
                    .get()
                    .withLocalRepositoryBaseDirectories(new File("target").toPath())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/unicode/utf8/utf8_test.go

    	"bytes"
    	"strings"
    	"testing"
    	"unicode"
    	. "unicode/utf8"
    )
    
    // Validate the constants redefined from unicode.
    func init() {
    	if MaxRune != unicode.MaxRune {
    		panic("utf8.MaxRune is wrong")
    	}
    	if RuneError != unicode.ReplacementChar {
    		panic("utf8.RuneError is wrong")
    	}
    }
    
    // Validate the constants redefined from unicode.
    func TestConstants(t *testing.T) {
    	if MaxRune != unicode.MaxRune {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
Back to top