Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for LSS (0.03 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/LanguageSourceSetIntegrationTest.groovy

            modelNode.lss.@creator[0] == "lss(CustomSourceSet) @ build.gradle line 13, column 13"
            modelNode.lss.@type[0] == "CustomSourceSet"
        }
    
        def "can create a LSS as property of a managed type"() {
            buildFile << """
            ${registerCustomLanguage()}
    
            @Managed
            interface BuildType {
                //Readonly
                CustomSourceSet getSources()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/ModelReportParserTest.groovy

    ---------
    My Report
    ---------
    
    
    + lss
        | Type:   	org.gradle.language.cpp.CppSourceSet
        | Value:  	C++ source 'lss:lss'
        | Creator: 	Rules#lss
    
    BUILD SUCCESSFUL
    """)
    
            expect:
            modelReport.reportNode.lss.@nodeValue[0] == "C++ source 'lss:lss'"
            modelReport.reportNode.lss.@type[0] == 'org.gradle.language.cpp.CppSourceSet'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  3. src/go/token/token.go

    	OR_ASSIGN      // |=
    	XOR_ASSIGN     // ^=
    	SHL_ASSIGN     // <<=
    	SHR_ASSIGN     // >>=
    	AND_NOT_ASSIGN // &^=
    
    	LAND  // &&
    	LOR   // ||
    	ARROW // <-
    	INC   // ++
    	DEC   // --
    
    	EQL    // ==
    	LSS    // <
    	GTR    // >
    	ASSIGN // =
    	NOT    // !
    
    	NEQ      // !=
    	LEQ      // <=
    	GEQ      // >=
    	DEFINE   // :=
    	ELLIPSIS // ...
    
    	LPAREN // (
    	LBRACK // [
    	LBRACE // {
    	COMMA  // ,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/operator_string.go

    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[Def-1]
    	_ = x[Not-2]
    	_ = x[Recv-3]
    	_ = x[Tilde-4]
    	_ = x[OrOr-5]
    	_ = x[AndAnd-6]
    	_ = x[Eql-7]
    	_ = x[Neq-8]
    	_ = x[Lss-9]
    	_ = x[Leq-10]
    	_ = x[Gtr-11]
    	_ = x[Geq-12]
    	_ = x[Add-13]
    	_ = x[Sub-14]
    	_ = x[Or-15]
    	_ = x[Xor-16]
    	_ = x[Mul-17]
    	_ = x[Div-18]
    	_ = x[Rem-19]
    	_ = x[And-20]
    	_ = x[AndNot-21]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 07 05:19:41 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/tokens.go

    	// Def is the : in :=
    	Def   // :
    	Not   // !
    	Recv  // <-
    	Tilde // ~
    
    	// precOrOr
    	OrOr // ||
    
    	// precAndAnd
    	AndAnd // &&
    
    	// precCmp
    	Eql // ==
    	Neq // !=
    	Lss // <
    	Leq // <=
    	Gtr // >
    	Geq // >=
    
    	// precAdd
    	Add // +
    	Sub // -
    	Or  // |
    	Xor // ^
    
    	// precMul
    	Mul    // *
    	Div    // /
    	Rem    // %
    	And    // &
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/go/constant/example_test.go

    		constant.MakeString("Frame"),
    		constant.MakeString("defer"),
    		constant.MakeFromLiteral(`"a"`, token.STRING, 0),
    	}
    
    	slices.SortFunc(vs, func(a, b constant.Value) int {
    		if constant.Compare(a, token.LSS, b) {
    			return -1
    		}
    		if constant.Compare(a, token.GTR, b) {
    			return +1
    		}
    		return 0
    	})
    
    	for _, v := range vs {
    		fmt.Println(constant.StringVal(v))
    	}
    
    	// Output:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

                }
    
                def redirectOutput(Node node, String relativeToRoot) {
                    String value = node.value()
                    node.value = '''
    For /f "tokens=1-3 delims=/: " %%a in ("%TIME%") do (if %%a LSS 10 (set timestamp=0%%a%%b%%c) else (set timestamp=%%a%%b%%c))
    set timestamp=%timestamp:~0,6%
    ''' + "set outputDir=\${relativeToRoot}\\\\output\\\\%timestamp%" + '''
    md %outputDir%
    set outputLog=%outputDir%\\\\output.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. test-site/activator.bat

    for /f "delims=. tokens=1-3" %%v in ("%JAVA_VERSION%") do (
        set MAJOR=%%v
        set MINOR=%%w
        set BUILD=%%x
    
        set META_SIZE=-XX:MetaspaceSize=64M -XX:MaxMetaspaceSize=256M
        if "!MINOR!" LSS "8" (
          set META_SIZE=-XX:PermSize=64M -XX:MaxPermSize=256M
        )
    
        set MEM_OPTS=!META_SIZE!
     )
    
    rem We use the value of the JAVA_OPTS environment variable if defined, rather than the config.
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
Back to top