Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for no_oss (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/types2/assignments.go

    	} else if r > 0 {
    		at = rhs[r-1] // report at last value
    	}
    	err := check.newError(WrongResultCount)
    	err.addf(at, "%s return values", qualifier)
    	err.addf(nopos, "have %s", check.typesSummary(operandTypes(rhs), false))
    	err.addf(nopos, "want %s", check.typesSummary(varTypes(lhs), false))
    	err.report()
    }
    
    // initVars type-checks assignments of initialization expressions orig_rhs
    // to variables lhs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. 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)
  9. pkg/controller/disruption/disruption.go

    	logger := klog.FromContext(ctx)
    	pods, err := dc.getPodsForPdb(pdb)
    	if err != nil {
    		dc.recorder.Eventf(pdb, v1.EventTypeWarning, "NoPods", "Failed to get pods: %v", err)
    		return err
    	}
    	if len(pods) == 0 {
    		dc.recorder.Eventf(pdb, v1.EventTypeNormal, "NoPods", "No matching pods found")
    	}
    
    	expectedCount, desiredHealthy, unmanagedPods, err := dc.getExpectedPodCount(ctx, pdb, pods)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                    }
    
                    is KaNonConstantInitializerValue -> {
                        append("KtNonConstantInitializerValue(")
                        append(value.initializerPsi?.firstLineOfPsi() ?: "NO_PSI")
                        append(")")
                    }
    
                    is KaConstantValueForAnnotation -> {
                        append("KtConstantValueForAnnotation(")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top