Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for MyValue (0.12 sec)

  1. platforms/core-runtime/cli/src/main/java/org/gradle/cli/ProjectPropertiesCommandLineConverter.java

            return "project-prop";
        }
    
        @Override
        protected String getPropertyOptionDescription() {
            return "Set project property for the build script (e.g. -Pmyprop=myvalue).";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 1.1K 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/apis/resource/validation/validation_resourceslice_test.go

    			slice: func() *resource.ResourceSlice {
    				slice := testResourceSlice(goodName, goodName, driverName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclassparameters_test.go

    			parameters: func() *resource.ResourceClassParameters {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    			parameters: func() *resource.ResourceClaimParameters {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top