Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for Sub2 (0.12 sec)

  1. src/cmd/link/internal/loader/loader_test.go

    	addDummyObjSym(t, ldr, or, "type:uint8")
    	es1 := ldr.LookupOrCreateSym("outer", 0)
    	ldr.MakeSymbolUpdater(es1).SetSize(101)
    	es2 := ldr.LookupOrCreateSym("sub1", 0)
    	es3 := ldr.LookupOrCreateSym("sub2", 0)
    	es4 := ldr.LookupOrCreateSym("sub3", 0)
    	es5 := ldr.LookupOrCreateSym("sub4", 0)
    	es6 := ldr.LookupOrCreateSym("sub5", 0)
    
    	// Should not have an outer sym initially
    	if ldr.OuterSym(es1) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public void testGetSubtype_recursiveTypeBoundInSubtypeTranslatedAsIs() {
        class BaseWithTypeVar<T> {}
        class Outer<O> {
          class Sub<X> extends BaseWithTypeVar<List<X>> {}
    
          class Sub2<Y extends Sub2<Y>> extends BaseWithTypeVar<List<Y>> {}
        }
        ParameterizedType subtype =
            (ParameterizedType)
                new TypeToken<BaseWithTypeVar<List<?>>>() {}.getSubtype(Outer.Sub.class).getType();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public void testGetSubtype_recursiveTypeBoundInSubtypeTranslatedAsIs() {
        class BaseWithTypeVar<T> {}
        class Outer<O> {
          class Sub<X> extends BaseWithTypeVar<List<X>> {}
    
          class Sub2<Y extends Sub2<Y>> extends BaseWithTypeVar<List<Y>> {}
        }
        ParameterizedType subtype =
            (ParameterizedType)
                new TypeToken<BaseWithTypeVar<List<?>>>() {}.getSubtype(Outer.Sub.class).getType();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. docs/config/README.md

    export MINIO_DOMAIN=mydomain.com
    minio server /data
    ```
    
    For advanced use cases `MINIO_DOMAIN` environment variable supports multiple-domains with comma separated values.
    
    ```sh
    export MINIO_DOMAIN=sub1.mydomain.com,sub2.mydomain.com
    minio server /data
    ```
    
    ## Explore Further
    
    * [MinIO Quickstart Guide](https://min.io/docs/minio/linux/index.html#quickstart-for-linux)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    We will walk you through the process of diagnosing a cache miss.
    Let's say we have build `A` and build `B` and we expected all the test tasks for a sub-project `sub1` to be cached in build `B` since only a unit test for another sub-project `sub2` changed.
    Instead, all the tests for the sub-project have been executed.
    Since we have the cascading effect when we have cache misses, we need to find the task which caused the caching chain to fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. tests/query_test.go

    	}); result.Error != nil || result.RowsAffected != 5 {
    		t.Errorf("Failed to batch find, got error %v, rows affected: %v", result.Error, result.RowsAffected)
    	}
    
    	var sub2 []User
    	// only offset
    	if result := DB.Offset(3).Where("name = ?", users[0].Name).FindInBatches(&sub2, 2, func(tx *gorm.DB, batch int) error {
    		return nil
    	}); result.Error != nil || result.RowsAffected != 7 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/PublicationsCrossVersionSpec.groovy

            pub1 != null
            pub1.id.name == "test-module"
            pub1.id.version == "1.1"
    
            and:
            def pub2 = publications.publications.find { it.id.group == "test.groupId" }
            pub2 != null
            pub2.id.name == "test-artifactId"
            pub2.id.version == "1.2"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

        }
    
        def "prefers coordinates of publication from dependent project where all publications share coordinates"() {
            def publication = pub('mock', "pub-group", "pub-name", "pub-version")
            def publication2 = pub('pub2', "pub-group", "pub-name", "pub-version")
    
            when:
            registry.register(project.identityPath, publication, publication2)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/abt/avlint32_test.go

    		// B is larger, union favors reuse from larger when function is "first"
    		t.Errorf("Failed aliasing/reuse check, A/aub1")
    	}
    	aub2 := A.Union(B, second)
    	assert(t, AUB, aub2, "aub2")
    	if B.Find(3) != aub2.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, B/aub2")
    	}
    	aub3 := B.Union(A, first)
    	assert(t, AUB, aub3, "aub3")
    	if B.Find(3) != aub3.Find(3) {
    		t.Errorf("Failed aliasing/reuse check, B/aub3")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/const0.go

    	const _ interface /* ERROR "invalid constant type" */ {} = 0
    	for i := 0; i < 10; i++ {} // don't crash with non-nil iota here
    }
    
    // untyped constants
    const (
    	// boolean values
    	ub0 = false
    	ub1 = true
    	ub2 = 2 < 1
    	ub3 = ui1 == uf1
    	ub4 = true == 0 /* ERROR "mismatched types untyped bool and untyped int" */
    
    	// integer values
    	ui0 = 0
    	ui1 = 1
    	ui2 = 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top