Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 81 for copiedS (0.17 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    This pass takes the TPU computation subgraph, moves them into a
    `tf_device.cluster`, and copies over attributes from the associated
    `tf.TPUReplicateMetadata` op to the newly created `tf_device.cluster`. If the
    computation is replicated (`num_replicas` > 1), the `num_replicas` attribute is
    not copied over but instead the `tf_device.cluster` is further wrapped with a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. src/runtime/map.go

    // within a single bucket.
    //
    // If more than 8 keys hash to a bucket, we chain on
    // extra buckets.
    //
    // When the hashtable grows, we allocate a new array
    // of buckets twice as big. Buckets are incrementally
    // copied from the old bucket array to the new bucket array.
    //
    // Map iterators walk through the array of buckets and
    // return the keys in walk order (bucket #, then overflow
    // chain order, then bucket index).  To maintain iteration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    			}
    			return matched
    		}
    	}
    
    	return true
    }
    
    // copyfile copies the file src to dst, via memory (so only good for small files).
    func copyfile(dst, src string, flag int) {
    	if vflag > 1 {
    		errprintf("cp %s %s\n", src, dst)
    	}
    	writefile(readfile(src), dst, flag)
    }
    
    // dopack copies the package src to dst,
    // appending the files listed in extra.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import static org.gradle.api.internal.artifacts.ivyservice.IvyUtil.createModuleRevisionId;
    
    /**
     * Copied from org.apache.ivy.plugins.parser.xml.XmlModuleDescriptorParser into Gradle codebase, and heavily modified.
     */
    public class IvyXmlModuleDescriptorParser extends AbstractModuleDescriptorParser<MutableIvyModuleResolveMetadata> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

         *
         * There's another reason for not allowing inheritance: it allows more precise selection, while still
         * allowing the build author/plugin writer to decide what attributes should be copied to child configurations.
         *
         */
        def "attributes of parent configurations should not be used when matching"() {
            given:
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
    
            // Set the implicit system properties regardless of whether default JVM args are required or not, this should not interfere with tests' intentions
            // These will also be copied across to any daemon used
            for (Map.Entry<String, String> entry : getImplicitJvmSystemProperties().entrySet()) {
                String key = entry.getKey();
                String value = entry.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-NOT:  _replication_info = "replicate"
    // CHECK-NOT:  device = "/device:TPU:0"
    // CHECK:      tf_device.return
    
    
    // Test TPUReplicateMetadata ops `name` and `num_replicas` attributes are not
    // copied over to `tf_device.cluster`.
    // CHECK-LABEL: func @removed_metadata_attrs
    func.func @removed_metadata_attrs() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			return nil, fmt.Errorf("the server could not properly serve the CR schema") // validation should avoid this
    		}
    
    		if crd.Spec.PreserveUnknownFields == false {
    			// we don't own s completely, e.g. defaults are not deep-copied. So better make a copy here.
    			s = s.DeepCopy()
    
    			if err := structuraldefaulting.PruneDefaults(s); err != nil {
    				// This should never happen. If it does, it is a programming error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. tensorflow/c/kernels_test.cc

    };
    
    // Validates that the tensor has shape and type corresponding to
    // dims and dtype.
    void validate_tensor(TF_Tensor* tensor, int64_t* dims, int64_t num_dims,
                         TF_DataType dtype);
    
    // Copies data of length tensor_size_bytes from values to tensor.
    template <typename T>
    void set_tensor_data(TF_Tensor* tensor, T* values, size_t tensor_size_bytes,
                         TF_OpKernelContext* ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/mips/asm0.go

    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top