Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 127 for SplitV (0.31 sec)

  1. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    metadata: name: istio-1-9-5 namespace: istio-system labels: istio.io/rev: 1-9-5 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" release: istio data: # Configuration file for the mesh networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- defaultConfig: discoveryAddress: istiod-1-9-5.istio-system.svc:15012 proxyMetadata: {} tracing: zipkin: address: zipkin.istio-system:9411 enablePrometheusMerg: true rootNamespace: istio-system trustDomain:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			replicasPathInCustomResource[schema.GroupVersion{Group: crd.Spec.Group, Version: v.Name}.String()] = nil
    			continue
    		}
    		path := fieldpath.Path{}
    		splitReplicasPath := strings.Split(strings.TrimPrefix(subresources.Scale.SpecReplicasPath, "."), ".")
    		for _, element := range splitReplicasPath {
    			s := element
    			path = append(path, fieldpath.PathElement{FieldName: &s})
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, crtdbase)
    	}
    
    	if ctxt.linkShared {
    		seenDirs := make(map[string]bool)
    		seenLibs := make(map[string]bool)
    		addshlib := func(path string) {
    			dir, base := filepath.Split(path)
    			if !seenDirs[dir] {
    				argv = append(argv, "-L"+dir)
    				if !rpath.set {
    					argv = append(argv, "-Wl,-rpath="+dir)
    				}
    				seenDirs[dir] = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				b.plugins.unshift("core");
    				// only unique plugins
    				b.plugins = b.plugins.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",");
    
    				// extend defaults with passed data
    				s = $.extend(true, {}, $.jstree.defaults, b);
    				s.plugins = b.plugins;
    				$.each(plugins, function (i, val) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    type wantConnQueue struct {
    	// This is a queue, not a deque.
    	// It is split into two stages - head[headPos:] and tail.
    	// popFront is trivial (headPos++) on the first stage, and
    	// pushBack is trivial (append) on the second stage.
    	// If the first stage is empty, popFront can swap the
    	// first and second stages to remedy the situation.
    	//
    	// This two-stage split is analogous to the use of two lists
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	)
    
    	annotations := attr.GetAnnotations(auditinternal.LevelMetadata)
    	require.Equal(t, 1, len(annotations))
    	value := annotations[policy.Name+"/example-key"]
    	parts := strings.Split(value, ", ")
    	require.Equal(t, 2, len(parts))
    	require.Contains(t, parts, "normal-value", "special-value")
    
    	require.ErrorContains(t, err, "example error")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		panic("too many registers")
    	}
    	num := map[string]int{}
    	for i, name := range regNamesS390X {
    		num[name] = i
    	}
    	buildReg := func(s string) regMask {
    		m := regMask(0)
    		for _, r := range strings.Split(s, " ") {
    			if n, ok := num[r]; ok {
    				m |= regMask(1) << uint(n)
    				continue
    			}
    			panic("register " + r + " not found")
    		}
    		return m
    	}
    
    	// Common individual register masks
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. cmd/batch-handlers.go

    		opts.VersionID = ""
    	}
    	if crypto.S3.IsEncrypted(srcObjInfo.UserDefined) {
    		opts.ServerSideEncryption = encrypt.NewSSE()
    	}
    	slc := strings.Split(srcObjInfo.ETag, "-")
    	if len(slc) == 2 {
    		partsCount, err := strconv.Atoi(slc[1])
    		if err != nil {
    			return err
    		}
    		return r.copyWithMultipartfromSource(ctx, api, core, srcObjInfo, opts, partsCount)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    func newWrappedManagerImpl(socketPath string, manager *ManagerImpl) *wrappedManagerImpl {
    	w := &wrappedManagerImpl{
    		ManagerImpl: manager,
    		callback:    manager.genericDeviceUpdateCallback,
    	}
    	w.socketdir, _ = filepath.Split(socketPath)
    	w.server, _ = plugin.NewServer(socketPath, w, w)
    	return w
    }
    
    type wrappedManagerImpl struct {
    	*ManagerImpl
    	socketdir string
    	callback  func(string, []pluginapi.Device)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // RUN: tf-opt %s -pass-pipeline='builtin.module(tf-executor-convert-control-to-data-outputs{composite-tpuexecute-side-effects})' -split-input-file -verify-diagnostics | FileCheck %s
    
    !tf_res = tensor<!tf_type.resource<tensor<f32>>>
    
    // Tests independent chains of two resources.
    
    // CHECK-LABEL: func @simple_independent_chains_while_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
Back to top