Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 153 for _encapsulate (0.48 sec)

  1. src/internal/coverage/decodecounter/decodecounterfile.go

    // empty in the case where the counter data file was produced
    // from a merge in which more than one GOARCH value was present.
    func (cdr *CounterDataReader) Goarch() string {
    	return cdr.goarch
    }
    
    // FuncPayload encapsulates the counter data payload for a single
    // function as read from a counter data file.
    type FuncPayload struct {
    	PkgIdx   uint32
    	FuncIdx  uint32
    	Counters []uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/runtime/netpoll_solaris.go

    // notification with the file descriptor. Failing to do this would
    // mean each notification will prevent concurrent code using the
    // same file descriptor in parallel.
    //
    // The logic dealing with re-associations is encapsulated in
    // runtime·netpollupdate. This function takes care to associate the
    // descriptor only with the subset of events that were previously
    // part of the association, except the one that just happened. We
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    └── subproject-two
        └── build.gradle
    ----
    =====
    ====
    
    [[sec:build_sources]]
    == Use `buildSrc` to abstract imperative logic
    
    Complex build logic is usually a good candidate for being encapsulated either as custom task or binary plugin.
    Custom task and plugin implementations should not live in the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/covdata/dump.go

    		d.cm.SetModeMergePolicy(cmerge.ModeMergeRelaxed)
    	}
    	if d.cmd == pkglistMode {
    		d.pkgpaths = make(map[string]struct{})
    	}
    	return d
    }
    
    // dstate encapsulates state and provides methods for implementing
    // various dump operations. Specifically, dstate implements the
    // CovDataVisitor interface, and is designed to be used in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. pkg/util/iptables/testing/parse.go

    // `negatable` tag indicates if a parameter is allowed to be preceded by "!".
    //
    // Parameters that take a value are stored as type `*IPTablesValue`, which encapsulates a
    // string value and whether the rule was negated (ie, whether the rule requires that we
    // *match* or *don't match* that value). But string-valued parameters that can't be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        ```
      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateExtractOutsideCompilationPass()";
    }
    
    def XlaClusterFormationPass : Pass<"tf-xla-cluster-formation", "ModuleOp"> {
      let summary = "Encapsulate partitioned calls within a Cluster op";
      let description = [{
        This pass clusters `tf.PartitionedCall` and `tf.StatefulPartitionedCall`
        with `_xla_compile_device_type` attribute into a `tf_device.cluster`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                    description: The ordered set of egress rules.  Each rule contains
                      a set of packet match criteria and a corresponding action to apply.
                    items:
                      description: "A Rule encapsulates a set of match criteria and an
                        action.  Both selector-based security Policy and security Profiles
                        reference rules - separated out as a list of rules for both ingress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  8. cmd/admin-handlers_test.go

    	"net/http/httptest"
    	"net/url"
    	"sort"
    	"sync"
    	"testing"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/mux"
    )
    
    // adminErasureTestBed - encapsulates subsystems that need to be setup for
    // admin-handler unit tests.
    type adminErasureTestBed struct {
    	erasureDirs []string
    	objLayer    ObjectLayer
    	router      *mux.Router
    	done        context.CancelFunc
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/transport/Transport.java

    import org.slf4j.LoggerFactory;
    
    import jcifs.RuntimeCIFSException;
    import jcifs.smb.RequestParam;
    
    
    /**
     * This class simplifies communication for protocols that support
     * multiplexing requests. It encapsulates a stream and some protocol
     * knowledge (provided by a concrete subclass) so that connecting,
     * disconnecting, sending, and receiving can be syncronized
     * properly. Apparatus is provided to send and receive requests
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradients.cc

          for (const int dy_index : no_grad_dy_indices) {
            dy[dy_index] = ops::ZerosLike(scope_, Output(n, dy_index));
          }
        }
    
        // TODO(andydavis) Add option to encapsulate grad function in
        // SymbolicGradientOp (as opposed to inlining into the graph).
        std::vector<Output> dx;
        TF_RETURN_IF_ERROR(CallGradFunction(Operation(n), dy, &dx));
    
        // Backprop along the in edges.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top