Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 149 for prop4 (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    		return s
    	}
    	result := *s
    	props := make(map[string]spec.Schema, len(s.Properties))
    	for k, prop := range s.Properties {
    		props[k] = prop
    	}
    	stringType := spec.StringProperty()
    	props["kind"] = *stringType
    	props["apiVersion"] = *stringType
    	props["metadata"] = spec.Schema{
    		SchemaProps: spec.SchemaProps{
    			Type: []string{"object"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    ```java
    /**
     * <pre><code class="language-kotlin">
     * project.ext.prop1 = "foo"
     * task doStuff {
     *     ext.prop2 = "bar"
     * }
     * subprojects { ext.${prop3} = false }
     * </code></pre>
     */
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

         */
        @Test
        void testCombineId() throws Exception {
            String lhs = "<props>" + "<property combine.id='LHS-ONLY'><name>LHS-ONLY</name><value>LHS</value></property>"
                    + "<property combine.id='TOOVERWRITE'><name>TOOVERWRITE</name><value>LHS</value></property>"
                    + "</props>";
    
            String rhs = "<props>" + "<property combine.id='RHS-ONLY'><name>RHS-ONLY</name><value>RHS</value></property>"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            def beanWithDisplayName = create(FinalReadOnlyNonManagedPropertyBean, Describables.of("<display-name>"))
    
            expect:
            bean.prop.toString() == "property 'prop'"
            beanWithDisplayName.prop.toString() == "<display-name> property 'prop'"
        }
    
        def "can attach nested extensions to object"() {
            given:
            def bean = create(Bean)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

            succeeds('help', '--task', 'sample')
    
            then:
            outputContains("""
    Options
         --prop1     Configures command line option 'prop1'.
    
         --prop2     Configures command line option 'prop2'.
    
         --no-prop2     Disables option --prop2.
    
         --prop3     Configures command line option 'prop3'.""")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

            isolated instanceof JavaSerializedValueSnapshot
            def other = isolated.isolate()
            other.prop == "123"
            !other.is(original)
    
            def v = isolated.coerce(cl)
            v.prop == "123"
        }
    
        def "can coerce java serializable value"() {
            def original = new Bean(prop: "123")
    
            expect:
            def isolated = isolatableFactory.isolate(original)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    	p.types = nil
    
    	for _, r := range p.runes {
    		props, i := LookupRune(r)
    		bytecount += i
    		cls := props.Class()
    		if cls == B {
    			return bytecount, nil
    		}
    		p.types = append(p.types, cls)
    		if props.IsOpeningBracket() {
    			p.pairTypes = append(p.pairTypes, bpOpen)
    			p.pairValues = append(p.pairValues, r)
    		} else if props.IsBracket() {
    			// this must be a closing bracket,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	}
    	return sb.String()
    }
    
    func compareEntries(t *testing.T, tc string, dentry *fnInlHeur, dcsites encodedCallSiteTab, eentry *fnInlHeur, ecsites encodedCallSiteTab) {
    	dfp := dentry.props
    	efp := eentry.props
    	dfn := dentry.fname
    
    	// Compare function flags.
    	if dfp.Flags != efp.Flags {
    		t.Errorf("testcase %q: Flags mismatch for %q: got %s, wanted %s",
    			tc, dfn, dfp.Flags.String(), efp.Flags.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            void setProp3(String string);
        }
    
        def "multiple properties"() {
            when:
            def properties = extract(MultipleProps).properties
    
            then:
            properties*.name == ["prop1", "prop2", "prop3"]
            properties*.type == [ModelType.of(String)] * 3
        }
    
        @Managed
        interface SelfReferencing {
            SelfReferencing getSelf()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

            def e2 = builder.createContainerElement(null, "foo.bar", "e2", "someElement")
            builder.propertyAssignment("Set some thing", "prop", e1)
            builder.propertyAssignment(null, "prop2", builder.propertyExpression(e2, "outputDir"))
    
            when:
            builder.create(target).generate()
    
            then:
            assertOutputFile("""/*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top