Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 246 for retractions (0.46 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/StructNodeInitializer.java

        protected final StructBindings<T> bindings;
    
        public StructNodeInitializer(StructBindings<T> bindings) {
            this.bindings = bindings;
        }
    
        @Override
        public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
            return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
                .put(ModelActionRole.Discover, DirectNodeInputUsingModelAction.of(subject, descriptor,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. LICENSE

    it in new free programs; and that you are informed that you can do
    these things.
    
      To protect your rights, we need to make restrictions that forbid
    distributors to deny you these rights or to ask you to surrender these
    rights.  These restrictions translate to certain responsibilities for
    you if you distribute copies of the library or if you modify it.
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  3. cmd/import-boss/main.go

    */
    
    // import-boss enforces import restrictions in a given repository.
    package main
    
    import (
    	"flag"
    	"os"
    
    	"errors"
    	"fmt"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strings"
    	"time"
    
    	"github.com/spf13/pflag"
    	"golang.org/x/tools/go/packages"
    	"k8s.io/klog/v2"
    	"sigs.k8s.io/yaml"
    )
    
    const (
    	rulesFileName = ".import-restrictions"
    	goModFile     = "go.mod"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistrations.java

            public ModelRegistration build() {
                ModelRuleDescriptor descriptor = descriptorReference.descriptor;
                if (nodeInitializer != null) {
                    actions.putAll(nodeInitializer.getActions(reference, descriptor));
                }
                if (!projections.isEmpty()) {
                    action(ModelActionRole.Discover, AddProjectionsAction.of(reference, descriptor, projections));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/edit.go

    a version on the left side is dropped.
    
    The -retract=version and -dropretract=version flags add and drop a
    retraction on the given version. The version may be a single version
    like "v1.2.3" or a closed interval like "[v1.1.0,v1.1.9]". Note that
    -retract=version is a no-op if that retraction already exists.
    
    The -godebug, -dropgodebug, -require, -droprequire, -exclude, -dropexclude,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/go/types/typeset.go

    	"sort"
    	"strings"
    )
    
    // ----------------------------------------------------------------------------
    // API
    
    // A _TypeSet represents the type set of an interface.
    // Because of existing language restrictions, methods can be "factored out"
    // from the terms. The actual type set is the intersection of the type set
    // implied by the methods and the type set described by the terms and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. src/runtime/align_test.go

    	var b strings.Builder
    	printer.Fprint(&b, v.fset, n)
    	return b.String()
    }
    
    // buildableFiles returns the list of files in the given directory
    // that are actually used for the build, given GOOS/GOARCH restrictions.
    func buildableFiles(t *testing.T, dir string) []string {
    	ctxt := build.Default
    	ctxt.CgoEnabled = true
    	pkg, err := ctxt.ImportDir(dir, 0)
    	if err != nil {
    		t.Fatalf("can't find buildable files: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    include::sample[dir="snippets/developingPlugins/testingPlugins/groovy/include-plugin-build",files="settings.gradle[tags=include-build]"]
    ====
    
    [[included_builds]]
    == Restrictions on included builds
    
    Most builds can be included in a composite, including other composite builds.
    There are some restrictions.
    
    In a regular build, Gradle ensures that each project has a unique _project path_.
    It makes projects identifiable and addressable without conflicts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    	// common.go#getClient()
    	// The problem here is that during upgrade dry-run client reactors are backed by a dynamic client
    	// via NewClientBackedDryRunGetterFromKubeconfig() and for GetActions there seems to be no analog to
    	// Discovery().Serverversion() resource for a dynamic client(?).
    	fakeclientDiscovery, ok := g.client.Discovery().(*fakediscovery.FakeDiscovery)
    	if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/PercentEscaper.java

     * directly if required. While URI escapers impose specific semantics on which characters are
     * considered 'safe', this class has a minimal set of restrictions.
     *
     * <p>When escaping a String, the following rules apply:
     *
     * <ul>
     *   <li>All specified safe characters remain unchanged.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top