Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,732 for fmtF (0.04 sec)

  1. istioctl/pkg/tag/generate.go

    		validationWhConfig, err := fixWhConfig(client, tagWhConfig)
    		if err != nil {
    			return "", fmt.Errorf("failed to create validating webhook config: %w", err)
    		}
    
    		vwhYAML, err := generateValidatingWebhook(validationWhConfig, opts)
    		if err != nil {
    			return "", fmt.Errorf("failed to create validating webhook: %w", err)
    		}
    		tagWhYAML = fmt.Sprintf(`%s
    %s
    %s`, tagWhYAML, helm.YAMLSeparator, vwhYAML)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/common_test.go

    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			`, gv)),
    			expectErr: true,
    		},
    		{
    			name: "unknown API produces error",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    			kind: Foo
    			`, gv)),
    			expectErr: true,
    		},
    		{
    			name: "InitConfiguration only gets migrated",
    			oldCfg: dedent.Dedent(fmt.Sprintf(`
    			apiVersion: %s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	if config.BufferSize <= 0 {
    		return fmt.Errorf("invalid audit batch %s buffer size %v, must be a positive number", pluginName, config.BufferSize)
    	}
    	if config.MaxBatchSize <= 0 {
    		return fmt.Errorf("invalid audit batch %s max batch size %v, must be a positive number", pluginName, config.MaxBatchSize)
    	}
    	if config.ThrottleEnable {
    		if config.ThrottleQPS <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  4. pkg/kubelet/userns/userns_manager.go

    		return nil, fmt.Errorf("kubelet user assigned ID %v must be greater or equal to %v", kubeletMappingID, userNsLength)
    	}
    	if kubeletMappingLen%userNsLength != 0 {
    		return nil, fmt.Errorf("kubelet user assigned IDs length %v is not a multiple of %v", kubeletMappingLen, userNsLength)
    	}
    	if kubeletMappingLen/userNsLength < uint32(kl.GetMaxPods()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. src/encoding/gob/debug.go

    	case tBool:
    		x := deb.int64()
    		if x == 0 {
    			fmt.Fprintf(os.Stderr, "%sfalse\n", indent)
    		} else {
    			fmt.Fprintf(os.Stderr, "%strue\n", indent)
    		}
    	case tInt:
    		x := deb.int64()
    		fmt.Fprintf(os.Stderr, "%s%d\n", indent, x)
    	case tUint:
    		x := deb.uint64()
    		fmt.Fprintf(os.Stderr, "%s%d\n", indent, x)
    	case tFloat:
    		x := deb.uint64()
    		fmt.Fprintf(os.Stderr, "%s%g\n", indent, float64FromBits(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_windows.go

    		return []uintptr{}, nil
    	}
    
    	finalSubPath, err := evalSymlink(hostPath)
    	if err != nil {
    		return []uintptr{}, fmt.Errorf("cannot evaluate link %s: %s", hostPath, err)
    	}
    
    	finalVolumePath, err := evalSymlink(volumePath)
    	if err != nil {
    		return []uintptr{}, fmt.Errorf("cannot read link %s: %s", volumePath, err)
    	}
    
    	return lockAndCheckSubPathWithoutSymlink(finalVolumePath, finalSubPath)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. src/text/template/funcs.go

    		"html":     HTMLEscaper,
    		"index":    index,
    		"slice":    slice,
    		"js":       JSEscaper,
    		"len":      length,
    		"not":      not,
    		"or":       or,
    		"print":    fmt.Sprint,
    		"printf":   fmt.Sprintf,
    		"println":  fmt.Sprintln,
    		"urlquery": URLQueryEscaper,
    
    		// Comparisons
    		"eq": eq, // ==
    		"ge": ge, // >=
    		"gt": gt, // >
    		"le": le, // <=
    		"lt": lt, // <
    		"ne": ne, // !=
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. istioctl/pkg/multicluster/remote_secret.go

    			if err != nil {
    				return err
    			}
    			out, warn, err := CreateRemoteSecret(client, opts)
    			if err != nil {
    				_, _ = fmt.Fprintf(c.OutOrStderr(), "error: %v\n", err)
    				return err
    			}
    			if warn != nil {
    				_, _ = fmt.Fprintf(c.OutOrStderr(), "warn: %v\n", warn)
    			}
    			_, _ = fmt.Fprint(c.OutOrStdout(), out)
    			return nil
    		},
    	}
    	opts.addFlags(c.PersistentFlags())
    	return c
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  9. istioctl/pkg/validate/validate.go

    				if protocol.Parse(ap.(string)).IsUnsupported() {
    					errs = multierror.Append(errs, fmt.Errorf("service %q doesn't follow Istio protocol selection. "+
    						"This is not recommended, See "+url.ProtocolSelection, fmt.Sprintf("%s/%s/:", un.GetName(), un.GetNamespace())))
    				}
    			} else {
    				if p["name"] == nil {
    					errs = multierror.Append(errs, fmt.Errorf("service %q has an unnamed port. This is not recommended,"+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. tools/docker-builder/types.go

    	b.WriteString("BaseVersion:       " + fmt.Sprint(a.BaseVersion) + "\n")
    	b.WriteString("BaseImageRegistry: " + fmt.Sprint(a.BaseImageRegistry) + "\n")
    	b.WriteString("ProxyVersion:      " + fmt.Sprint(a.ProxyVersion) + "\n")
    	b.WriteString("ZtunnelVersion:    " + fmt.Sprint(a.ZtunnelVersion) + "\n")
    	b.WriteString("IstioVersion:      " + fmt.Sprint(a.IstioVersion) + "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top