Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 353 for Lists (0.3 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.ArrayListMultimap;
    import com.google.common.collect.LinkedHashMultiset;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Maps;
    import com.google.common.collect.Multimap;
    import com.google.common.collect.Multiset;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Collections;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. doc/next/3-tools.md

    The new `go` `telemetry` command can be used to view and configure the telemetry collection
    mode. Without arguments, it displays the current mode. With `local`, `on`, or `off`, it sets
    the collection mode. `go` `env` now lists two values: the `GOTELEMETRY` value, which
    contains the telemetry collection mode, and the `GOTELEMETRYDIR` value setting which contains
    the directory telemetry data and configuration are written to.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    type Comments struct {
    	Before []Comment // whole-line comments before this expression
    	Suffix []Comment // end-of-line comments after this expression
    
    	// For top-level expressions only, After lists whole-line
    	// comments following the expression.
    	After []Comment
    }
    
    // Comment returns the receiver. This isn't useful by itself, but
    // a [Comments] struct is embedded into all the expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.work;
    
    import com.google.common.base.Supplier;
    import com.google.common.collect.Lists;
    import org.gradle.api.specs.Spec;
    import org.gradle.internal.Factories;
    import org.gradle.internal.Factory;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.concurrent.WorkerLimits;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	AggregatedDiscoveryEndpoint featuregate.Feature = "AggregatedDiscoveryEndpoint"
    
    	// owner: @smarterclayton
    	// alpha: v1.8
    	// beta: v1.9
    	// stable: 1.29
    	//
    	// Allow API clients to retrieve resource lists in chunks rather than
    	// all at once.
    	APIListChunking featuregate.Feature = "APIListChunking"
    
    	// owner: @MikeSpreitzer @yue9944882
    	// alpha: v1.18
    	// beta: v1.20
    	// stable: 1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.builder;
    
    import com.google.common.collect.Lists;
    import com.google.common.collect.Sets;
    import org.gradle.api.artifacts.ModuleIdentifier;
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Sets.java

       * iterated are the individual lists created, and these are not retained after iteration.
       *
       * @param sets the sets to choose elements from, in the order that the elements chosen from those
       *     sets should appear in the resulting lists
       * @param <B> any common base class shared by all axes (often just {@link Object})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

    import com.google.common.collect.ArrayListMultimap;
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Lists;
    import com.google.common.collect.Multimap;
    import com.google.common.collect.Sets;
    import it.unimi.dsi.fastutil.ints.IntSet;
    import it.unimi.dsi.fastutil.ints.IntSets;
    import org.apache.commons.lang.StringUtils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    				// should not be set
    				if len(filteredSubMap) != 0 {
    					filteredMap[key] = filteredSubMap
    				}
    
    			case []interface{}, string, float64, bool, int64, nil:
    				// Lists are always replaced in Json, no need to check each entry in the list.
    				if !keepNull {
    					filteredMap[key] = val
    				}
    			default:
    				return nil, fmt.Errorf("unknown type: %v", reflect.TypeOf(typedVal))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

        }
    
        public static <T> List<T> filter(List<? extends T> list, Spec<? super T> filter) {
            return filter(list, Lists.<T>newArrayListWithCapacity(list.size()), filter);
        }
    
        public static <T> List<T> filter(T[] array, Spec<? super T> filter) {
            return filter(Arrays.asList(array), Lists.<T>newArrayListWithCapacity(array.length), filter);
        }
    
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top