Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for LSS (0.04 sec)

  1. src/net/server_test.go

    					t.Error(perr)
    				}
    				t.Fatal(err)
    			}
    
    			var lss []*localServer
    			var tpchs []chan error
    			defer func() {
    				for _, ls := range lss {
    					ls.teardown()
    				}
    			}()
    			for i := 0; i < N; i++ {
    				ls := (&streamListener{Listener: ln}).newLocalServer()
    				lss = append(lss, ls)
    				tpchs = append(tpchs, make(chan error, 1))
    			}
    			for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

                }
    
                class TestRules extends RuleSource {
                    @Defaults
                    void useInternalView(@Path("components.sampleLib.sources.haxe") HaxeSourceSetInternal lss) {
                        lss.setInternalData("internal")
                    }
                }
                apply plugin: TestRules
    
                class ValidateTaskRules extends RuleSource {
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

            class Rules extends RuleSource {
                @Model
                void functionalSources(FunctionalSourceSet sources) {
                    sources.create("myJavaSourceSet", SomeJavaSourceSet) { LanguageSourceSet lss ->
                        lss.source.srcDir "src/main/myJavaSourceSet"
                    }
                }
            }
            apply plugin: Rules
            """
            expect:
            succeeds ("model", "printSourceDirs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/net/dial_test.go

    		for {
    			c, err := ln.Accept()
    			if err != nil {
    				return
    			}
    			c.Close()
    		}
    	}
    	var lss [2]*localServer
    	for i, network := range []string{"tcp4", "tcp6"} {
    		lss[i] = newLocalServer(t, network)
    		defer lss[i].teardown()
    		if err := lss[i].buildup(handler); err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	for i, tt := range tests {
    		d := &Dialer{LocalAddr: tt.laddr}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top