Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for MyValue (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtraPropertiesExtension.java

     * object that owns the extension.
     *
     * <pre class='autoTested'>
     * project.ext.set("myProp", "myValue")
     * assert project.myProp == "myValue"
     *
     * project.myProp = "anotherValue"
     * assert project.myProp == "anotherValue"
     * assert project.ext.get("myProp") == "anotherValue"
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:35:02 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

            when:
            visitProperties(task)
    
            then:
            _ * visitor.visitOutputFilePropertiesOnly() >> false
            1 * visitor.visitInputProperty('myProperty', { it.call() == 'myValue' }, false)
            1 * visitor.visitInputFileProperty('inputFile', _, _, _, _, _, _, InputFilePropertyType.FILE)
            1 * visitor.visitInputFileProperty('inputFiles', _, _, _, _, _, _, InputFilePropertyType.FILES)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaTestSubject.java

    import java.util.Collection;
    import java.util.Set;
    
    @SuppressWarnings("UnusedDeclaration")
    public class JavaTestSubject {
    
        final IllegalStateException failure = new IllegalStateException();
        private String myProp = "myValue";
        private String myProp2;
        private boolean myBooleanProp = true;
        public String myField = "myFieldValue";
        public boolean myBooleanField = true;
        private static String myStaticProperty;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

                                    }
                                }
                                properties.set(mapOf(
                                    "myProp" to "myValue",
                                    "prop.with.dots" to "anotherValue"
                                ))
                                withXml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r44/ParameterizedToolingModelCrossVersionSpec.groovy

                        return parameterValue;
                    }
                }
    
                class DefaultCustomModel2 implements Serializable {
                    String getValue() {
                        return "myValue";
                    }
                }
    
                class CustomPlugin implements Plugin<Project> {
                    @Inject
                    CustomPlugin(ToolingModelBuilderRegistry registry) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                        post = "******@****.***"
                                    }
                                }
                                properties = [
                                    myProp: "myValue",
                                    "prop.with.dots": "anotherValue"
                                ]
                                withXml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. pkg/config/labels/instance.go

    	// Using kubernetes requirement, a valid key must be a non-empty string consist
    	// of alphanumeric characters, '-', '_' or '.', and must start and end with an
    	// alphanumeric character (e.g. 'MyValue',  or 'my_value',  or '12345'
    	qualifiedNameFmt = "(?:[A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]"
    
    	// In Kubernetes, label names can start with a DNS name followed by a '/':
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            def model = new Object()
            def parameterType = CustomParameter.class
            def parameter = new CustomParameter() {
                @Override
                String getValue() {
                    return "myValue"
                }
    
                @Override
                void setValue(String value) {}
            }
    
            given:
            _ * workerThreadRegistry.workerThread >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

                        return factory.create() + 2
                    }
                }
            }
    
            @Provides
            protected String createString(String parentValue, Long myValue) {
                return parentValue + myValue
            }
        }
    
        private static class RegistryWithDecoratorMethodsWithDecorate extends DefaultServiceRegistry {
            RegistryWithDecoratorMethodsWithDecorate() {
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/format_test.go

    				"a valid label must be an empty string or consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyValue',  or 'my_value',  or '12345', regex used for validation is '(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])?')",
    			})),
    		},
    	}
    
    	// Also test format names and comparisons of all constants
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top