Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 452 for mutable_s (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributesFactory.java

        }
    
        public int size() {
            return children.size();
        }
    
        @Override
        public DefaultMutableAttributeContainer mutable() {
            return new DefaultMutableAttributeContainer(this);
        }
    
        @Override
        public HierarchicalAttributeContainer mutable(AttributeContainerInternal fallback) {
            return join(fallback, new DefaultMutableAttributeContainer(this));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

          pre-calculated execution plan that stays the same during the execution.
    
          If deciding to add mutable state to this class, it should be at least considered to
          separate this into a separate mutable structure.
    
        */
    
        private final List<ExecutionPlanItem> planItem;
    
        private final Map<String, ExecutionPlanItem> lastMojoExecutionForAllPhases;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MoreCollectors.java

        }
    
        void add(Object o) {
          checkNotNull(o);
          if (element == null) {
            this.element = o;
          } else if (extras.isEmpty()) {
            // Replace immutable empty list with mutable list.
            extras = new ArrayList<>(MAX_EXTRAS);
            extras.add(o);
          } else if (extras.size() < MAX_EXTRAS) {
            extras.add(o);
          } else {
            throw multiples(true);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 13 02:09:05 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/MutableBoolean.java

     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    import javax.annotation.concurrent.NotThreadSafe;
    import java.io.Serializable;
    
    /**
     * A non-thread-safe type to hold a mutable boolean value.
     */
    @NotThreadSafe
    public final class MutableBoolean implements Serializable {
        private boolean value;
    
        public MutableBoolean() {
            this(false);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway.go

    				mutable := &MutableGatewayListener{}
    				mutableopts[lname] = mutableListenerOpts{mutable: mutable, opts: opts, transport: transport}
    			} else {
    				mopts.opts.filterChainOpts = append(mopts.opts.filterChainOpts, opts.filterChainOpts...)
    			}
    		}
    	}
    	listeners := make([]*listener.Listener, 0)
    	for _, ml := range mutableopts {
    		ml.mutable.Listener = buildGatewayListener(*ml.opts, ml.transport)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Finalize.java

     * <p>
     * Finalize rules execute after {@link Mutate} rules, but before {@link Validate} rules.
     * The first parameter of the rule is the rule subject, which is mutable for the duration of the rule.
     * <p>
     * Please see {@link RuleSource} for more information on method rules.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Incubating
    public @interface Finalize {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/MutableActionSet.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal;
    
    import org.gradle.api.Action;
    
    /**
     * A mutable composite {@link Action}. Actions are executed in the order added, stopping on the first failure.
     *
     * This type is not thread-safe.
     *
     * Consider using {@link org.gradle.internal.ImmutableActionSet} instead of this.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/TransformerContextBuilder.java

        /**
         * This method is used to initialize the TransformerContext
         *
         * @param request the modelBuildingRequest
         * @param problems the problemCollector
         * @return the mutable transformerContext
         */
        TransformerContext initialize(ModelBuildingRequest request, ModelProblemCollector problems);
    
        /**
         * The immutable transformerContext, can be used after the buildplan is finished.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerContextBuilder.java

        /**
         * This method is used to initialize the TransformerContext
         *
         * @param request the modelBuildingRequest
         * @param problems the problemCollector
         * @return the mutable transformerContext
         */
        ModelTransformerContext initialize(ModelBuilderRequest request, ModelProblemCollector problems);
    
        /**
         * The immutable transformerContext, can be used after the buildplan is finished.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowActionSpec.java

     * @since 8.1
     */
    @Incubating
    public interface FlowActionSpec<P extends FlowParameters> {
    
        /**
         * Returns the parameters defined by the configured {@link FlowAction dataflow action}.
         *
         * @return mutable parameters object, never null.
         * @since 8.1
         */
        P getParameters();
    
        /**
         * Configures the {@link P parameters} for the {@link FlowAction flow action}.
         *
         * @since 8.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 18:52:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top