Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,867 for Option (0.13 sec)

  1. pilot/pkg/security/authz/builder/builder.go

    	if option.IsCustomBuilder {
    		if len(policies.Custom) == 0 {
    			return nil
    		}
    		return &Builder{
    			customPolicies:    policies.Custom,
    			extensions:        processExtensionProvider(push),
    			trustDomainBundle: trustDomainBundle,
    			option:            option,
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TaskBooleanOptionIntegrationTest.groovy

                import org.gradle.api.tasks.options.Option;
    
                public class SampleTask extends DefaultTask {
    
                    @Option(option = "my-option", description = "Option to trigger generation of opposite option.")
                    private Boolean myOption;
    
                    @Option(option = "no-my-option", description = "Option clashing with generated opposite option.")
                    private Boolean noMyOption;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/advance.jsp

    						<option value=""><la:message key="labels.advance_search_filetype_default" /></option>
    						<option value="html" <c:if test="${as.filetype.contains('html')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_html"
    							/></option>
    						<option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_pdf"
    							/></option>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            return Optional.ofNullable(option);
        }
    
        /**
         * Returns the option followed by a string representation of the given path elements.
         * For example, if this type is {@link #MODULES}, then the option is {@code "--module-path"}
         * followed by the specified path elements.
         *
         * @param paths the path to format as a tool option
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionValuesIntegrationTest.groovy

                        MY_PROP_VALUES.add("hello");
                        MY_PROP_VALUES.add("world");
                    }
                    
                    @Option(option = "myProp", description = "Configures command line option 'myProp'")
                    public void setMyProp(String myProp) {
                        this.myProp = myProp;
                    }
                    
                    @OptionValues("myProp")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/AbstractOptionIntegrationSpec.groovy

                    }
                    
                    @Option(option = "prop2", description = "Configures command line option 'prop2'.")
                    public void setProp2(Boolean prop2) {
                        this.prop2 = prop2;
                    }
                    
                    @Option(option = "prop3", description = "Configures command line option 'prop3'.")
                    public void setProp3(String prop3) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 09:40:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.iws.xml

          <option name="TEST_OBJECT" value="class"/>
          <option name="VM_PARAMETERS"/>
          <option name="PARAMETERS"/>
          <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$"/>
          <option name="ENV_VARIABLES"/>
          <option name="PASS_PARENT_ENVS" value="true"/>
          <option name="TEST_SEARCH_SCOPE">
            <value defaultName="moduleWithDependencies"/>
          </option>
          <envs/>
          <method>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

         * Set the project name.
         *
         * @since 5.0
         */
        @Option(option = "project-name", description = "Set the project name.")
        public void setProjectName(String projectName) {
            this.projectName = projectName;
        }
    
        /**
         * Set the package name.
         *
         * @since 5.0
         */
        @Option(option = "package", description = "Set the package for source files.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customWorkspace.xml

          <option name="TEST_OBJECT" value="class" />
          <option name="VM_PARAMETERS" />
          <option name="PARAMETERS" />
          <option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
          <option name="ENV_VARIABLES" />
          <option name="PASS_PARENT_ENVS" value="true" />
          <option name="TEST_SEARCH_SCOPE">
            <value defaultName="moduleWithDependencies" />
          </option>
          <envs />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/DefaultInternalOptions.java

        }
    
        @Override
        public <T> Option.Value<T> getOption(InternalOption<T> option) {
            String value = startParameterSystemProperties.get(option.getSystemPropertyName());
            if (value == null) {
                value = System.getProperty(option.getSystemPropertyName());
            }
            if (value == null) {
                return Option.Value.defaultValue(option.getDefaultValue());
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top