Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for _encapsulate (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. test/chan/powser1.go

    	}
    	y := get(U)
    	if end(y) != 0 {
    		return zero
    	}
    	return add(y, mul(c, eval(c, U, n-1)))
    }
    
    // Power-series constructors return channels on which power
    // series flow.  They start an encapsulated generator that
    // puts the terms of the series on the channel.
    
    // Make a pair of power series identical to a given power series
    
    func Split(U PS) *dch2 {
    	UU := mkdch2()
    	go split(U, UU)
    	return UU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  10. cluster/addons/calico-policy-controller/globalnetworkpolicy-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
    - 45.2K bytes
    - Viewed (0)
Back to top