Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 272 for captures (0.16 sec)

  1. staging/src/k8s.io/api/storage/v1/types.go

    )
    
    // +genclient
    // +genclient:nonNamespaced
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.13
    
    // VolumeAttachment captures the intent to attach or detach the specified volume
    // to/from the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    type VolumeAttachment struct {
    	metav1.TypeMeta `json:",inline"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    	// value at pcBuf[0] represents a skip value to apply to the physical stack in
    	// pcBuf[1:] after inline expansion.
    	logicalStackSentinel = ^uintptr(0)
    )
    
    // traceStack captures a stack trace from a goroutine and registers it in the trace
    // stack table. It then returns its unique ID. If gp == nil, then traceStack will
    // attempt to use the current execution context.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

    // This resource should be replaced by 'value'.
    // Output params:
    // - work_list: Is updated with new regions to process that is called
    //   by 'user_op';
    // - arguments_to_erase: Captures updates to the graph - which arguments
    //   to remove from the op;
    void PropagateUsage(
        Operation* user_op, int argument_index, ElementsAttr value,
        llvm::SmallVector<std::pair<Region*, int>, 4>* work_list,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. common/config/.golangci.yml

        # with golangci-lint call it on a directory with the changed file.
        check-exported: false
      gci:
        sections:
          - standard # Captures all standard packages if they do not match another section.
          - default # Contains all imports that could not be matched to another section type.
          - prefix(istio.io/) # Groups all imports with the specified Prefix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
            shift                   # remove old arg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

                reduce_dataset.getF());
    
        // The reduce function arguments consist of three part in this order:
        // 1. Reduction state inputs.
        // 2. Dataset inputs.
        // 3. Captures inputs.
        // The number of dataset inputs can be indirectly determined to be
        // total_number_of_inputs - state_inputs - captured_inputs.
        auto func_inputs = reduce_func.getFunctionType().getInputs();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	// is is usually the VIP. Tere will always be at least one address in this
    	// list.
    	Addresses []netip.Addr
    
    	// DefaultBinding for an inbound zTunnel to use to connect to a Waypoint it captures.
    	// This is applied to the Workloads that are instances of the current Waypoint.
    	DefaultBinding InboundBinding
    
    	// TrafficType controls whether Service or Workload can reference this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // body and condition regions are replaced with captured values, so we do not
      // need to take into account the body and condition region arguments.
      RegionResourceHoister hoister(op);
    
      if (failed(hoister.Analyze())) return failure();
    
      // If there are no resource region captures, then nothing to do.
      if (!hoister.NeedsLifting()) return success();
    
      // The resources captured for While loop fall into two categories:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_builder.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/proto"
    	"istio.io/istio/pkg/wellknown"
    )
    
    // A stateful listener builder
    // Support the below intentions
    // 1. Use separate inbound capture listener(:15006) and outbound capture listener(:15001)
    // 2. The above listeners use bind_to_port sub listeners or filter chains.
    type ListenerBuilder struct {
    	node              *model.Proxy
    	push              *model.PushContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

            operations.none(ConfigureBuildBuildOperationType)
            operations.none(LoadProjectsBuildOperationType)
            operations.none(ConfigureProjectBuildOperationType)
        }
    
        def "captures store failure in build operation"() {
            given:
            withLibBuild()
            file("lib/build.gradle") << """
                gradle.buildFinished { }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top