Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,001 for package_a (0.32 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // to obtain the original object.
    // The name does not include the package itself.
    type Path string
    
    // Encoding
    //
    // An object path is a textual and (with training) human-readable encoding
    // of a sequence of destructuring operators, starting from a types.Package.
    // The sequences represent a path through the package/object/type graph.
    // We classify these operators by their type:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    pluginsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent additional plugins packaged in the distributions (lib/plugins/*.jar)"
    val agentsRuntimeOnly by bucket()
    agentsRuntimeOnly.description = "To define dependencies to the Gradle modules that represent Java agents packaged in the distribution (lib/agents/*.jar)"
    
    coreRuntimeOnly.withDependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    package. All the CPPFLAGS and FFLAGS directives in a package are concatenated
    and used to compile Fortran files in that package. All the LDFLAGS directives
    in any package in the program are concatenated and used at link time. All the
    pkg-config directives are concatenated and sent to pkg-config simultaneously
    to add to each appropriate set of command-line flags.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. hack/lib/golang.sh

    # Creates a dummy unit test on disk in the source directory for the given package.
    # This unit test will invoke the package's standard entry point when run.
    kube::golang::create_coverage_dummy_test() {
      local package="$1"
      local name
      name="$(basename "${package}")"
      cat <<EOF > "$(kube::golang::path_for_coverage_dummy_test "${package}")"
    package main
    import (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. src/runtime/stubs.go

    // these pointers in regArgs.Ptrs such that they are visible to the GC.
    //
    // Package reflect passes a frame type. In package runtime, there is only
    // one call that copies results back, in callbackWrap in syscall_windows.go, and it
    // does NOT pass a frame type, meaning there are no write barriers invoked. See that
    // call site for justification.
    //
    // Package reflect accesses this symbol through a linkname.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. src/cmd/internal/moddeps/moddeps_test.go

    				"$ go generate -run=bundle " + pkgs + "               # to regenerate bundled packages\n"
    			if m.Path == "std" {
    				r.run(t, goBinCopy, "generate", "syscall", "internal/syscall/...") // See issue 43440.
    				advice += "$ go generate syscall internal/syscall/...  # to regenerate syscall packages\n"
    			}
    			// TODO(golang.org/issue/43440): Check anything else influenced by dependency versions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/build.go

    			return filepath.Join(cfg.GOROOT, "src", path)
    		}
    	}
    	return ""
    }
    
    // PackageModuleInfo returns information about the module that provides
    // a given package. If modules are not enabled or if the package is in the
    // standard library or if the package was not successfully loaded with
    // LoadPackages or ImportFromFiles, nil is returned.
    func PackageModuleInfo(ctx context.Context, pkgpath string) *modinfo.ModulePublic {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

        }
    
        @Override
        public WorkerProcessBuilder sharedPackages(String... packages) {
            sharedPackages(Arrays.asList(packages));
            return this;
        }
    
        @Override
        public WorkerProcessBuilder sharedPackages(Iterable<String> packages) {
            GUtil.addToCollection(this.packages, packages);
            return this;
        }
    
        @Override
        public Set<String> getSharedPackages() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                .as("in test fixture packages");
        }
    
        static DescribedPredicate<JavaClass> inGradleInternalApiPackages() {
            return resideInAnyPackage("org.gradle..")
                .and(not(inGradlePublicApiPackages()))
                .and(not(inTestFixturePackages()))
                .as("in Gradle internal API packages");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. common/config/.golangci.yml

              - pkg: github.com/golang/protobuf/jsonpb
                desc: "don't use the jsonpb package directly; use util/protomarshal instead"
              - pkg: google.golang.org/protobuf/encoding/protojson
                desc: "don't use the protojson package directly; use util/protomarshal instead"
              - pkg: gomodules.xyz/jsonpatch/v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top