Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,892 for Option (0.12 sec)

  1. 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)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

            """
    
            file('src/main/java/Foo.java') << 'public class Foo {}'
    
            when:
            succeeds 'javadoc'
    
            then:
            file('build/docs/javadoc/Foo.html').text.contains("'some text'")
    
            where:
            option << (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_16) ? ['header'] : ['header', 'footer'])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    If the `--incubating` option is provided, Gradle will generate build scripts which may use the latest versions of APIs, which are marked `@Incubating` and remain <<feature_lifecycle.adoc#feature_lifecycle,subject to change>>. To disable this behavior, use `--no-incubating`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    	Neutral
    )
    
    type options struct {
    	defaultDirection Direction
    }
    
    // An Option is an option for Bidi processing.
    type Option func(*options)
    
    // ICU allows the user to define embedding levels. This may be used, for example,
    // to use hierarchical structure of markup languages to define embeddings.
    // The following option may be a way to expose this functionality in this API.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                    case EXPLICIT_TRUE:
                        return Option.Value.value(true);
                    case EXPLICIT_FALSE:
                        return Option.Value.value(false);
                    case IMPLICIT_TRUE:
                        return Option.Value.defaultValue(true);
                    case IMPLICIT_FALSE:
                        return Option.Value.defaultValue(false);
                    default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Optional;
    import org.gradle.api.tasks.OutputFile;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.api.tasks.options.Option;
    import org.gradle.api.tasks.options.OptionValues;
    import org.gradle.api.tasks.wrapper.internal.DefaultWrapperVersionsResources;
    import org.gradle.api.tasks.wrapper.internal.WrapperDefaults;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

        def "report for empty build displays no component with task option #option"() {
            given:
            buildScript emptyNativeBuild()
    
            when:
            run 'dependentComponents', option
    
            then:
            output.contains emptyDependents()
    
            where:
            option            | _
            "--test-suites"   | _
            "--non-buildable" | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    		return []demangle.Option{demangle.NoParams, demangle.NoEnclosingParams}
    	case "full":
    		return []demangle.Option{demangle.NoClones}
    	case "none": // no demangling
    		return []demangle.Option{}
    	}
    
    	panic(fmt.Sprintf("unknown demanglerMode %s", demanglerMode))
    }
    
    func demangleSingleFunction(fn *profile.Function, options []demangle.Option) {
    	if fn.Name != "" && fn.SystemName != fn.Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/server.go

    	utilruntime.Must(features.AddFeatureGates(utilfeature.DefaultMutableFeatureGate))
    }
    
    // Option configures a framework.Registry.
    type Option func(runtime.Registry) error
    
    // NewSchedulerCommand creates a *cobra.Command object with default parameters and registryOptions
    func NewSchedulerCommand(registryOptions ...Option) *cobra.Command {
    	opts := options.NewOptions()
    
    	cmd := &cobra.Command{
    		Use: "kube-scheduler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exec/Crawler.java

            final Options options = new Options();
    
            final CmdLineParser parser = new CmdLineParser(options);
            try {
                parser.parseArgument(args);
            } catch (final CmdLineException e) {
                System.err.println(e.getMessage());
                System.err.println("java " + Crawler.class.getCanonicalName() + " [options...] arguments...");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top