Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for _encapsulate (0.39 sec)

  1. guava/src/com/google/common/net/InetAddresses.java

        return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 2, 6));
      }
    
      /**
       * A simple immutable data class to encapsulate the information to be found in a Teredo address.
       *
       * <p>All of the fields in this class are encoded in various portions of the IPv6 address as part
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

        return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 2, 6));
      }
    
      /**
       * A simple immutable data class to encapsulate the information to be found in a Teredo address.
       *
       * <p>All of the fields in this class are encoded in various portions of the IPv6 address as part
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	// --authorization-mode
    	kc.Authorization.Mode = kubeletconfig.KubeletAuthorizationModeAlwaysAllow
    	// --read-only-port
    	kc.ReadOnlyPort = ports.KubeletReadOnlyPort
    }
    
    // KubeletServer encapsulates all of the parameters necessary for starting up
    // a kubelet. These can either be set via command line or directly.
    type KubeletServer struct {
    	KubeletFlags
    	kubeletconfig.KubeletConfiguration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        results_after_mapping.push_back(mapping.lookupOrDefault(result));
      }
    
      builder->create<ReturnOp>(ops.front()->getLoc(), results_after_mapping);
      return outlined_func;
    }
    
    // Encapsulates `func` in a module and serializes that module.
    // `serialized_func_module` is set to the serialized module.
    void EncapsulateFuncAndSerialize(FuncOp func,
                                     std::string* serialized_func_module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	"fmt"
    	"internal/abi"
    	"io"
    	"log"
    	"math/bits"
    	"os"
    	"sort"
    	"strings"
    )
    
    var _ = fmt.Print
    
    // Sym encapsulates a global symbol index, used to identify a specific
    // Go symbol. The 0-valued Sym is corresponds to an invalid symbol.
    type Sym = sym.LoaderSym
    
    // Relocs encapsulates the set of relocations on a given symbol; an
    // instance of this type is returned by the Loader Relocs() method.
    type Relocs struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    	profileName              string
    	percentageOfNodesToScore *int32
    
    	extenders []framework.Extender
    	framework.PodNominator
    
    	parallelizer parallelize.Parallelizer
    }
    
    // extensionPoint encapsulates desired and applied set of plugins at a specific extension
    // point. This is used to simplify iterating over all extension points supported by the
    // frameworkImpl.
    type extensionPoint struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. cmd/test-utils_test.go

    }
    
    // isSameType - compares two object types via reflect.TypeOf
    func isSameType(obj1, obj2 interface{}) bool {
    	return reflect.TypeOf(obj1) == reflect.TypeOf(obj2)
    }
    
    // TestServer encapsulates an instantiation of a MinIO instance with a temporary backend.
    // Example usage:
    //
    //	s := StartTestServer(t,"Erasure")
    //	defer s.Stop()
    type TestServer struct {
    	Root         string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Walks tf_executor::GraphOp and merges individual tf_executor::IslandOps.";
      let description = [{
        This pass performs whole graph analysis for a graph encapsulated into tf_executor::GraphOp.
        The analysis identifies all IslandOps within the graph which could be merged together.
        The goal is to merge as many islands as possible.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        backend.
    
        input:  A list of input tensors whose types are T.
        output: A list of output tensors whose types are T.
    
        call:  Multiple regions, each of which encapsulates the same semantic
               computation but in different forms.
      }];
    
      let arguments = (ins Variadic<AnyTensor>:$input);
    
      let results = (outs Variadic<AnyTensor>:$output);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top