Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 672 for subobject (0.13 sec)

  1. test/tinyfin.go

    	for {
    		select {
    		case <-timeout:
    			println("timeout,", count, "finalized so far")
    			panic("not all finalizers are called")
    		case x := <-finalized:
    			// Check that p points to the correct subobject of the tiny allocation.
    			// It's a bit tricky, because we can't capture another variable
    			// with the expected value (it would be combined as well).
    			if x < 0 || x >= N {
    				println("got", x)
    				panic("corrupted")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 18:57:18 UTC 2015
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        a Python `tf.Module` with an exported function "foo" will result in an MLIR
        module where the function has an exported name "foo". If the `tf.Module`
        contains a subobject "self.bar" which itself has an exported function
        "baz", then the function will have an exported name "bar.baz".
        If an object in the object graph is reachable via multiple paths
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. internal/s3select/sql/parser_test.go

    		participle.CaseInsensitive("Timeword"),
    	)
    
    	j := JSONPath{}
    	cases := []string{
    		"S3Object",
    		"S3Object.id",
    		"S3Object.book.title",
    		"S3Object.id[1]",
    		"S3Object.id['abc']",
    		"S3Object.id['ab']",
    		"S3Object.words.*.id",
    		"S3Object.words.name[*].val",
    		"S3Object.words.name[*].val[*]",
    		"S3Object.words.name[*].val.*",
    	}
    	for i, tc := range cases {
    		err := p.ParseString(tc, &j)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3Resource.java

    public class S3Resource implements ExternalResourceReadResponse {
    
        private final S3Object s3Object;
        private final URI uri;
    
        public S3Resource(S3Object s3Object, URI uri) {
            this.s3Object = s3Object;
            this.uri = uri;
        }
    
        @Override
        public InputStream openStream() throws IOException {
            return s3Object.getObjectContent();
        }
    
        public URI getURI() {
            return uri;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ResourceConnectorTest.groovy

                getObjectMetadata() >> Mock(ObjectMetadata) {
                    getLastModified() >> new Date()
                }
            }
            S3Client s3Client = Mock {
                1 * getMetaData(uri) >> s3object
            }
    
            when:
            new S3ResourceConnector(s3Client).getMetaData(name, false)
    
            then:
            1 * s3object.close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ResourceConnector.java

            LOGGER.debug("Attempting to get resource: {}", location);
            S3Object s3Object = s3Client.getResource(location.getUri());
            if (s3Object == null) {
                return null;
            }
            return new S3Resource(s3Object, location.getUri());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. cmd/benchmark-utils_test.go

    	md5hex := getMD5Hash(textData)
    	sha256hex := ""
    
    	// benchmark utility which helps obtain number of allocations and bytes allocated per ops.
    	b.ReportAllocs()
    	// the actual benchmark for PutObject starts here. Reset the benchmark timer.
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		// insert the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 23 15:46:00 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummaryTest.kt

            val subject = ConfigurationCacheProblemsSummary(maxCollectedProblems = 2)
            assertTrue(
                "1st problem",
                subject.onProblem(buildLogicProblem("build.gradle", "failure"), ProblemSeverity.Failure)
            )
            assertTrue(
                "2nd problem (same message as 1st but different location)",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteIntegrationTest.groovy

            keep = orig.createFile('keep')
    
            subject = testDirectory.createDir('test/subject')
            remove = subject.createFile("remove")
            link = subject.file('link')
            createSymbolicLink(link, orig)
    
            assert orig.isDirectory()
            assert orig.exists()
            assert subject.isDirectory()
            assert subject.exists()
            assert keep.exists()
            assert remove.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 20 17:44:25 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/MutationGuardsTest.groovy

    import spock.lang.Specification
    import spock.lang.Subject
    
    @Subject(MutationGuards)
    class MutationGuardsTest extends Specification {
        def "can get mutation guard of guard aware instance"() {
            given:
            def subject = Mock(WithMutationGuard)
    
            when:
            MutationGuards.of(subject)
    
            then:
            1 * subject.getMutationGuard()
            0 * subject._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 31 12:53:33 UTC 2018
    - 1.4K bytes
    - Viewed (0)
Back to top