Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 142 for predefined (0.17 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. src/time/format.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package time
    
    import (
    	"errors"
    	"internal/stringslite"
    	_ "unsafe" // for linkname
    )
    
    // These are predefined layouts for use in [Time.Format] and [time.Parse].
    // The reference time used in these layouts is the specific time stamp:
    //
    //	01/02 03:04:05PM '06 -0700
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/link/internal/ld/xcoff.go

    	ldr := ctxt.loader
    	/* C_FILE */
    	s := &XcoffSymEnt64{
    		Noffset: uint32(f.stringTable.add(".file")),
    		Nsclass: C_FILE,
    		Nscnum:  N_DEBUG,
    		Ntype:   0, // Go isn't inside predefined language.
    		Nnumaux: 1,
    	}
    	f.addSymbol(s)
    	currSymSrcFile.file = s
    
    	// Auxiliary entry for file name.
    	auxf := &XcoffAuxFile64{
    		Xoffset:  uint32(f.stringTable.add(name)),
    		Xftype:   XFT_FN,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/CompositeConfiguration.groovy

    @CompileStatic
    class CompositeConfiguration {
        static CompositeConfiguration composite(boolean predefine) {
            return new CompositeConfiguration(predefine)
        }
    
        private final boolean predefine
    
        private CompositeConfiguration(boolean predefine) {
            this.predefine = predefine
        }
    
        boolean usePredefinedPublications() {
            predefine
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/reflect/type.go

    	if T == V {
    		return true
    	}
    
    	kind := Kind(T.Kind())
    	if kind != Kind(V.Kind()) {
    		return false
    	}
    
    	// Non-composite types of equal kind have same underlying type
    	// (the predefined instance of the type).
    	if Bool <= kind && kind <= Complex128 || kind == String || kind == UnsafePointer {
    		return true
    	}
    
    	// Composite types.
    	switch kind {
    	case Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/output/output.go

    // This method is usually redefined for the text output
    func (rpw *ResourcePrinterWrapper) Fprintf(writer io.Writer, format string, args ...interface{}) (n int, err error) {
    	return 0, nil
    }
    
    // Fprintln is an empty method to satisfy the Printer interface
    // and silent info printing for structured output
    // This method is usually redefined for the text output
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top