Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,760 for package_a (0.27 sec)

  1. src/go/printer/testdata/declarations.input

    )
    
    import (
    	mymath "math"
    	"/foo/bar/long_package_path" // a comment
    )
    
    import (
    	"package_a" // comment
    	"package_b"
    	my_better_c "package_c" // comment
    	"package_d" // comment
    	my_e "package_e" // comment
    
    	"package_a"    // comment
    	"package_bb"
    	"package_ccc"  // comment
    	"package_dddd" // comment
    )
    
    // print import paths as double-quoted strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.golden

    )
    
    import (
    	mymath "math"
    	"/foo/bar/long_package_path"	// a comment
    )
    
    import (
    	"package_a"	// comment
    	"package_b"
    	my_better_c "package_c"	// comment
    	"package_d"		// comment
    	my_e "package_e"	// comment
    
    	"package_a"	// comment
    	"package_bb"
    	"package_ccc"	// comment
    	"package_dddd"	// comment
    )
    
    // print import paths as double-quoted strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            boolean packaged = false;
            for (String phase : getLifecycles(project)) {
                switch (phase) {
                    case "clean":
                        packaged = false;
                        break;
                    case "package":
                    case "install":
                    case "deploy":
                        packaged = true;
                        break;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. docs/en/docs/img/tutorial/bigger-applications/package.svg

    package.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 14K bytes
    - Viewed (0)
  5. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

         */
        int getCoreLibJarsCount() {
            69
        }
    
        /**
         * Change this whenever you add or remove subprojects for distribution-packaged plugins (lib/plugins).
         */
        int getPackagedPluginsJarCount() {
            80
        }
    
        /**
         * Change this whenever you add or remove subprojects for distribution java agents (lib/agents).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/log/slog/logger.go

    // license that can be found in the LICENSE file.
    
    package slog
    
    import (
    	"context"
    	"log"
    	loginternal "log/internal"
    	"log/slog/internal"
    	"runtime"
    	"sync/atomic"
    	"time"
    )
    
    var defaultLogger atomic.Pointer[Logger]
    
    var logLoggerLevel LevelVar
    
    // SetLogLoggerLevel controls the level for the bridge to the [log] package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/select.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package toolchain implements dynamic switching of Go toolchains.
    package toolchain
    
    import (
    	"context"
    	"errors"
    	"flag"
    	"fmt"
    	"go/build"
    	"io/fs"
    	"log"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    
    	"cmd/go/internal/base"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/regexp/exec_test.go

    // license that can be found in the LICENSE file.
    
    package regexp
    
    import (
    	"bufio"
    	"compress/bzip2"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp/syntax"
    	"slices"
    	"strconv"
    	"strings"
    	"testing"
    	"unicode/utf8"
    )
    
    // TestRE2 tests this package's regexp API against test cases
    // considered during RE2's exhaustive tests, which run all possible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/crypto/ed25519/ed25519.go

    	PublicKeySize = 32
    	// PrivateKeySize is the size, in bytes, of private keys as used in this package.
    	PrivateKeySize = 64
    	// SignatureSize is the size, in bytes, of signatures generated and verified by this package.
    	SignatureSize = 64
    	// SeedSize is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032.
    	SeedSize = 32
    )
    
    // PublicKey is the type of Ed25519 public keys.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/go/doc/doc.go

    	PreserveAST
    )
    
    // New computes the package documentation for the given package AST.
    // New takes ownership of the AST pkg and may edit or overwrite it.
    // To have the [Examples] fields populated, use [NewFromFiles] and include
    // the package's _test.go files.
    func New(pkg *ast.Package, importPath string, mode Mode) *Package {
    	var r reader
    	r.readPackage(pkg, mode)
    	r.computeMethodSets()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top