Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/RuleSourceAppliedByRuleMethodIntegrationTest.groovy

        def "first parameter of @Rules method must be assignable to RuleSource"() {
            buildFile << '''
                class MyPlugin extends RuleSource {
                    @Rules
                    void rules(LanguageSourceSet lss, String string) {
                    }
                }
                apply plugin: MyPlugin
            '''
    
            expect:
            fails 'model'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
Back to top