Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for gmap1 (0.11 sec)

  1. src/internal/trace/summary.go

    	// (starting from goid).
    	gmap := make(map[GoID]struct{})
    	gmap[goid] = struct{}{}
    	for i := 0; i < 2; i++ {
    		// Copy the map.
    		gmap1 := make(map[GoID]struct{})
    		for g := range gmap {
    			gmap1[g] = struct{}{}
    		}
    		for _, edge := range unblockEdges {
    			if _, ok := gmap[edge.operand]; ok {
    				gmap1[edge.operator] = struct{}{}
    			}
    		}
    		gmap = gmap1
    	}
    	return gmap
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/map1.go

    Robert Griesemer <******@****.***> 1662082688 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. test/map1.go

    Robert Griesemer <******@****.***> 1607975635 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 20:13:36 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  4. src/runtime/pprof/proto_test.go

    		}
    		addr1 = mappings[0].Start
    		map1 = mappings[0]
    		addr2 = mappings[1].Start
    		map2 = mappings[1]
    	case "windows", "darwin", "ios":
    		addr1 = uint64(abi.FuncPCABIInternal(f1))
    		addr2 = uint64(abi.FuncPCABIInternal(f2))
    
    		start, end, exe, buildID, err := readMainModuleMapping()
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		map1 = &profile.Mapping{
    			ID:           1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/runtime/pprof/protomem_test.go

    			},
    			NumLabel: map[string][]int64{"bytes": {512 * 1024}},
    		},
    		{
    			Value: []int64{1, 829411, 0, 0},
    			Location: []*profile.Location{
    				{ID: 5, Mapping: map1, Address: addr1 + 1},
    				{ID: 6, Mapping: map1, Address: addr1 + 2},
    				{ID: 7, Mapping: map2, Address: addr2 + 3},
    			},
    			NumLabel: map[string][]int64{"bytes": {512 * 1024}},
    		},
    	}
    	for _, tc := range []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestTask.groovy

    class TestTask extends ConventionTask  {
        @Internal
        TestTask self
        @Internal
        String customProp
        @Internal
        List list1
        @Internal
        List list2
        @Internal
        Map map1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 10:58:32 UTC 2023
    - 922 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

        }
    
        def "creates snapshot for map from candidate"() {
            def map1 = [:]
            map1.put(new Bean(prop: "value"), new Bean(prop: "value"))
            def map2 = [:]
            map2.put(new Bean(prop: "value"), new Bean(prop: "value2"))
            def map3 = [:]
            map3.putAll(map1)
            map3.put(new Bean(prop: "value2"), new Bean(prop: "value2"))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ConventionAwareHelperTest.java

        }
    
        @Test public void usesConventionValueForEmptyMap() {
            conventionAware.map("map1", new Callable<Object>() {
                public Object call() {
                    return toMap("a", "b");
                }
            });
            assertThat(conventionAware.getConventionValue(emptyMap(), "map1", false), equalTo((Object) toMap("a", "b")));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. src/mdo/java/ImmutableCollections.java

                throw uoe();
            }
        }
    
        private static class Map1<K, V> extends AbstractImmutableMap<K, V> {
            private final Entry<K, V> entry;
    
            private Map1(K key, V value) {
                this.entry = new SimpleImmutableEntry<>(key, value);
            }
    
            @Override
            public Set<Entry<K, V>> entrySet() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/ImmutableCollections.java

                throw uoe();
            }
        }
    
        private static class Map1<K, V> extends AbstractImmutableMap<K, V> {
            private final Entry<K, V> entry;
    
            private Map1(K key, V value) {
                this.entry = new SimpleImmutableEntry<>(key, value);
            }
    
            @Override
            public Set<Entry<K, V>> entrySet() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top