Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,924 for SplitV (0.22 sec)

  1. pkg/bootstrap/config.go

    // ParseDownwardAPI parses fields which are stored as format `%s=%q` back to a map
    func ParseDownwardAPI(i string) (map[string]string, error) {
    	res := map[string]string{}
    	for _, line := range strings.Split(i, "\n") {
    		sl := strings.SplitN(line, "=", 2)
    		if len(sl) != 2 {
    			continue
    		}
    		key := sl[0]
    		// Strip the leading/trailing quotes
    		val, err := strconv.Unquote(sl[1])
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/openshift.go

    	"fmt"
    	"strings"
    
    	securityv1 "github.com/openshift/api/security/v1"
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/log"
    )
    
    // getPreallocatedUIDRange retrieves the annotated value from the namespace, splits it to make
    // the min/max and formats the data into the necessary types for the strategy options.
    func getPreallocatedUIDRange(ns *corev1.Namespace) (*int64, *int64, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/trace/main.go

    func (t *parsedTrace) endTime() trace.Time {
    	return t.events[len(t.events)-1].Time()
    }
    
    // splitTrace splits the trace into a number of ranges, each resulting in approx 100 MiB of
    // json output (the trace viewer can hardly handle more).
    func splitTrace(parsed *parsedTrace) ([]traceviewer.Range, error) {
    	// TODO(mknyszek): Split traces by generation by doing a quick first pass over the
    	// trace to identify all the generation boundaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/security.go

    	re(`-pthread`),
    	re(`-rdynamic`),
    	re(`-shared`),
    	re(`-?-static([-a-z0-9+]*)`),
    	re(`-?-stdlib=([^@\-].*)`),
    	re(`-v`),
    
    	// Note that any wildcards in -Wl need to exclude comma,
    	// since -Wl splits its argument at commas and passes
    	// them all to the linker uninterpreted. Allowing comma
    	// in a wildcard would allow tunneling arbitrary additional
    	// linker arguments through one of these.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/model/generator.go

    }
    
    type envoyFilterGenerator struct{}
    
    func (efg envoyFilterGenerator) permission(key, value string, _ bool) (*rbacpb.Permission, error) {
    	// Split key of format "experimental.envoy.filters.a.b[c]" to "envoy.filters.a.b" and "c".
    	parts := strings.SplitN(strings.TrimSuffix(strings.TrimPrefix(key, "experimental."), "]"), "[", 2)
    
    	if len(parts) != 2 {
    		return nil, fmt.Errorf("invalid key: %v", key)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h

    bool IsReplicatedSharding(const xla::OpSharding& sharding);
    
    // Returns a map of dimension indices and number of splits for tiled sharding.
    absl::StatusOr<std::map<int, int>> GetDimensionIndicesAndNumSplitsFromSharding(
        const xla::OpSharding& sharding);
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:18:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/DocsTest.kt

    mkdir test-splits
    del /f /q test-splits\include-test-classes.properties
    del /f /q test-splits\exclude-test-classes.properties
    (
    $linesWithEcho
    ) > test-splits\$action-test-classes.properties
    echo "Tests to be ${action}d in this build"
    type test-splits\$action-test-classes.properties
    """
    
        return {
            script {
                name = "PREPARE_TEST_CLASSES"
                executionMode = BuildStep.ExecutionMode.ALWAYS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/runtime/mspanset.go

    	return uint32(h >> 32)
    }
    
    // tail returns the tail of a headTailIndex value.
    func (h headTailIndex) tail() uint32 {
    	return uint32(h)
    }
    
    // split splits the headTailIndex value into its parts.
    func (h headTailIndex) split() (head uint32, tail uint32) {
    	return h.head(), h.tail()
    }
    
    // atomicHeadTailIndex is an atomically-accessed headTailIndex.
    type atomicHeadTailIndex struct {
    	u atomic.Uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_split.txt

    go get example.net/...@none
    go get example.net/split/...@v0.1.0
    go list -m all
    stdout '^example.net/split v0.1.0 '
    
    
    -- go.mod --
    module m
    
    go 1.16
    
    require example.net/split v0.2.0
    
    replace (
    	example.net/split v0.1.0 => ./split.1
    	example.net/split v0.2.0 => ./split.2
    	example.net/split v0.2.1 => ./split.2
    	example.net/split v0.3.0 => ./split.3
    	example.net/split/nested v0.0.0 => ./nested.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. cmd/sftp-server.go

    			allowPubKeys = filterAlgos(arg, strings.Split(tokens[1], ","), supportedPubKeyAuthAlgos)
    		case "kex-algos":
    			allowKexAlgos = filterAlgos(arg, strings.Split(tokens[1], ","), supportedKexAlgos)
    		case "cipher-algos":
    			allowCiphers = filterAlgos(arg, strings.Split(tokens[1], ","), supportedCiphers)
    		case "mac-algos":
    			allowMACs = filterAlgos(arg, strings.Split(tokens[1], ","), supportedMACs)
    		case "trusted-user-ca-key":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top