Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 246 for retractions (0.28 sec)

  1. src/cmd/go/internal/load/pkg.go

    	// later arguments, and other modules would. Let's not try to be too
    	// magical though.
    	allowed := modload.CheckAllowed
    	if modload.IsRevisionQuery(firstPath, version) {
    		// Don't check for retractions if a specific revision is requested.
    		allowed = nil
    	}
    	noneSelected := func(path string) (version string) { return "none" }
    	qrs, err := modload.QueryPackages(ctx, patterns[0], version, noneSelected, allowed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. cmd/importverifier/importverifier.go

    var rootPackage string
    
    func main() {
    	if len(os.Args) != 3 {
    		log.Fatalf("Usage: %s <root> <restrictions.yaml>", os.Args[0])
    	}
    
    	rootPackage = os.Args[1]
    	configFile := os.Args[2]
    	importRestrictions, err := loadImportRestrictions(configFile)
    	if err != nil {
    		log.Fatalf("Failed to load import restrictions: %v", err)
    	}
    
    	foundForbiddenImports := false
    	for _, restriction := range importRestrictions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_retract_missingmod_v1.0.0.txt

    This version should be retracted, but the go.mod file for the version that would
    contain the retraction is not available.
    -- .mod --
    module example.com/retract/missingmod
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0"}
    -- missingmod.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 13:08:54 UTC 2020
    - 252 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    const debug = false
    
    var ErrEmptyTypeSet = errors.New("empty type set")
    
    // StructuralTerms returns a slice of terms representing the normalized
    // structural type restrictions of a type parameter, if any.
    //
    // Structural type restrictions of a type parameter are created via
    // non-interface types embedded in its constraint interface (directly, or via a
    // chain of interface embeddings). For example, in the declaration
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. hack/verify-imports.sh

    # listed in `staging/publishing/import-restrictions.yaml`.
    # Usage: `hack/verify-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    GOPROXY=off go install ./cmd/importverifier
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. cmd/import-boss/README.md

    ## Purpose
    
    `import-boss` enforces optional import restrictions between packages.  This is
    useful to manage the dependency graph within a large repository, such as
    [kubernetes](https://github.com/kubernetes/kubernetes).
    
    ## How does it work?
    
    When a package is verified, `import-boss` looks for a file called
    `.import-restrictions` in the same directory and all parent directories, up to
    the module root (defined by the presence of a go.mod file).  These files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/SpecializedMapNodeInitializer.java

            this.schema = schema;
        }
    
        @Override
        public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
            return getActions(subject, descriptor, schema);
        }
    
        public static <T, E> Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor, final SpecializedMapSchema<T, E> schema) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        }
    
        @Override
        public boolean hasTaskActions() {
            return actions != null && !actions.isEmpty();
        }
    
        @Override
        public void setActions(final List<Action<? super Task>> replacements) {
            taskMutator.mutate("Task.setActions(List<Action>)", new Runnable() {
                @Override
                public void run() {
                    getTaskActions().clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/transforms/tac_pass.h

    namespace mlir {
    namespace TFL {
    namespace tac {
    // An OperationPass<> with access to the TAC module instance that the
    // pass is running part of.
    // See OperationPass<> comments for all details/restrictions of OperationPass.
    //
    // When adding new Pass to TAC, users should use this class as the base class
    // as it provides access to the TAC module.
    template <typename T>
    class TacPass : public OperationPass<T> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate.go

    // returns an error.
    func NegotiateOutputMediaType(req *http.Request, ns runtime.NegotiatedSerializer, restrictions EndpointRestrictions) (MediaTypeOptions, runtime.SerializerInfo, error) {
    	mediaType, ok := NegotiateMediaTypeOptions(req.Header.Get("Accept"), ns.SupportedMediaTypes(), restrictions)
    	if !ok {
    		supported, _ := MediaTypesForSerializer(ns)
    		return mediaType, runtime.SerializerInfo{}, NewNotAcceptableError(supported)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9.5K bytes
    - Viewed (0)
Back to top