Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for no_oss (0.34 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ValidateStepTest.groovy

        def delegateResult = Mock(Result)
    
        def setup() {
            def validationContext = new DefaultWorkValidationContext(WorkValidationContext.TypeOriginInspector.NO_OP)
            context.getValidationContext() >> validationContext
        }
    
        def "executes work when there are no violations"() {
            boolean validated = false
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/process/internal/AbstractWorkerProcessIntegrationSpec.groovy

        @Shared
        DefaultServiceRegistry services = (DefaultServiceRegistry) ServiceRegistryBuilder.builder()
            .parent(NativeServicesTestFixture.getInstance())
            .provider(LoggingServiceRegistry.NO_OP)
            .provider(new GlobalScopeServices(false, AgentStatus.disabled()))
            .build()
        final MessagingServer server = services.get(MessagingServer.class)
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/go/types/errors.go

    	case ast.Node:
    		pos := x.Pos()
    		return posSpan{pos, pos, x.End()}
    	case *operand:
    		if x.expr != nil {
    			pos := x.Pos()
    			return posSpan{pos, pos, x.expr.End()}
    		}
    		return posSpan{nopos, nopos, nopos}
    	default:
    		pos := at.Pos()
    		return posSpan{pos, pos, pos}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    }
    
    // withinScope returns true if x.Pos() is in [scope.Pos(), scope.End()].
    func withinScope(scope ast.Node, x *types.Var) bool {
    	if scope != nil {
    		return x.Pos() != token.NoPos && scope.Pos() <= x.Pos() && x.Pos() <= scope.End()
    	}
    	return false
    }
    
    // goAsyncCall returns the extent of a call from a go fun() statement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top