Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,707 for Packaged (0.28 sec)

  1. 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)
  2. src/cmd/go/internal/work/gc.go

    	}
    	return append(ldflags, "-extld="+joined), nil
    }
    
    // pluginPath computes the package path for a plugin main package.
    //
    // This is typically the import path of the main package p, unless the
    // plugin is being built directly from source files. In that case we
    // combine the package build ID with the contents of the main package
    // source files. This allows us to identify two different plugins
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/go/build/build_test.go

    	},
    	{
    		name: "BinaryOnly",
    		content: "//go:binary-only-package\n" +
    			"// +build yes\n" +
    			"package main\n",
    		tags:        map[string]bool{},
    		binaryOnly:  true,
    		shouldBuild: true,
    	},
    	{
    		name: "BinaryOnly2",
    		content: "//go:binary-only-package\n" +
    			"//go:build no\n" +
    			"package main\n",
    		tags:        map[string]bool{"no": true},
    		binaryOnly:  true,
    		shouldBuild: false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/fmt.go

    // license that can be found in the LICENSE file.
    
    package types
    
    import (
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"strconv"
    	"sync"
    
    	"cmd/compile/internal/base"
    	"cmd/internal/notsha256"
    )
    
    // BuiltinPkg is a fake package that declares the universe block.
    var BuiltinPkg *Pkg
    
    // LocalPkg is the package being compiled.
    var LocalPkg *Pkg
    
    // UnsafePkg is package unsafe.
    var UnsafePkg *Pkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/go/types/check.go

    	// disambiguating package names in error messages.
    	//
    	// pkgPathMap is allocated lazily, so that we don't pay the price of building
    	// it on the happy path. seenPkgMap tracks the packages that we've already
    	// walked.
    	pkgPathMap map[string]map[string]bool
    	seenPkgMap map[*Package]bool
    
    	// information collected during type-checking of a set of package files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/embed/embed.go

    // both ‘image/.tempfile’ and ‘image/dir/.tempfile’.
    //
    // The //go:embed directive can be used with both exported and unexported variables,
    // depending on whether the package wants to make the data available to other packages.
    // It can only be used with variables at package scope, not with local variables.
    //
    // Patterns must not match files outside the package's module, such as ‘.git/*’ or symbolic links.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTrackerFactory
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProviderFactory
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProviderMerger
    import org.jetbrains.kotlin.analysis.api.platform.projectStructure.KotlinByModulesResolutionScopeProvider
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/doc/main.go

    		return fmt.Errorf("no symbol %s in package%s", symbol, &b)
    	}
    	return fmt.Errorf("no method or field %s.%s in package%s", symbol, method, &b)
    }
    
    // parseArgs analyzes the arguments (if any) and returns the package
    // it represents, the part of the argument the user used to identify
    // the path (or "" if it's the current package) and the symbol
    // (possibly with a .method) within that package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top