Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 208 for provider3 (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In general, the `groovy-base` plugin should be applied whenever working with Groovy language tasks.
    
    ==== Provider.filter
    
    The type of the argument passed to `Provider.filter` is changed from `Predicate` to `Spec` for a more consistent API.
    This change should not affect anyone using `Provider.filter` with a lambda expression.
    However, this might affect plugin authors if they don't use SAM conversions to create a lambda.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	logger klog.Logger
    
    	// nfAcctCounters can be used to determine if a counter exist in the nfacct subsystem.
    	nfAcctCounters map[string]bool
    }
    
    // Proxier implements proxy.Provider
    var _ proxy.Provider = &Proxier{}
    
    // NewProxier returns a new Proxier given an iptables Interface instance.
    // Because of the iptables logic, it is assumed that there is only a single Proxier active on a machine.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/Futures.java

       * failed future if any of the items fails.
       *
       * <p>Canceling this future will attempt to cancel all the component futures, and if any of the
       * provided futures fails or is canceled, this one is, too.
       *
       * @param futures futures to combine
       * @return a future that provides a list of the results of the component futures
       * @since 10.0
       */
      @SafeVarargs
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    		return 17
    	}
    	if p == v1.ProtocolSCTP {
    		return 132
    	}
    	return 0
    }
    
    type closeable interface {
    	Close() error
    }
    
    // Proxier implements proxy.Provider
    var _ proxy.Provider = &Proxier{}
    
    // NewProxier returns a new Proxier
    func NewProxier(
    	ipFamily v1.IPFamily,
    	syncPeriod time.Duration,
    	minSyncPeriod time.Duration,
    	hostname string,
    	nodeIP net.IP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    			if listenerOpts.service.Attributes.ServiceRegistry == provider.External && listenerOpts.proxy.IsIPv6() &&
    				svcListenAddress == constants.UnspecifiedIP {
    				svcListenAddress = constants.UnspecifiedIPv6
    			}
    
    			// For dualstack proxies we need to add the unspecifed ipv6 address to the list of extra listen addresses
    			if listenerOpts.service.Attributes.ServiceRegistry == provider.External && listenerOpts.proxy.IsDualStack() &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. cmd/iam.go

    		// There are multiple role ARNs for parent user only when there
    		// are multiple openid provider configurations with the same ID
    		// provider. We lookup the provider associated with some one of
    		// the roleARNs to check if the user still exists. If they don't
    		// we can safely remove credentials for this parent user
    		// associated with any of the provider configurations.
    		//
    		// If there is no roleARN mapped to the user, the user may be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    						}
    
    						t.Run(name, func(t *testing.T) {
    							t.Parallel()
    							// Test creating a policy with a cluster or namesapce-scoped param
    							// and binding with the provided configuration. Test will ensure
    							// that the provided configuration is capable of matching
    							// params as expected, and not matching params when not expected.
    							// Also ensures the NotFound setting works as expected with this particular
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. pkg/apis/certificates/validation/validation_test.go

    					Name: "foo",
    				},
    				Spec: capi.ClusterTrustBundleSpec{},
    			},
    			wantErrors: field.ErrorList{
    				field.Invalid(field.NewPath("spec", "trustBundle"), "<value omitted>", "at least one trust anchor must be provided"),
    			},
    		}, {
    			description: "invalid, no trust anchors",
    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "k8s.io:foo:abc",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedMap.java

        implements NavigableMap<K, V> {
      /**
       * Returns a {@link Collector} that accumulates elements into an {@code ImmutableSortedMap} whose
       * keys and values are the result of applying the provided mapping functions to the input
       * elements. The generated map is sorted by the specified comparator.
       *
       * <p>If the mapped keys contain duplicates (according to the specified comparator), an {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		{Event: framework.ClusterEvent{Resource: framework.ResourceClaim, ActionType: framework.Add | framework.Update}, QueueingHintFn: pl.isSchedulableAfterClaimChange},
    		// When a driver has provided additional information, a pod waiting for that information
    		// may be schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top