Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 705 for Mutated (0.22 sec)

  1. tensorflow/compiler/jit/variable_info.h

      // thread safety analysis. Instead we use a boolean flag and release the lock
      // in the VariableInfo destructor.
      bool lock_held_ = false;
      bool shared_lock_held_ = false;
    
      // Whether this variable is going to be mutated. Left false if the caller
      // doesn't provide this information.
      bool read_only_ = false;
    };
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 14 21:57:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/IncompatibleTypeReferenceReporter.java

            writer.println(" is invalid due to incompatible types.");
            writer.print("This element was created by ");
            writer.print(creator);
            writer.print(" and can be ");
            writer.print(writable ? "mutated" : "read");
            writer.println(" as the following types:");
            boolean first = true;
            for (String candidateType : candidateTypes) {
                if (!first) {
                    writer.println();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      // Prints MLIR after specified passes. Supports regular expressions for
      // matching against the names of the desired passes. Currently only prints
      // after a pass if the MLIR is mutated.
      optional string print_ir_after = 6 [default = ""];
    
      // If true, always print the top-level operation when printing IR for
      // print_ir_[before|after].
      optional bool print_ir_module_scope = 7 [default = true];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pkg/proxy/endpointslicecache_test.go

    // Check verifies that no objects in the cacheMutationCheck have been mutated.
    func (cmc *cacheMutationCheck) Check(t *testing.T) {
    	for _, o := range cmc.objects {
    		if !reflect.DeepEqual(o.original, o.deepCopy) {
    			// Cached objects can't be safely mutated and instead should be deep
    			// copied before changed in any way.
    			t.Errorf("Cached object was unexpectedly mutated. Original: %+v, Mutated: %+v", o.deepCopy, o.original)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

            and:
            file("build", "libs", "sign-1.0.jar.asc").text
            file("build", "publications", "mavenJava", "pom-default.xml.asc").text
        }
    
        def "component can still be mutated after signing is configured for a Maven publication"() {
            given:
            buildFile << """
                apply plugin: 'maven-publish'
                ${keyInfo.addAsPropertiesScript()}
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/refs.go

    )
    
    // PopulateRefs recursively replaces Refs in the schema with the referred one.
    // schemaOf is the callback to find the corresponding schema by the ref.
    // This function will not mutate the original schema. If the schema needs to be
    // mutated, a copy will be returned, otherwise it returns the original schema.
    func PopulateRefs(schemaOf func(ref string) (*spec.Schema, bool), rootRef string) (*spec.Schema, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/common/adaptor.go

    	// the type includes "kind", "apiVersion" field
    	// the "metadata" field requires "name" and "generateName" to be set
    	// The original schema must not be mutated. Make a copy if necessary.
    	WithTypeAndObjectMeta() Schema
    }
    
    // Validations contains OpenAPI validation that the CEL library uses.
    type Validations interface {
    	Pattern() string
    	Minimum() *float64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/QueryableExecutionPlan.java

    import org.gradle.api.Task;
    
    import java.util.Collections;
    import java.util.List;
    import java.util.Set;
    import java.util.function.BiConsumer;
    
    /**
     * An execution plan that has been finalized and can no longer be mutated.
     *
     * <p>Implementations may or may not be thread-safe.</p>
     */
    public interface QueryableExecutionPlan {
        QueryableExecutionPlan EMPTY = new QueryableExecutionPlan() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/ProjectLayout.java

         * <p>Creates a read-only {@link FileCollection} containing the given files, as defined by {@link Project#files(Object...)}.
         *
         * <p>This method can also be used to create an empty collection, but the collection may not be mutated later.</p>
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection. Never returns null.
         * @since 4.8
         */
        FileCollection files(Object... paths);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/DefaultDomainObjectSet.java

            super(type, new IterationOrderRetainingSetElementSource<T>(), decorator);
        }
    
        /**
         * Adds an action which is executed before this collection is mutated with the addition or removal of elements.
         * Any exception thrown by the action will veto the mutation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top