Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 452 for mutable_s (0.21 sec)

  1. pkg/proto/merge/merge.go

    		switch {
    		case fd.IsList():
    			o.mergeList(dst.Mutable(fd).List(), v.List(), fd)
    		case fd.IsMap():
    			o.mergeMap(dst.Mutable(fd).Map(), v.Map(), fd.MapValue())
    		case fd.Message() != nil:
    			mergeFn, exists := o.customMergeFn[fd.Message().FullName()]
    			if exists {
    				mergeFn(dst.Mutable(fd).Message(), v.Message())
    			} else {
    				o.mergeMessage(dst.Mutable(fd).Message(), v.Message())
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 17:31:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/mutableManagedProperty/groovy/settings.gradle

    rootProject.name = 'mutable-managed-property'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ReflectiveEnvironment.java

                Map<String, String> result = (Map<String, String>)caseinsensitive.get(null);
                return result;
            } catch (Exception e) {
                throw new NativeIntegrationException("Unable to get mutable windows case insensitive environment map", e);
            }
        }
    
        private Map<String, String> getEnv() {
            try {
                Map<String, String> theUnmodifiableEnvironment = System.getenv();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

                def mutable = new DefaultMutableVersionConstraint("")
                spec.delegate = mutable
                spec.resolveStrategy = Closure.DELEGATE_FIRST
                spec.call()
                def version = DefaultImmutableVersionConstraint.of(mutable)
                assert model.version == version
            }
        }
    
        @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJavaToolchainRepositoryHandler.java

            }
    
            return repositories.remove(repository);
        }
    
        @Override
        public void preventFromFurtherMutation() {
            this.mutable = false;
        }
    
        private void assertMutable() {
            if (!mutable) {
                throw new InvalidUserCodeException("Mutation of toolchain repositories declared in settings is only allowed during settings evaluation");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/isolation/Isolatable.java

     * An <b>isolated</b> instance has the same internal state as the original object on which this isolatable was based,
     * but it is guaranteed not to retain any references to mutable state from the original instance.
     * <p>
     * The primary reason to need such an isolated instance of an object is to ensure that work can be done in parallel using the instance without
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * Each isolated action is re-created through Configuration Cache serialization before it is applied to a target.
     * This approach ensures that sharing mutable state across targets via any means
     * (including {@link org.gradle.api.services.BuildService}, which are not supported) is prevented.
     * The absence of shared mutable state allows these actions to be safely executed in parallel as needed.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildProjectRegistry.java

         *
         * @param projectPath The path relative to the root project of this build.
         */
        @Nullable
        ProjectState findProject(Path projectPath);
    
        /**
         * Allows a section of code to run against the mutable state of all projects of this build. No other thread will be able to access the state of any project of this build while the given action is running.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 17 02:52:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen_test.cc

      opts.gen_program_shape = true;
      tf2xla::Config config;
      tf2xla::Feed* feed = config.add_feed();
      feed->mutable_id()->set_node_name("feed0");
      feed->set_name("myfeed");
      feed = config.add_feed();
      feed->mutable_id()->set_node_name("feed1");
      tf2xla::Fetch* fetch = config.add_fetch();
      fetch->mutable_id()->set_node_name("fetch0");
      fetch->set_name("myfetch");
      tf2xla::Variable* variable = config.add_variable();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionPlan.java

    import org.gradle.api.specs.Spec;
    
    import javax.annotation.concurrent.NotThreadSafe;
    import java.io.Closeable;
    import java.util.Collection;
    import java.util.function.Consumer;
    
    /**
     * Represents a mutable graph of dependent work items.
     *
     * <p>The methods of this interface are not thread safe.
     */
    @NotThreadSafe
    public interface ExecutionPlan extends Describable, Closeable {
        void addFilter(Spec<? super Task> filter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top