Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for capsule (0.19 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertAssignable(
            TypeToken.of(new TypeCapture<L>() {}.capture()),
            TypeToken.of(new TypeCapture<L>() {}.capture()));
        assertNotAssignable(
            TypeToken.of(new TypeCapture<R>() {}.capture()),
            TypeToken.of(new TypeCapture<L>() {}.capture()));
        assertAssignable(TypeToken.of(new TypeCapture<L>() {}.capture()), new TypeToken<List<R>>() {});
      }
    
      public void testisSupertypeOf_resolved() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertAssignable(
            TypeToken.of(new TypeCapture<L>() {}.capture()),
            TypeToken.of(new TypeCapture<L>() {}.capture()));
        assertNotAssignable(
            TypeToken.of(new TypeCapture<R>() {}.capture()),
            TypeToken.of(new TypeCapture<L>() {}.capture()));
        assertAssignable(TypeToken.of(new TypeCapture<L>() {}.capture()), new TypeToken<List<R>>() {});
      }
    
      public void testisSupertypeOf_resolved() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | A task input or output property or a script variable to capture the result of using `project.rootDir` to calculate the actual parameter.
    
    | `project.projectDir`
    | A task input or output property or a script variable to capture the result of using `project.projectDir` to calculate the actual parameter.
    
    | `project.buildDir`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    				// for older proxies, it defaults to iptables redirect.  If the
    				// listener's capture mode specifies NONE, then the proxy wants
    				// this listener alone to be on a physical port. If the
    				// listener's capture mode is default, then its same as
    				// iptables i.e. BindToPort is false.
    				bind.bindToPort = true
    			} else if strings.HasPrefix(egressListener.IstioListener.Bind, model.UnixAddressPrefix) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/TypeToken.java

     *
     * <p>There are three ways to get a {@code TypeToken} instance:
     *
     * <ul>
     *   <li>Wrap a {@code Type} obtained via reflection. For example: {@code
     *       TypeToken.of(method.getGenericReturnType())}.
     *   <li>Capture a generic type with a (usually anonymous) subclass. For example:
     *       <pre>{@code
     * new TypeToken<List<String>>() {}
     * }</pre>
     *       <p>Note that it's critical that the actual type argument is carried by a subclass. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    				serviceNoLocalEndpointsTotalExternal++
    			}
    		}
    
    		filterRules := proxier.filterRules
    		natChains := proxier.natChains
    		natRules := proxier.natRules
    
    		// Capture the clusterIP.
    		if hasInternalEndpoints {
    			natRules.Write(
    				"-A", string(kubeServicesChain),
    				"-m", "comment", "--comment", fmt.Sprintf(`"%s cluster IP"`, svcPortNameString),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeToken.java

     *
     * <p>There are three ways to get a {@code TypeToken} instance:
     *
     * <ul>
     *   <li>Wrap a {@code Type} obtained via reflection. For example: {@code
     *       TypeToken.of(method.getGenericReturnType())}.
     *   <li>Capture a generic type with a (usually anonymous) subclass. For example:
     *       <pre>{@code
     * new TypeToken<List<String>>() {}
     * }</pre>
     *       <p>Note that it's critical that the actual type argument is carried by a subclass. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    			}
    			return "", &Error{ErrInvalidNamedCapture, s}
    		}
    
    		capture := t[:end+1]        // "(?P<name>" or "(?<name>"
    		name := t[exprStartPos:end] // "name"
    		if err = checkUTF8(name); err != nil {
    			return "", err
    		}
    		if !isValidCaptureName(name) {
    			return "", &Error{ErrInvalidNamedCapture, capture}
    		}
    
    		// Like ordinary capture, but named.
    		p.numCap++
    		re := p.op(opLeftParen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    				// the cluster will be dropped, but traffic from inside
    				// the cluster may still be accepted.
    				externalTrafficFilterVerdict = "drop"
    				serviceNoLocalEndpointsTotalExternal++
    			}
    		}
    
    		// Capture the clusterIP.
    		tx.Add(&knftables.Element{
    			Set: clusterIPsSet,
    			Key: []string{svcInfo.ClusterIP().String()},
    		})
    		if hasInternalEndpoints {
    			tx.Add(&knftables.Element{
    				Map: serviceIPsMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The mode defines the action the controller will take when a pod is detected as broken.
      // If labelPods is true, the controller will label all broken pods with <brokenPodLabelKey>=<brokenPodLabelValue>.
      // This is only capable of identifying broken pods; the user is responsible for fixing them (generally, by deleting them).
      // Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top