Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for conjunction (0.16 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/RenderingUtils.java

    public abstract class RenderingUtils {
        public static String oxfordListOf(Collection<String> values, String conjunction) {
            return values.stream()
                .sorted()
                .map(s -> "'" + s + "'")
                .collect(oxfordJoin(conjunction));
        }
    
        public static Collector<? super String, ?, String> oxfordJoin(String conjunction) {
            return Collectors.collectingAndThen(Collectors.toList(), stringList -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. cluster/addons/cluster-loadbalancing/glbc/README.md

    # GCE Load-Balancer Controller (GLBC) Cluster Addon
    
    This cluster addon is composed of a 404 default backend service and deployment.
    On GCE, this 404 service is used in conjunction with the
    [Ingress-GCE](https://github.com/kubernetes/ingress-gce) controller.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 18 21:17:01 UTC 2019
    - 309 bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheStats.java

       * This is usually incremented in conjunction with {@link #missCount}, though {@code missCount} is
       * also incremented when an exception is encountered during cache loading (see {@link
       * #loadExceptionCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  5. releasenotes/notes/27696.yaml

    kind: feature
    area: traffic-management
    issue:
      - 27696
    
    releaseNotes:
    - |
      **Added** `holdApplicationUntilProxyStarts` can now be set in ProxyConfig, 
      allowing it to be set at the pod level. Should not be used in conjunction with
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 16 04:08:53 UTC 2020
    - 342 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

        }
    
        val equality by debug {
            comparison * zeroOrMore(equalityOperator * comparison)
        }
    
        val conjunction by debug {
            equality * zeroOrMore(token(ANDAND) * equality)
        }
    
        val disjunction =
            conjunction * zeroOrMore(token(OROR) * conjunction)
    
    
        val definitelyNonNullableType =
            (userType + parenthesizedUserType) * token(MUL) * (userType + parenthesizedUserType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. releasenotes/notes/helm_chart_pilot_extraargsvolumes

    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Pilot Helm charts for configuring additional container arguments, volumeMounts, and volumes. Can be used in conjunction with cert-manager istio-csr.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 15:25:03 UTC 2023
    - 430 bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/doc.go

    // We currently support several kinds of IPAM allocators (these are denoted by
    // the CIDRAllocatorType):
    //   - RangeAllocator is an allocator that assigns PodCIDRs to nodes and works
    //     in conjunction with the RouteController to configure the network to get
    //     connectivity.
    //   - CloudAllocator is an allocator that synchronizes PodCIDRs from IP
    //     ranges assignments from the underlying cloud platform.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. cmd/xl-storage_windows_test.go

    		{`/p/q/r/s/t`, true},
    	}
    	dir := t.TempDir()
    
    	// Instantiate posix object to manage a disk
    	fs, err := newLocalXLStorage(dir)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Create volume to use in conjunction with other StorageAPI's file API(s)
    	err = fs.MakeVol(context.Background(), "voldir")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	for i, test := range testCases {
    		t.Run(fmt.Sprint(i), func(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 29 06:35:16 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/UnmodifiableIterator.java

    import java.util.Iterator;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An iterator that does not support {@link #remove}.
     *
     * <p>{@code UnmodifiableIterator} is used primarily in conjunction with implementations of {@link
     * ImmutableCollection}, such as {@link ImmutableList}. You can, however, convert an existing
     * iterator to an {@code UnmodifiableIterator} using {@link Iterators#unmodifiableIterator}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top