Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 615 for Lists (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/val.go

    // For objects, the expected type is map[string]any
    // For lists, the expected type is []any
    // For maps, the expected type is map[string]any
    // For anything else, it is converted via value.Value()
    //
    // It will return an error if the request type is a map but the key
    // is not a string.
    func convertField(value ref.Val) (any, error) {
    	// special handling for lists, where the elements are converted with Value() instead of ConvertToNative
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 21:55:08 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/daemon/AbstractDaemonCompiler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.compile.daemon;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.tasks.WorkResult;
    import org.gradle.api.tasks.compile.BaseForkOptions;
    import org.gradle.internal.UncheckedException;
    import org.gradle.language.base.internal.compile.CompileSpec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

    import com.google.common.collect.ImmutableList
    import spock.lang.Specification
    
    class PersistentListTest extends Specification {
    
        def "empty lists are the same"() {
            expect:
            PersistentList.of() == PersistentList.of()
        }
    
        def "lists with elements #elements are the same"() {
            expect:
            listOf(elements) == listOf(elements)
    
            where:
            elements << [["a"], ["a", "b"]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParser.java

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.daemon;
    
    import com.google.common.base.Splitter;
    import com.google.common.collect.Lists;
    import org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode;
    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    import org.gradle.launcher.daemon.configuration.DaemonParameters;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 09:22:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplier.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain.internal;
    
    import com.google.common.collect.Lists;
    import net.rubygrapefruit.platform.MissingRegistryEntryException;
    import net.rubygrapefruit.platform.WindowsRegistry;
    import org.gradle.internal.nativeintegration.NativeIntegrationUnavailableException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactResults.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.artifacts.ResolutionStrategy;
    import org.gradle.api.internal.artifacts.transform.ArtifactVariantSelector;
    
    import java.util.ArrayList;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/SortedLists.java

       *
       * <p>Equivalent to {@link #binarySearch(List, Object, Comparator, KeyPresentBehavior,
       * KeyAbsentBehavior)} using {@link Lists#transform(List, Function) Lists.transform(list,
       * keyFunction)}.
       */
      public static <E extends @Nullable Object, K extends @Nullable Object> int binarySearch(
          List<E> list,
          Function<? super E, K> keyFunction,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // represent type lists.  In particular, TypesN<T1, T2, ..., TN>
    // represents a type list with N types (T1, T2, ..., and TN) in it.
    // Except for Types0, every struct in the family has two member types:
    // Head for the first type in the list, and Tail for the rest of the
    // list.
    
    // The empty type list.
    struct Types0 {};
    
    // Type lists of length 1, 2, 3, and so on.
    
    template <typename T1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/InvalidMultipleVariantsFailureDescriber.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.describer;
    
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Lists;
    import org.gradle.api.attributes.Attribute;
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

          List<String> list = Lists.newArrayList(elements);
          list.add("zzz");
          return ImmutableSortedSet.copyOf(list).headSet("zzy");
        }
      }
    
      public static class ImmutableSortedSetTailsetGenerator extends TestStringSortedSetGenerator {
        @Override
        protected SortedSet<String> create(String[] elements) {
          List<String> list = Lists.newArrayList(elements);
          list.add("\0");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top