Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 780 for inter (0.04 sec)

  1. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      //
      // Users of ClusterTrustBundles, including Kubelet, are free to reorder and
      // deduplicate certificate blocks in this file according to their own logic,
      // as well as to drop PEM block headers and inter-block data.
      optional string trustBundle = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func convT64(val uint64) unsafe.Pointer
    func convTstring(val string) unsafe.Pointer
    func convTslice(val []uint8) unsafe.Pointer
    
    // interface type assertions x.(T)
    func assertE2I(inter *byte, typ *byte) *byte
    func assertE2I2(inter *byte, typ *byte) *byte
    func panicdottypeE(have, want, iface *byte)
    func panicdottypeI(have, want, iface *byte)
    func panicnildottype(want *byte)
    func typeAssert(s *byte, typ *byte) *byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. cmd/jwt.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/policy"
    )
    
    const (
    	jwtAlgorithm = "Bearer"
    
    	// Default JWT token for web handlers is one day.
    	defaultJWTExpiry = 24 * time.Hour
    
    	// Inter-node JWT token expiry is 15 minutes.
    	defaultInterNodeJWTExpiry = 15 * time.Minute
    )
    
    var (
    	errInvalidAccessKeyID = errors.New("The access key ID you provided does not exist in our records")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Indicates whether the model building should happen in two phases. If enabled, the initial invocation of the model
         * builder will only produce an interim result which may be used to analyze inter-model dependencies before the
         * final invocation of the model builder is performed.
         *
         * @return {@code true} if two-phase building is enabled, {@code false} if the model should be build in a single
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      let summary = "Moves a broadcast from host into XLA, encoded as XlaAllReduce";
    
      let description = [{
        This pass moves brodcasts from host TF ops into XLA. This enables use of
        the inter-device network, which is faster than the inter-host network.
        Broadcasts in XLA are encoded as XlaAllReduce. An all_reduce with all 0
        inputs except for one real input produces the same result as a broadcast.
    
        For example, the following:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

        : intra_op_(std::make_unique<IntraOpThreadPool>(num_threads)) {
      // Create a HostContext for running TFRT functions. Concurrent work queue acts
      // similar to the Tensorflow `inter-op` thread pool, so we'll match the size.
      host_context_ = num_threads ? CreateMultiThreadedHostContext(num_threads)
                                  : CreateSingleThreadedHostContext();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. cmd/storage-rest_test.go

    	"reflect"
    	"runtime"
    	"testing"
    	"time"
    
    	"github.com/minio/minio/internal/grid"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    // Storage REST server, storageRESTReceiver and StorageRESTClient are
    // inter-dependent, below test functions are sufficient to test all of them.
    func testStorageAPIDiskInfo(t *testing.T, storage StorageAPI) {
    	testCases := []struct {
    		expectErr bool
    	}{
    		{true},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    		interfaces, _ := net.Interfaces() //TODO create interfaces
    		for _, inter := range interfaces {
    			addresses, _ := inter.Addrs()
    			for _, addr := range addresses {
    				addrIP, _, _ := netutils.ParseCIDRSloppy(addr.String())
    				if addrIP.String() == nodeIP.String() {
    					klog.V(2).InfoS("Record Host MAC address", "addr", inter.HardwareAddr)
    					hostMac = inter.HardwareAddr.String()
    				}
    			}
    		}
    		if len(hostMac) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        // arguments must correspond to different resources and we can assign unique
        // IDs.
        assign_unique_id_to_all(func_op.getArguments());
      }
    
      // Since this analysis is neither inter-procedural nor inter-regional,
      // each region attached to Op's within a function is analyzed independently.
      // Seed this analysis for each such region by mapping all resource arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    You will also find it easier to take advantage of Gradle's power features to improve build performance.
    +
    The main downside is the extra work required to perform the migration, particularly if the existing build is complex and has many inter-project dependencies.
    However, these builds often benefit the most from a switch to idiomatic Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top