Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,156 for package_a (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/type.go

    		case ']':
    			sqBrackets++
    		case '[':
    			sqBrackets--
    		}
    		i--
    	}
    	return s[i+1:]
    }
    
    // pkgpath returns the path of the package where t was defined, if
    // available. This is not the same as the reflect package's PkgPath
    // method, in that it returns the package path for struct and interface
    // types, not just named types.
    func (t rtype) pkgpath() string {
    	if u := t.uncommon(); u != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

                import ${gradleBaseServicesClass.name};
                public class Java {}
            """
    
            then:
            fails("compileJava")
            failure.assertHasErrorOutput("package ${gradleBaseServicesClass.package.name} does not exist")
        }
    
        def "gradle classpath does not leak onto java compile classpath"() {
            given:
            file("src/main/java/Example.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    The ID is derived from the plugin script's filename and its (optional) package declaration.
    
    For example, the script `src/main/\*/java-library.gradle(.kts)` has a plugin ID of `java-library` (assuming it has no package declaration).
    Likewise, `src/main/*/my/java-library.gradle(.kts)` has a plugin ID of `my.java-library` as long as it has a package declaration of `my`.
    
    Precompiled script plugin names have two important limitations:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/op.go

    // slots and ABI-defined spill slots for register-resident parameters.
    //
    // The name is taken from the types package's ArgWidth(<function type>),
    // which predated changes to the ABI; this version handles those changes.
    func (a *AuxCall) ArgWidth() int64 {
    	return a.abiInfo.ArgWidth()
    }
    
    // ParamAssignmentForResult returns the ABI Parameter assignment for result which (indexed 0, 1, etc).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. doc/godebug.md

    The defaults that will be compiled into a main package
    are reported by the command:
    
    {{raw `
    	go list -f '{{.DefaultGODEBUG}}' my/main/package
    `}}
    
    Only differences from the base Go toolchain defaults are reported.
    
    When testing a package, `//go:debug` lines in the `*_test.go`
    files are treated as directives for the test's main package.
    In any other context, `//go:debug` lines are ignored by the toolchain;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top