Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 230 for Extract (1.52 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

      }
    
      *cluster_idx = tensorflow::MovePreservedParallelExecuteChildren(
          num_cores_per_replica, concatenated_output_types, builder, cluster_func,
          old_parallel_execute, new_parallel_execute);
    
      // Extract inputs for each block of the parallel_execute op. The i-th
      // element in the list represents the input lists to TPU computation for
      // i-th logical core.
      llvm::SmallVector<llvm::SmallVector<mlir::Value, 4>, 4> input_list;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/InetAddresses.java

       */
      public static boolean hasEmbeddedIPv4ClientAddress(Inet6Address ip) {
        return isCompatIPv4Address(ip) || is6to4Address(ip) || isTeredoAddress(ip);
      }
    
      /**
       * Examines the Inet6Address to extract the embedded IPv4 client address if the InetAddress is an
       * IPv6 address of one of the specified address types that contain an embedded IPv4 address.
       *
    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. pilot/pkg/bootstrap/istio_ca.go

    // 2. Use kubernetes ca cert `/var/run/secrets/kubernetes.io/serviceaccount/ca.crt` if signer is
    //
    //	kubernetes built-in `kubernetes.io/legacy-unknown" signer
    //
    // 3. Extract from the cert-chain signed by other CSR signer.
    func (s *Server) createIstioRA(opts *caOptions) (ra.RegistrationAuthority, error) {
    	caCertFile := path.Join(ra.DefaultExtCACertDir, constants.CACertNamespaceConfigMapDataName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/security/oauth2-scopes.md

        ```Python hl_lines="106  108-116"
        {!> ../../../docs_src/security/tutorial005.py!}
        ```
    
    ## Verify the `username` and data shape
    
    We verify that we get a `username`, and extract the scopes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Splitter.java

     * {@link #on(CharMatcher) CharMatcher} instance. Or, instead of using a separator at all, a
     * splitter can extract adjacent substrings of a given {@linkplain #fixedLength fixed length}.
     *
     * <p>For example, this expression:
     *
     * <pre>{@code
     * Splitter.on(',').split("foo,bar,qux")
     * }</pre>
     *
     * ... produces an {@code Iterable} containing {@code "foo"}, {@code "bar"} and {@code "qux"}, in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. src/go/doc/example.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Extract example functions from file ASTs.
    
    package doc
    
    import (
    	"cmp"
    	"go/ast"
    	"go/token"
    	"internal/lazyregexp"
    	"path"
    	"slices"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/memcombine.go

    	if root.Block.Func.Config.arch == "S390X" {
    		// s390x can't handle unaligned accesses to global variables.
    		if base.ptr.Op == OpAddr {
    			return false
    		}
    	}
    
    	// Check all the entries, extract useful info.
    	type LoadRecord struct {
    		load   *Value
    		offset int64 // offset of load address from base
    		shift  int64
    	}
    	r := make([]LoadRecord, n, 8)
    	for i := int64(0); i < n; i++ {
    		v := a[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InetAddresses.java

       */
      public static boolean hasEmbeddedIPv4ClientAddress(Inet6Address ip) {
        return isCompatIPv4Address(ip) || is6to4Address(ip) || isTeredoAddress(ip);
      }
    
      /**
       * Examines the Inet6Address to extract the embedded IPv4 client address if the InetAddress is an
       * IPv6 address of one of the specified address types that contain an embedded IPv4 address.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// and should, therefore, not be accessed from outside the cluster.
    	isClusterLocal := b.clusterLocal
    	var eps []*model.IstioEndpoint
    	shards.RLock()
    	defer shards.RUnlock()
    	// Extract shard keys so we can iterate in order. This ensures a stable EDS output.
    	keys := shards.Keys()
    	// The shards are updated independently, now need to filter and merge for this cluster
    	for _, shardKey := range keys {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    }
    
    // A tagCmd describes a command to list available tags
    // that can be passed to tagSyncCmd.
    type tagCmd struct {
    	cmd     string // command to list tags
    	pattern string // regexp to extract tags from list
    }
    
    // vcsList lists the known version control systems
    var vcsList = []*Cmd{
    	vcsHg,
    	vcsGit,
    	vcsSvn,
    	vcsBzr,
    	vcsFossil,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top