Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 145 for untracked (0.41 sec)

  1. pkg/test/framework/components/namespace/kube.go

    )
    
    // nolint: gosec
    // Test only code
    var (
    	idctr int64
    	rnd   = rand.New(rand.NewSource(time.Now().UnixNano()))
    	mu    sync.Mutex
    )
    
    // kubeNamespace represents a Kubernetes namespace. It is tracked as a resource.
    type kubeNamespace struct {
    	ctx          resource.Context
    	id           resource.ID
    	name         string
    	prefix       string
    	cleanupMutex sync.Mutex
    	cleanupFuncs []func() error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/clean/clean.go

    The -testcache flag causes clean to expire all test results in the
    go build cache.
    
    The -modcache flag causes clean to remove the entire module
    download cache, including unpacked source code of versioned
    dependencies.
    
    The -fuzzcache flag causes clean to remove files stored in the Go build
    cache for fuzz testing. The fuzzing engine caches files that expand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func.go

    	//
    	// This is included in the export data and tracked across packages.
    	ABI obj.ABI
    	// ABIRefs is the set of ABIs by which this function is referenced.
    	// For ABIs other than this function's definition ABI, the
    	// compiler generates ABI wrapper functions. This is only tracked
    	// within a package.
    	ABIRefs obj.ABISet
    
    	NumDefers  int32 // number of defer calls in the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_4x.md

        `org.bouncycastle`, and `org.openjsse`.
     *  Upgrade: Explicitly depend on `kotlin-stdlib-jdk8`. This fixes a problem with dependency
        locking. That's a potential security vulnerability, tracked as [CVE-2022-24329].
     *  Upgrade: [publicsuffix.org data][public_suffix]. This powers `HttpUrl.topPrivateDomain()`.
        It's also how OkHttp knows which domains can share cookies with one another.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

      "GetI64ElementsAttrForSeq("
      "0, $0.getType().cast<RankedTensorType>().getRank(), &$_builder)">;
    
    // L2Loss is lowered using the formula,
    // L2Loss(input) = Sum(input * input) / 2
    
    // TODO(hinsu): Support unranked tensors once b/144593778 is resolved to not
    // cause result type mismatch.
    def LowerL2LossOp :
      Pat<(TF_L2LossOp AnyRankedTensor:$input),
          (TF_DivOp
            (TF_SumOp (TF_MulOp $input, $input),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/runtime/debug/garbage.go

    // len(stats.PauseQuantiles) is 5, it will be filled with the minimum,
    // 25%, 50%, 75%, and maximum pause times.
    func ReadGCStats(stats *GCStats) {
    	// Create a buffer with space for at least two copies of the
    	// pause history tracked by the runtime. One will be returned
    	// to the caller and the other will be used as transfer buffer
    	// for end times history and as a temporary buffer for
    	// computing quantiles.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            outputContains("NOT CI")
    
            where:
            accessor             | _
            "System.getProperty" | _
            "System.getenv"      | _
        }
    
        def "other build inputs are still tracked after computing ValueSource"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile.text = """
    
                import org.gradle.api.provider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

    absl::StatusOr<mhlo::TupleOp> Tf2XlaRewriter::CompileWithHloImporter(
        tensorflow::OpKernelContext& op_context) {
      // XLA can only return a single value. Wrap all output op return values
      // in a Tuple op that gets unpacked later.
      std::vector<xla::XlaOp> output_values;
      for (int i = 0, e = op_->getNumResults(); i < e; i++) {
        tensorflow::Tensor* output = op_context.mutable_output(i);
        const tensorflow::XlaExpression* expr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"completionMode":          "completionMode specifies how Pod completions are tracked. It can be `NonIndexed` (default) or `Indexed`.\n\n`NonIndexed` means that the Job is considered complete when there have been .spec.completions successfully completed Pods. Each Pod completion is homologous to each other.\n\n`Indexed` means that...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            property.calculateExecutionTimeValue()
    
            then:
            0 * _ // no side effects when calling setter or calculated values are not unpacked
    
            when:
            def unpackedValue = getter(property, getter, someOtherValue())
    
            then:
            unpackedValue == someValue()
            1 * sideEffect.execute(someValue())
            0 * _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top