Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 6,414 for optionA (0.23 sec)

  1. src/internal/cpu/cpu_x86.go

    		options = append(options,
    			option{Name: "popcnt", Feature: &X86.HasPOPCNT},
    			option{Name: "sse3", Feature: &X86.HasSSE3},
    			option{Name: "sse41", Feature: &X86.HasSSE41},
    			option{Name: "sse42", Feature: &X86.HasSSE42},
    			option{Name: "ssse3", Feature: &X86.HasSSSE3})
    	}
    	if level < 3 {
    		// These options are required at level 3. At lower levels
    		// they can be turned off.
    		options = append(options,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/commandline/CommandLineTaskConfigurerSpec.groovy

            public void setSomeFlag2(Boolean someFlag2) {
                this.someFlag2 = someFlag2
            }
    
            @Option(option = "notUsed", description = "Not used.")
            public void setNotUsed(boolean notUsed) {
                throw new RuntimeException("Not used");
            }
    
            TestEnum anEnum
    
            @Option(option = "someEnum", description = "some enum value.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 09 09:06:36 UTC 2020
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                        + numOfThreads + "]";
            }
    
        }
    
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
        }
    
        public static void main(final String[] args) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    type Profile struct {
    	options
    }
    
    func apply(o *options, opts []Option) {
    	for _, f := range opts {
    		f(o)
    	}
    }
    
    // New creates a new Profile.
    //
    // With no options, the returned Profile is the most permissive and equals the
    // Punycode Profile. Options can be passed to further restrict the Profile. The
    // MapForLookup and ValidateForRegistration options set a collection of options,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/CommandLineParserTest.groovy

            parser.option('a-option-other').hasDescription('this is option --a-option-other')
            parser.option('no-a-option').hasDescription('Disables option --a-option')
            parser.option('c-option')
            parser.option('no-c-option')
            def outstr = new StringWriter()
    
            expect:
            parser.printUsage(outstr)
            outstr.toString().readLines() == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/OptionReader.java

                Option option = findOption(field);
                if (option != null) {
                    fieldOptionElements.add(FieldOptionElement.create(option, field, optionValueNotationParserFactory));
                }
            }
            return fieldOptionElements;
        }
    
        private Option findOption(Field field) {
            Option option = field.getAnnotation(Option.class);
            if (option != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 09:51:34 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionValuesIntegrationTest.groovy

            """
                import org.gradle.api.DefaultTask;
                import org.gradle.api.tasks.TaskAction;
                import org.gradle.api.tasks.options.Option;
                import org.gradle.api.tasks.options.OptionValues;
    
                import java.util.List;
                import java.util.ArrayList;
                
                public class SampleTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

            assertArgumentNotNull("options", options);
    
            final T dest = ClassUtil.newInstance(destClass);
            copyMapToMap(src, dest, options);
            return dest;
        }
    
        protected static CopyOptions buildCopyOptions(final Consumer<CopyOptions> option) {
            final CopyOptions copyOptions = new CopyOptions();
            option.accept(copyOptions);
            return copyOptions;
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    // HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.
    message HorizontalPodAutoscalerList {
      // metadata is the standard list metadata.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    // HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.
    message HorizontalPodAutoscalerList {
      // metadata is the standard list metadata.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top