Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rej (0.01 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/.gitignore

    *.o
    *.a
    *.so
    ._*
    .nfs.*
    a.out
    *~
    *.orig
    *.rej
    *.exe
    .*.swp
    core
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:27:03 UTC 2019
    - 78 bytes
    - Viewed (0)
  2. .gitignore

    .DS_Store
    *.[56789ao]
    *.a[56789o]
    *.so
    *.pyc
    ._*
    .nfs.*
    [56789a].out
    *~
    *.orig
    *.rej
    *.exe
    .*.swp
    core
    *.cgo*.go
    *.cgo*.c
    _cgo_*
    _obj
    _test
    _testmain.go
    
    /VERSION.cache
    /bin/
    /build.out
    /doc/articles/wiki/*.bin
    /goinstall.log
    /last-change
    /misc/cgo/life/run.out
    /misc/cgo/stdio/run.out
    /misc/cgo/testso/main
    /pkg/
    /src/*.*/
    /src/cmd/cgo/zdefaultcc.go
    /src/cmd/dist/dist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 958 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

            given:
            ModuleComponentSelector selection = DefaultModuleComponentSelector.newSelector(DefaultModuleIdentifier.newId('group-one', 'name-one'), constraint('req', 'pref', 'strict', ['rej']))
    
            when:
            ModuleComponentSelector result = serialize(selection, serializer)
    
            then:
            result.group == 'group-one'
            result.module == 'name-one'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. test/nosplit.go

    			continue
    		}
    		lines := strings.TrimSpace(m[1])
    		reject := false
    		if m[2] != "" {
    			if strings.TrimSpace(m[4]) == "" {
    				reject = true
    			} else {
    				for _, rej := range strings.Fields(m[4]) {
    					if rej == goarch {
    						reject = true
    					}
    				}
    			}
    		}
    		if lines == "" && !reject {
    			continue
    		}
    
    		var gobuf bytes.Buffer
    		fmt.Fprintf(&gobuf, "package main\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top