Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 163 for addOption (1.11 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package internal/counter implements the internals of the public counter package.
    // In addition to the public API, this package also includes APIs to parse and
    // manage the counter files, needed by the upload package.
    package counter
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"strings"
    	"sync/atomic"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    However, it is essential to have relevant information to determine if something has gone wrong.
    
    Gradle defines six log levels, detailed in <<#logLevels,Log levels>>.
    In addition to the standard log levels, Gradle introduces two specific levels: _QUIET_ and _LIFECYCLE_.
    _LIFECYCLE_ is the default level used to report build progress.
    
    [[logLevels]]
    == Understanding Log levels
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter.go

    	default:
    		filterstack = append(filterstack, tcpFilter)
    	}
    
    	return filterstack
    }
    
    // buildOutboundNetworkFilters generates a TCP proxy network filter for outbound
    // connections. In addition, it generates protocol specific filters (e.g., Mongo
    // filter).
    func (lb *ListenerBuilder) buildOutboundNetworkFilters(
    	routes []*networking.RouteDestination,
    	port *model.Port, configMeta config.Meta, includeMx bool,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // Selector is a CEL expression which must evaluate to true if a
      // resource instance is suitable. The language is as defined in
      // https://kubernetes.io/docs/reference/using-api/cel/
      //
      // In addition, for each type in NamedResourcesAttributeValue there is a map that
      // resolves to the corresponding value of the instance under evaluation.
      // For example:
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * (classes and objects) of the given [KaSymbolWithMembers]. The scope includes members inherited from the symbol's supertypes, in
         * addition to members which are declared explicitly inside the symbol's body.
         *
         * The member scope doesn't include synthetic Java properties. To get such properties, use [getSyntheticJavaPropertiesScope].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. src/internal/abi/type.go

    }
    
    // addChecked returns p+x.
    //
    // The whySafe string is ignored, so that the function still inlines
    // as efficiently as p+x, but all call sites should use the string to
    // record why the addition is safe, which is to say why the addition
    // does not cause x to advance to the very end of p's allocation
    // and therefore point incorrectly at the next block in memory.
    func addChecked(p unsafe.Pointer, x uintptr, whySafe string) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

      let summary = "The sequenced version of Fallback ExecuteOp";
      let description = [{
        The ExecuteOpSeq executes an operation on the specified device, similar to
        ExecuteOp. In addition, it takes an in_op_chain and produces an out_op_chain
        that can be used to sequence op executions. ExecuteOpSeq is nonstrict on
        in_op_chain.
    
        Example:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    This is possible; call `get()` on the provider.
    
    == Using a build service with the Worker API
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                // adds listeners and expects to see a build finished event. Infrastructure should not be using the public listener types
                // In addition, they almost all should be using a build tree scoped event instead of a build scoped event
    
                Throwable reportableFailure = failure;
                if (reportableFailure == null && !stageFailures.getFailures().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/typed_xds_cache.go

    // important property.
    func (l *lruCache[K]) assertUnchanged(key K, existing *discovery.Resource, replacement *discovery.Resource) {
    	if l.enableAssertions {
    		if existing == nil {
    			// This is a new addition, not an update
    			return
    		}
    		// Record time so that we can correlate when the error actually happened, since the async reporting
    		// may be delayed
    		t0 := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top