Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 140 for no_oss (0.12 sec)

  1. 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)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

                registration.add(VintageEnvironmentChangeTracker::class.java)
                registration.add(ProjectScopedScriptResolution::class.java, ProjectScopedScriptResolution.NO_OP)
                registration.addProvider(VintageBuildTreeProvider())
                registration.add(DefaultBuildTreeModelSideEffectExecutor::class.java)
            }
            if (modelParameters.isIntermediateModelCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ExternalModuleComponentResolverFactory.java

                    moduleComponentRepository = new LocalModuleComponentRepository<>(moduleComponentRepository);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

                experimentSpec.getInvocation().getBuildAction(),
                cleanTasks.isEmpty()
                    ? BuildAction.NO_OP
                    : new RunTasksAction(cleanTasks),
                invocationSpec.getArgs(),
                invocationSettings.getSystemProperties(),
                collectMutators(invocationSettings, experimentSpec),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check.go

    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	. "internal/types/errors"
    	"sync/atomic"
    )
    
    // nopos indicates an unknown position
    var nopos syntax.Pos
    
    // debugging/development support
    const debug = false // leave on during development
    
    // _aliasAny changes the behavior of [Scope.Lookup] for "any" in the
    // [Universe] scope.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/gradients/math_grad.cc

    #include "tensorflow/c/eager/gradients.h"
    #include "tensorflow/c/experimental/ops/array_ops.h"
    #include "tensorflow/c/experimental/ops/math_ops.h"
    #include "tensorflow/c/experimental/ops/nn_ops.h"
    
    using std::vector;
    using tensorflow::ops::AddV2;
    using tensorflow::ops::Div;
    using tensorflow::ops::DivNoNan;
    using tensorflow::ops::MatMul;
    using tensorflow::ops::Mul;
    using tensorflow::ops::Neg;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationRunner.java

            String getStatus();
    
            @Override
            void setStatus(@Nullable String status);
        }
    
        public interface BuildOperationExecutionListener {
            BuildOperationExecutionListener NO_OP = new BuildOperationExecutionListener() {
                @Override
                public void start(BuildOperationDescriptor descriptor, BuildOperationState operationState) {
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/go/types/check.go

    package types
    
    import (
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/token"
    	"internal/godebug"
    	. "internal/types/errors"
    	"strings"
    	"sync/atomic"
    )
    
    // nopos, noposn indicate an unknown position
    var nopos token.Pos
    var noposn = atPos(nopos)
    
    // debugging/development support
    const debug = false // leave on during development
    
    // gotypesalias controls the use of Alias types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         */
        default WorkValidationContext.TypeOriginInspector getTypeOriginInspector() {
            return WorkValidationContext.TypeOriginInspector.NO_OP;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                    private ZincCompilerServices(File gradleUserHome) {
                        super(NativeServices.getInstance())
    
                        add(OutputEventListener.class, OutputEventListener.NO_OP)
                        addProvider(new GlobalScopeServices(true, AgentStatus.disabled()))
                    }
    
                     static def getInstance(File gradleUserHome) {
                        if (instance == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top