Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 127 for SplitV (0.15 sec)

  1. src/cmd/dist/test.go

    	cmd := exec.Command(gorootBinGo, "env", "CGO_ENABLED")
    	cmd.Stderr = new(bytes.Buffer)
    	slurp, err := cmd.Output()
    	if err != nil {
    		fatalf("Error running %s: %v\n%s", cmd, err, cmd.Stderr)
    	}
    	parts := strings.Split(string(slurp), "\n")
    	if nlines := len(parts) - 1; nlines < 1 {
    		fatalf("Error running %s: output contains <1 lines\n%s", cmd, cmd.Stderr)
    	}
    	t.cgoEnabled, _ = strconv.ParseBool(parts[0])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. pkg/apis/networking/validation/validation_test.go

    	for k, v := range errorCases {
    		errs := validateIngress(&v, IngressValidationOptions{})
    		if len(errs) == 0 {
    			t.Errorf("expected failure for %q", k)
    		} else {
    			s := strings.Split(k, ":")
    			err := errs[0]
    			if err.Field != s[0] || !strings.Contains(err.Error(), s[1]) {
    				t.Errorf("unexpected error: %q, expected: %q", err, k)
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	}
    	return mergeKeyLeft == mergeKeyRight, nil
    }
    
    // extractKey trims the prefix and return the original key
    func extractKey(s, prefix string) (string, error) {
    	substrings := strings.SplitN(s, "/", 2)
    	if len(substrings) <= 1 || substrings[0] != prefix {
    		switch prefix {
    		case deleteFromPrimitiveListDirectivePrefix:
    			return "", mergepatch.ErrBadPatchFormatForPrimitiveList
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    Resource resource: name: cpu targetAverageUtiliza: 80 --- apiVersion: v1 kind: ConfigMap metadata: name: istio-1-6-11 namespace: istio-system labels: istio.io/rev: 1-6-11 release: istio data: # Configuration file for the mesh networks to be used by the Split Horizon EDS. meshNetworks: |- networks: {} mesh: |- accessLogEncoding: TEXT accessLogFile: "" accessLogFormat: "" defaultConfig: concurrency: 2 configPath: ./etc/istio/proxy connectTimeout: 10s controlPlaneAuthPoli: NONE discoveryAddress: istiod-1...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    // when allocating pages from the heap.
    //
    // The scavenger's primary goal is to bring the estimated heap RSS of the
    // application down to a goal.
    //
    // Before we consider what this looks like, we need to split the world into two
    // halves. One in which a memory limit is not set, and one in which it is.
    //
    // For the former, the goal is defined as:
    //   (retainExtraPercent+100) / 100 * (heapGoal / lastHeapGoal) * lastHeapInUse
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/time/time.go

    // changes for clock synchronization, and a “monotonic clock,” which is
    // not. The general rule is that the wall clock is for telling time and
    // the monotonic clock is for measuring time. Rather than split the API,
    // in this package the Time returned by [time.Now] contains both a wall
    // clock reading and a monotonic clock reading; later time-telling
    // operations use the wall clock reading, but later time-measuring
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    				expectedDels := manager.expectations.GetUIDs(GetKey(rsSpec, t))
    				podsToDelete := []*v1.Pod{}
    				isController := true
    				for _, key := range expectedDels.List() {
    					nsName := strings.Split(key, "/")
    					podsToDelete = append(podsToDelete, &v1.Pod{
    						ObjectMeta: metav1.ObjectMeta{
    							Name:      nsName[1],
    							Namespace: nsName[0],
    							Labels:    rsSpec.Spec.Selector.MatchLabels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

        @Override
        protected FormatType detectFormatType(final HttpServletRequest request) {
            final String servletPath = request.getServletPath();
            final String[] values = servletPath.replaceAll("/+", "/").split("/");
            final String value = values.length > 3 ? values[3] : null;
            if (value == null) {
                return FormatType.SEARCH;
            }
            final String type = value.toLowerCase(Locale.ROOT);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	} else if errs := utilvalidation.IsDNS1123Subdomain(spec.Group); len(errs) > 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("group"), spec.Group, strings.Join(errs, ",")))
    	} else if len(strings.Split(spec.Group, ".")) < 2 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("group"), spec.Group, "should be a domain with at least one dot"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    // functions if they are used.
    func rewriteABIFuncReloc(ctxt *ld.Link, ldr *loader.Loader, tname string, r loader.Reloc) (sym loader.Sym, firstUse bool) {
    	s := strings.Split(tname, "_")
    	// A valid call will split like {"", "savegpr0", "20"}
    	if len(s) != 3 {
    		return 0, false // Not an abi func.
    	}
    	minReg := 14 // _savegpr0_{n}, _savegpr1_{n}, _savefpr_{n}, 14 <= n <= 31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top