Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 201 for retractions (0.23 sec)

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

        ModelRuleDescriptor getDescriptor();
    
        ModelPath getPath();
    
        /**
         * Actions that need to be registered when the node is registered.
         */
        Multimap<ModelActionRole, ? extends ModelAction> getActions();
    
        /**
         * Returns whether the registered node is hidden.
         */
        boolean isHidden();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    			// avoid anonymous interface cycles.
    			hash += 3*hashString(m.Name()) + 5*h.shallowHash(m.Type())
    		}
    
    		// Hash type restrictions.
    		terms, err := typeparams.InterfaceTermSet(t)
    		// if err != nil t has invalid type restrictions.
    		if err == nil {
    			hash += h.hashTermSet(terms)
    		}
    
    		return hash
    
    	case *types.Map:
    		return 9109 + 2*h.Hash(t.Key()) + 3*h.Hash(t.Elem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/FinalizableReference.java

    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface FinalizableReference {
      /**
       * Invoked on a background thread after the referent has been garbage collected unless security
       * restrictions prevented starting a background thread, in which case this method is invoked when
       * new references are created.
       */
      void finalizeReferent();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/DefaultModelRegistration.java

        }
    
        @Override
        public ModelPath getPath() {
            return path;
        }
    
        @Override
        public Multimap<ModelActionRole, ? extends ModelAction> getActions() {
            return actions;
        }
    
        @Override
        public boolean isHidden() {
            return hidden;
        }
    
        @Override
        public ModelRuleDescriptor getDescriptor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modinfo/info.go

    	GoMod      string           `json:",omitempty"` // path to go.mod file describing module, if any
    	GoVersion  string           `json:",omitempty"` // go version used in module
    	Retracted  []string         `json:",omitempty"` // retraction information, if any (with -retracted or -u)
    	Deprecated string           `json:",omitempty"` // deprecation message, if any (with -u)
    	Error      *ModuleError     `json:",omitempty"` // error loading module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/operator_test.go

    				Version: "25",
    			}), args)
    			err := rootCmd.Execute()
    			assert.NoError(t, err)
    
    			readActions := map[string]bool{
    				"get":   true,
    				"list":  true,
    				"watch": true,
    			}
    
    			actions := extendedClient.Kube().(*fake.Clientset).Actions()
    			for _, action := range actions {
    				if v := readActions[action.GetVerb()]; !v {
    					t.Fatalf("unexpected action: %+v, expected %s", action.GetVerb(), "get")
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/typeconverter.go

    // corresponding schema information.
    // The keys to the map must be consistent with the names
    // used by Refs within the schemas.
    // The schemas should conform to the Kubernetes Structural Schema OpenAPI
    // restrictions found in docs:
    // https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#specifying-a-structural-schema
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_retract_pseudo_base.txt

    go list -m vcs-test.golang.org/git/retract-pseudo.git@64c061ed4371
    stdout '^vcs-test.golang.org/git/retract-pseudo.git v0.0.0-20201009173747-64c061ed4371'
    
    # A retracted version is a valid base. Retraction should not validate existing
    # pseudo-versions, nor should it turn invalid pseudo-versions valid.
    go get vcs-test.golang.org/git/retract-pseudo.git@v1.0.1-0.20201009173747-713affd19d7b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/context.go

    	ac.annotationMutex.Lock()
    	defer ac.annotationMutex.Unlock()
    
    	addAuditAnnotationLocked(ac, key, value)
    }
    
    // AddAuditAnnotations is a bulk version of AddAuditAnnotation. Refer to AddAuditAnnotation for
    // restrictions on when this can be called.
    // keysAndValues are the key-value pairs to add, and must have an even number of items.
    func AddAuditAnnotations(ctx context.Context, keysAndValues ...string) {
    	ac := AuditContextFrom(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelMapNodeInitializerExtractionStrategy.java

            public ModelMapNodeInitializer(CollectionSchema<T, E> schema) {
                this.schema = schema;
            }
    
            @Override
            public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
                return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
                    .put(ModelActionRole.Discover, AddProjectionsAction.of(subject, descriptor,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top