Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for copyFrom (0.42 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            def fileName = clazz.name.replace('.', '/') + ".class"
            def dest = destDir.file(fileName)
            def classFile = clazz.classLoader.getResource(fileName)
            dest.copyFrom(classFile)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

                  ' for representative samples.'
              )
    
            sample = _RepresentativeDataSample()
            for input_name, input_value in repr_sample.items():
              sample.tensor_proto_inputs[input_name].CopyFrom(
                  tensor_util.make_tensor_proto(input_value)
              )
    
            writer.write(sample.SerializeToString())
    
        logging.info(
            'Saved representative dataset for signature def: %s to: %s',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        /**
         * Copies the options from the source options into the current one.
         * @since 8.0
         */
        public void copyFrom(TestNGOptions other) {
            this.outputDirectory = other.outputDirectory;
            replace(this.includeGroups, other.includeGroups);
            replace(this.excludeGroups, other.excludeGroups);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

            }
        }
    
        def "deduplicated keys are chosen by subkeys amount"() {
            given:
            javaLibrary()
            file("gradle/verification-keyring.keys").copyFrom(
                this.class.getResource("/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest/duplicated.keys")
            )
    
            when:
            writeVerificationMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top