Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 246 for retractions (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. android/guava/src/com/google/common/util/concurrent/Partially.java

    final class Partially {
      /**
       * The presence of this annotation on an API indicates that the method <i>may</i> be used with the
       * <a href="http://www.gwtproject.org/">Google Web Toolkit</a> (GWT) but that it has <i>some
       * restrictions</i>.
       */
      @Retention(RetentionPolicy.CLASS)
      @Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})
      @Documented
      @interface GwtIncompatible {
        String value();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. guava/src/com/google/common/util/concurrent/Partially.java

    final class Partially {
      /**
       * The presence of this annotation on an API indicates that the method <i>may</i> be used with the
       * <a href="http://www.gwtproject.org/">Google Web Toolkit</a> (GWT) but that it has <i>some
       * restrictions</i>.
       */
      @Retention(RetentionPolicy.CLASS)
      @Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})
      @Documented
      @interface GwtIncompatible {
        String value();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/GenerateSolutionFileTask.java

                solutionFile.setProjects(solution.getProjects());
    
                for (Action<? super TextProvider> textAction : solution.getSolutionFile().getTextActions()) {
                    solutionFile.getActions().add(textAction);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top