Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,001 for package_a (0.16 sec)

  1. src/compress/flate/deflate.go

    	// pair tokens. The offset is also known as distance. The underlying wire
    	// format limits the range of lengths and offsets. For example, there are
    	// 256 legitimate lengths: those in the range [3, 258]. This package's
    	// compressor uses a higher minimum match length, enabling optimizations
    	// such as finding matches via 32-bit loads and compares.
    	baseMatchLength = 3       // The smallest match length per the RFC section 3.2.5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/math/rand/rand.go

    //
    // Top-level functions, such as [Float64] and [Int],
    // are safe for concurrent use by multiple goroutines.
    //
    // This package's outputs might be easily predictable regardless of how it's
    // seeded. For random numbers suitable for security-sensitive work, see the
    // crypto/rand package.
    package rand
    
    import (
    	"internal/godebug"
    	"sync"
    	"sync/atomic"
    	_ "unsafe" // for go:linkname
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Use the `test` task provided by the Java Plugin.
    It runs the unit tests, and more specifically, the tests that make up the <<java_plugin.adoc#source_sets,`test` source set>>.
    
    `package`::
    Use the `assemble` task provided by the Base Plugin.
    This builds whatever is the appropriate package for the project; for example, a JAR for Java libraries or a WAR for traditional Java webapps.
    
    `verify`::
    Use the `check` task provided by the Base Plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/objfile.go

    // as the symRef struct above.
    //
    // PkgIdx is either a predeclared index (see PkgIdxNone below) or
    // an index of an imported package. For the latter case, PkgIdx is the
    // index of the package in the PkgIndex array. 0 is an invalid index.
    //
    // SymIdx is the index of the symbol in the given package.
    // - If PkgIdx is PkgIdxSelf, SymIdx is the index of the symbol in the
    //   SymbolDefs array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. src/encoding/gob/type.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gob
    
    import (
    	"encoding"
    	"errors"
    	"fmt"
    	"os"
    	"reflect"
    	"sync"
    	"sync/atomic"
    	"unicode"
    	"unicode/utf8"
    )
    
    // userTypeInfo stores the information associated with a type the user has handed
    // to the package. It's computed once and stored in a map keyed by reflection
    // type.
    type userTypeInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/build.go

    that pattern (see 'go help packages' for a description of package
    patterns). Without a pattern, the argument list applies only to the
    packages named on the command line. The flags may be repeated
    with different patterns in order to specify different arguments for
    different sets of packages. If a package matches patterns given in
    multiple flags, the latest match on the command line wins.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    When you apply a plugin like the `java-library` plugin, Gradle will automatically register some tasks and configure them with defaults.
    
    Let's define a task that packages JARs and a start script into an archive in an imaginary sample project:
    
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    gradle-project
    ├── app
    │   ├── build.gradle.kts    // app build logic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/gcimporter_test.go

    	// file path for the package is different from the package path; this
    	// will expose the error if it is present.
    	//
    	// (Issue: Both the textual and the binary importer used the file path
    	// of the package to be imported as key into the shared packages map.
    	// However, the binary importer then used the package path to identify
    	// the imported package to mark it as complete; effectively marking the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/list/list.go

    	UsageLine: "go list [-f format] [-json] [-m] [list flags] [build flags] [packages]",
    	Short:     "list packages or modules",
    	Long: `
    List lists the named packages, one per line.
    The most commonly-used flags are -f and -json, which control the form
    of the output printed for each package. Other list flags, documented below,
    control more specific details.
    
    The default output shows the package import path:
    
        bytes
        encoding/json
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     4. Updating task dependencies.
    +
    `compileJava` must depend on `prepare`, `package` must depend on `compileJava` rather than `ant_build`, and `assemble` must depend on `package` rather than the standard Gradle `jar` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top