Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for withFts (0.28 sec)

  1. pkg/scheduler/framework/runtime/registry.go

    // them when the caller expects the older PluginFactory method.
    func FactoryAdapter(fts plfeature.Features, withFts PluginFactoryWithFts) PluginFactory {
    	return func(ctx context.Context, plArgs runtime.Object, fh framework.Handle) (framework.Plugin, error) {
    		return withFts(ctx, plArgs, fh, fts)
    	}
    }
    
    // DecodeInto decodes configuration whose type is *runtime.Unknown to the interface into.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/hsts.go

    limitations under the License.
    */
    
    package filters
    
    import (
    	"net/http"
    	"strings"
    )
    
    // WithHSTS is a simple HSTS implementation that wraps an http Handler.
    // If hstsDirectives is empty or nil, no HSTS support is installed.
    func WithHSTS(handler http.Handler, hstsDirectives []string) http.Handler {
    	if len(hstsDirectives) == 0 {
    		return handler
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 12 08:42:53 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/retry/retry_test.go

    	testCases := []struct {
    		name       string
    		route      *networking.HTTPRoute
    		assertFunc func(g *WithT, policy *envoyroute.RetryPolicy)
    	}{
    		{
    			name: "TestNilRetryShouldReturnDefault",
    			// Create a route where no retry policy has been explicitly set.
    			route: &networking.HTTPRoute{},
    			assertFunc: func(g *WithT, policy *envoyroute.RetryPolicy) {
    				g.Expect(policy).To(Not(BeNil()))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/dashboard.libsonnet

    {
      new(name):
        g.dashboard.new(name)
        + g.dashboard.graphTooltip.withSharedCrosshair()
        + g.dashboard.withRefresh('15s')
        + g.dashboard.time.withFrom('now-30m')
        + g.dashboard.time.withTo('now')
        + g.dashboard.withVariables([variables.datasource]),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 354 bytes
    - Viewed (0)
  5. operator/cmd/mesh/test-util_test.go

    func mustGetService(g *WithT, objs *ObjectSet, name string) *object.K8sObject {
    	obj := objs.kind(name2.ServiceStr).nameEquals(name)
    	g.Expect(obj).Should(Not(BeNil()))
    	return obj
    }
    
    // mustGetDeployment returns the deployment with the given name or fails if it's not found in objs.
    func mustGetDeployment(g *WithT, objs *ObjectSet, deploymentName string) *object.K8sObject {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/jvm/component/internal/JvmSoftwareComponentInternal.java

     * we do not want to extend that interface here, as it is slated for removal.
     */
    public interface JvmSoftwareComponentInternal extends SoftwareComponent {
    
        // TODO: These with* names are not ideally named. Traditionally, "withers" create a new
        // instance with the value changed, but these mutate the component. However, other names
        // like like "enableJavadocJar" or "addJavadocJar" are also not great since their names
        // are not declarative.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumesource.go

    	b.Glusterfs = value
    	return b
    }
    
    // WithNFS sets the NFS field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the NFS field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 13.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    	b.StdinOnce = &value
    	return b
    }
    
    // WithTTY sets the TTY field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TTY field is set to the value of the last call.
    func (b *EphemeralContainerApplyConfiguration) WithTTY(value bool) *EphemeralContainerApplyConfiguration {
    	b.TTY = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    	b.StdinOnce = &value
    	return b
    }
    
    // WithTTY sets the TTY field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TTY field is set to the value of the last call.
    func (b *ContainerApplyConfiguration) WithTTY(value bool) *ContainerApplyConfiguration {
    	b.TTY = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainercommon.go

    	b.StdinOnce = &value
    	return b
    }
    
    // WithTTY sets the TTY field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the TTY field is set to the value of the last call.
    func (b *EphemeralContainerCommonApplyConfiguration) WithTTY(value bool) *EphemeralContainerCommonApplyConfiguration {
    	b.TTY = &value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top