Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 212 for typemap (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/sets/int.go

    	return Int(New[int](items...))
    }
    
    // IntKeySet creates a Int from a keys of a map[int](? extends interface{}).
    // If the value passed in is not actually a map, this will panic.
    func IntKeySet[T any](theMap map[int]T) Int {
    	return Int(KeySet(theMap))
    }
    
    // Insert adds items to the set.
    func (s Int) Insert(items ...int) Int {
    	return Int(cast(s).Insert(items...))
    }
    
    // Delete removes all items from the set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.nio.file.Files;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.TreeMap;
    import java.util.regex.MatchResult;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    /**
     * Checks adoc files for broken links.
     */
    @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 05 07:57:56 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/StructSchemaExtractionStrategySupport.java

    import org.gradle.model.internal.type.ModelType;
    
    import java.lang.reflect.Method;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.TreeMap;
    
    public abstract class StructSchemaExtractionStrategySupport implements ModelSchemaExtractionStrategy {
    
        private final ModelSchemaAspectExtractor aspectExtractor;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/expand_calls.go

    						panic(fmt.Errorf("Saw double use of wide SelectN %s operand of Store %s",
    							a.LongString(), v.LongString()))
    					}
    					x.wideSelects[a] = v
    				}
    
    			case OpSelectN:
    				if v.Type == types.TypeMem {
    					// rewrite the mem selector in place
    					call := v.Args[0]
    					aux := call.Aux.(*AuxCall)
    					mem := x.memForCall[call.ID]
    					if mem == nil {
    						v.AuxInt = int64(aux.abiInfo.OutRegistersUsed())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestScenarioDefinition.groovy

                /**
                 * testProject : largeJavaMultiProject
                 * coverage : {"test":["linux","windows"]}
                 */
                String testProject
    
                String comment
    
                TreeMap<String, List<String>> coverage
            }
        }
    
        void writeTo(File file) {
            sort()
            new ObjectMapper().writerWithDefaultPrettyPrinter().writeValue(file, this)
            file.append('\n')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/sets/set.go

    }
    
    // KeySet creates a Set from a keys of a map[comparable](? extends interface{}).
    // If the value passed in is not actually a map, this will panic.
    func KeySet[T comparable, V any](theMap map[T]V) Set[T] {
    	ret := make(Set[T], len(theMap))
    	for keyValue := range theMap {
    		ret.Insert(keyValue)
    	}
    	return ret
    }
    
    // Insert adds items to the set.
    func (s Set[T]) Insert(items ...T) Set[T] {
    	for _, item := range items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:51:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/AllTestResults.java

    import java.util.*;
    
    /**
     * The model for the test report.
     */
    public class AllTestResults extends CompositeTestResults {
        private final Map<String, PackageTestResults> packages = new TreeMap<String, PackageTestResults>();
    
        public AllTestResults() {
            super(null);
        }
    
        @Override
        public String getTitle() {
            return "Test Summary";
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MultimapBuilder.java

    import java.util.EnumMap;
    import java.util.EnumSet;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.SortedSet;
    import java.util.TreeMap;
    import java.util.TreeSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An immutable builder for {@link Multimap} instances, letting you independently select the desired
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MultimapBuilder.java

    import java.util.EnumMap;
    import java.util.EnumSet;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.SortedSet;
    import java.util.TreeMap;
    import java.util.TreeSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An immutable builder for {@link Multimap} instances, letting you independently select the desired
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteMIPS.go

    		v0.AuxInt = int32ToAuxInt(0)
    		v1 := b.NewValue0(v.Pos, OpMIPSMOVBstore, types.TypeMem)
    		v1.AuxInt = int32ToAuxInt(2)
    		v2 := b.NewValue0(v.Pos, OpMIPSMOVBstore, types.TypeMem)
    		v2.AuxInt = int32ToAuxInt(1)
    		v3 := b.NewValue0(v.Pos, OpMIPSMOVBstore, types.TypeMem)
    		v3.AuxInt = int32ToAuxInt(0)
    		v3.AddArg3(ptr, v0, mem)
    		v2.AddArg3(ptr, v0, v3)
    		v1.AddArg3(ptr, v0, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
Back to top