Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,892 for Option (0.33 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

                setupListCondition(cb, crawlingInfoPager);
            });
    
            // update pager
            BeanUtil.copyBeanToBean(crawlingInfoList, crawlingInfoPager, option -> option.include(Constants.PAGER_CONVERSION_RULE));
            crawlingInfoPager.setPageNumberList(
                    crawlingInfoList.pageRange(op -> op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger())).createPageNumberList());
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.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: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/init_test.go

    		{
    			name: "fail if mixedArguments are passed",
    			flags: map[string]string{
    				options.CfgPath:                   configFilePath,
    				options.APIServerAdvertiseAddress: "1.2.3.4",
    			},
    			expectError: true,
    		},
    
    		// Pre-flight errors:
    		{
    			name: "pre-flights errors from CLI args only",
    			flags: map[string]string{
    				options.IgnorePreflightErrors: "a,b",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/smb/SmbFileOutputStream.java

     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Lesser General Public
     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     * 
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:14:04 UTC 2021
    - 11.9K bytes
    - Viewed (0)
  7. istioctl/pkg/tag/generate_test.go

    	assertFunc(t, wh.Webhooks, defaultWh.Webhooks)
    }
    
    func TestGenerateOptions(t *testing.T) {
    	// Test generate option 'true', should not modify webhooks
    	testGenerateOption(t, true, func(t *testing.T, actual, expected []admitv1.MutatingWebhook) {
    		assert.Equal(t, actual, expected)
    	})
    
    	// Test generate option 'false', should modify webhooks
    	testGenerateOption(t, false, func(t *testing.T, actual, expected []admitv1.MutatingWebhook) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

        const absl::flat_hash_map<std::string, std::string> &function_aliases,
        absl::string_view calibration_data_dir) {
      const bool is_stablehlo = quantization_options.op_set() == OpSet::STABLEHLO;
      // Use StableHLO Quantizer option if opset is specified.
      if (is_stablehlo) {
        const QuantizationConfig quantization_config =
            GetQuantizationConfigForStaticRangePtq(quantization_options);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top