Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for customValue (0.16 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

                       containers 'containerPath'
                       file {
                           whenMerged { classpath ->
                               classpath.entries.find { it.path == 'containerPath' }.entryAttributes.customKey = 'customValue'
                           }
                       }
                   }
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    	G []int             `json:"fg"`
    	H []bool            `json:"fh"`
    	I []float32         `json:"fi"`
    	J []byte            `json:"fj"`
    }
    
    type G struct {
    	CustomValue1   CustomValue    `json:"customValue1"`
    	CustomValue2   *CustomValue   `json:"customValue2"`
    	CustomPointer1 CustomPointer  `json:"customPointer1"`
    	CustomPointer2 *CustomPointer `json:"customPointer2"`
    }
    
    type H struct {
    	A A `json:"ha"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

                   classpath {
                       file {
                           whenMerged { classpath ->
                               classpath.entries.find { it.kind == 'src' && it.path == 'src/main/java' }.entryAttributes.customKey = 'customValue'
                           }
                       }
                   }
               }
            """
            file('src/main/java').mkdirs()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            hasNoSystemProperty('mySystemProperty')
        }
    
        def "Can define new system property"() {
            when:
            runTask { withSystemProperties('customKey' : 'customValue') }
    
            then:
            hasSystemProperty('customKey', 'customValue')
        }
    
        def "Can override existing system properties"() {
            when:
            runTask { withSystemProperties('mySystemProperty' : 'newValue') }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top