Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 692 for Option (0.13 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller.go

    	model.NoopAmbientIndexes
    	model.NetworkGatewaysHandler
    }
    
    type Option func(*Controller)
    
    func WithClusterID(clusterID cluster.ID) Option {
    	return func(o *Controller) {
    		o.clusterID = clusterID
    	}
    }
    
    func WithNetworkIDCb(cb func(endpointIP string, labels labels.Instance) network.ID) Option {
    	return func(o *Controller) {
    		o.networkIDCallback = cb
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        /**
         * Whether or not classes without source location should be instrumented. Defaults to {@code false}.
         *
         * This property is only taken into account if the used JaCoCo version supports this option (JaCoCo version >= 0.7.6)
         */
        @Input
        public boolean isIncludeNoLocationClasses() {
            return includeNoLocationClasses;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client.go

    	filtersByGVK map[config.GroupVersionKind]kubetypes.Filter
    }
    
    type Option struct {
    	Revision     string
    	DomainSuffix string
    	Identifier   string
    	FiltersByGVK map[config.GroupVersionKind]kubetypes.Filter
    }
    
    var _ model.ConfigStoreController = &Client{}
    
    func New(client kube.Client, opts Option) *Client {
    	schemas := collections.Pilot
    	if features.EnableGatewayAPI {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/validation/validation.go

    			}
    		default:
    			allErrors = append(allErrors, fmt.Errorf("invalid configuration: option %q specified for enforceNodeAllocatable (--enforce-node-allocatable). Valid options are %q, %q, %q, or %q",
    				val, kubetypes.NodeAllocatableEnforcementKey, kubetypes.SystemReservedEnforcementKey, kubetypes.KubeReservedEnforcementKey, kubetypes.NodeAllocatableNoneKey))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. pkg/config/analysis/msg/messages.yaml

        template: "This EnvoyFilter does not have a priority and has a relative patch operation set which can cause the EnvoyFilter not to be applied. Using the INSERT_FIRST of ADD option or setting the priority may help in ensuring the EnvoyFilter is applied correctly."
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

        skip_raise_cpu_ops_ = skip_raise_cpu_ops;
        ignore_inference_type_ = ignore_inference_type;
      }
    
     private:
      Option<bool> skip_raise_cpu_ops_{
          *this, "skip-raise-cpu-ops",
          llvm::cl::desc("Whether to cluster and raise CPU ops."),
          llvm::cl::init(false)};
    
      Option<bool> ignore_inference_type_{
          *this, "ignore-inference-type",
          llvm::cl::desc("Whether to ignore the inference type in clustering."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                tasks.register('doSomething', MyTask)
    
                class MyTask extends DefaultTask {
                    private String content = 'default content'
    
                    @Option(option = "content", description = "Message to print")
                    public void setContent(String content) {
                        this.content = content
                    }
    
                    @TaskAction
                    public void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/client_test.go

    				consts.BundleVersionAnnotation: consts.BundleVersion,
    			}
    		}
    		clienttest.MakeCRDWithAnnotations(t, fake, s.GroupVersionResource(), annotations)
    	}
    	stop := test.NewStop(t)
    	config := New(fake, Option{})
    	go config.Run(stop)
    	fake.RunAndWait(stop)
    	kube.WaitForCacheSync("test", stop, config.HasSynced)
    	return config, fake
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler_test.go

    		"Foo": defaultbinder.New,
    	}
    	cases := []struct {
    		name          string
    		opts          []Option
    		wantErr       string
    		wantProfiles  []string
    		wantExtenders []string
    	}{
    		{
    			name: "valid out-of-tree registry",
    			opts: []Option{
    				WithFrameworkOutOfTreeRegistry(validRegistry),
    				WithProfiles(
    					schedulerapi.KubeSchedulerProfile{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    			err := s.Encode(tc.in, w)
    			tc.assertOnError(t, err)
    			assertOnWriter(t)
    		})
    	}
    }
    
    func TestDecode(t *testing.T) {
    	for _, tc := range []struct {
    		name          string
    		options       []Option
    		data          []byte
    		gvk           *schema.GroupVersionKind
    		metaFactory   metaFactory
    		typer         runtime.ObjectTyper
    		creater       runtime.ObjectCreater
    		into          runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top