Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,505 for Mutation (0.24 sec)

  1. maven-core/src/main/java/org/apache/maven/resolver/MavenChainedWorkspaceReader.java

     * <p>
     * This class, while technically is not immutable, should be considered as such once set up. If not mutated, it is also
     * thread-safe. The mutation of this class instances should happen beforehand their use in session.
     */
    public class MavenChainedWorkspaceReader implements MavenWorkspaceReader {
    
        protected List<WorkspaceReader> readers;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/CharSequenceReader.java

       * such as:
       *
       * - Make checkOpen return the non-null `seq`. Then callers can assign that to a local variable or
       *   even back to `this.seq`. However, that may suggest that we're defending against concurrent
       *   mutation, which is not an actual risk because we use `synchronized`.
       * - Make `remaining` require a non-null `seq` argument. But this is a bit weird because the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/CharSequenceReader.java

       * such as:
       *
       * - Make checkOpen return the non-null `seq`. Then callers can assign that to a local variable or
       *   even back to `this.seq`. However, that may suggest that we're defending against concurrent
       *   mutation, which is not an actual risk because we use `synchronized`.
       * - Make `remaining` require a non-null `seq` argument. But this is a bit weird because the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRules.java

                .fromCharSequence(new ModuleIdentifierNotationConverter(moduleIdentifierFactory))
                .toComposite();
        }
    
        /**
         * Sets the validator to invoke prior to each mutation.
         */
        public void setMutationValidator(MutationValidator mutationValidator) {
            this.mutationValidator = mutationValidator;
        }
    
        private static RuleActionAdapter createAdapter() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

            type.typeVariables[0] == ModelType.of(String)
        }
    
        static class GenericMutationRule extends RuleSource {
            @Mutate
            <T> void mutate(T thing) {}
        }
    
        def "mutation rule cannot be generic"() {
            when:
            extract(GenericMutationRule)
    
            then:
            def e = thrown(InvalidModelRuleDeclarationException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/StandardMutableNetwork.java

    /**
     * Standard implementation of {@link MutableNetwork} that supports both directed and undirected
     * graphs. Instances of this class should be constructed with {@link NetworkBuilder}.
     *
     * <p>Time complexities for mutation methods are all O(1) except for {@code removeNode(N node)},
     * which is in O(d_node) where d_node is the degree of {@code node}.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @author Omar Darwish
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

            then:
            agentWasApplied()
        }
    
        @Requires(
            value = UnitTestPreconditions.Jdk8OrEarlier,
            reason = "Java 9 and above needs --add-opens to make environment variable mutation work"
        )
        def "foreground daemon respects the feature flag"() {
            given:
            executer.tap {
                requireDaemon()
                requireIsolatedDaemons()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableDependencies.java

     * </ul>
     *
     * <p>The dependencies are resolved once only, when the result is first requested. The result is reused and returned for subsequent calls. Once resolved, any mutation to the dependencies will result in an error.</p>
     */
    @HasInternalProtocol
    public interface ResolvableDependencies extends ArtifactView {
        /**
         * Returns the name of this set.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 17:30:50 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

            busy()
    
            when:
            completeBuild()
    
            then:
            idle()
    
            and:
            stopped()
        }
    
        //Java 9 and above needs --add-opens to make environment variable mutation work
        @Requires(UnitTestPreconditions.Jdk8OrEarlier)
        def "existing foreground idle daemons are used"() {
            when:
            startForegroundDaemon()
    
            then:
            idle()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/freeze_variables.mlir

        "tf.AssignVariableOp"(%handle, %0) : (tensor<!tf_type.resource<tensor<0xf32>>>, tensor<0xf32>) -> ()
        // CHECK: "tf.VarHandleOp"
        func.return
      }
    }
    
    // -----
    
    // Test mutation detection propagates across function calls.
    
    module {
      func.func @f() -> tensor<0xf32> {
        // CHECK: "tf.VarHandleOp"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top