Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,692 for fmtF (0.15 sec)

  1. src/go/build/deps_test.go

    	arena, strconv, unicode
    	< reflect;
    
    	os, reflect
    	< internal/fmtsort
    	< fmt;
    
    	OS, fmt
    	< FMT;
    
    	log !< FMT;
    
    	# Misc packages needing only FMT.
    	FMT
    	< html,
    	  internal/dag,
    	  internal/goroot,
    	  internal/types/errors,
    	  mime/quotedprintable,
    	  net/internal/socktest,
    	  net/url,
    	  runtime/trace,
    	  text/scanner,
    	  text/tabwriter;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pkg/api/pod/warnings.go

    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.11, non-functional in v1.16+", fieldPath.Child("spec", "volumes").Index(i).Child("photonPersistentDisk")))
    		}
    		if v.GitRepo != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.11", fieldPath.Child("spec", "volumes").Index(i).Child("gitRepo")))
    		}
    		if v.ScaleIO != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	case Endian:
    
    	case Imm:
    		return fmt.Sprintf("$%d", uint32(a))
    
    	case Mem:
    
    	case PCRel:
    		addr := uint32(pc) + 8 + uint32(a)
    		if s, base := symname(uint64(addr)); s != "" && uint64(addr) == base {
    			return fmt.Sprintf("%s(SB)", s)
    		}
    		return fmt.Sprintf("%#x", addr)
    
    	case Reg:
    		if a < 16 {
    			return fmt.Sprintf("R%d", int(a))
    		}
    
    	case RegList:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

    						break
    					}
    					if time.Since(startTime) > waitTimeout {
    						errorMsg := fmt.Sprintf("timed out while waiting for waypoint %v/%v", gw.Namespace, gw.Name)
    						if err != nil {
    							errorMsg += fmt.Sprintf(": %s", err)
    						}
    						return fmt.Errorf(errorMsg)
    					}
    				}
    			}
    			fmt.Fprintf(cmd.OutOrStdout(), "waypoint %v/%v applied\n", gw.Namespace, gw.Name)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pkg/wasm/imagefetcher.go

    			return ret, nil
    		}
    
    		// We failed to parse the image in any format, so wrap the errors and return.
    		return nil, fmt.Errorf("the given image is in invalid format as an OCI image: %v",
    			multierror.Append(err,
    				fmt.Errorf("could not parse as compat variant: %v", errCompat),
    				fmt.Errorf("could not parse as oci variant: %v", errOCI),
    			),
    		)
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/listener.go

    			})
    			for _, match := range matches {
    				if includeConfigType {
    					name := fmt.Sprintf("listener/%s", l.Name)
    					fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\n", name, strings.Join(addresses, ","), port, match.match, match.destination)
    				} else {
    					fmt.Fprintf(w, "%v\t%v\t%v\t%v\n", strings.Join(addresses, ","), port, match.match, match.destination)
    				}
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. plugin/pkg/admission/noderestriction/admission.go

    func (p *Plugin) ValidateInitialization() error {
    	if p.nodeIdentifier == nil {
    		return fmt.Errorf("%s requires a node identifier", PluginName)
    	}
    	if p.podsGetter == nil {
    		return fmt.Errorf("%s requires a pod getter", PluginName)
    	}
    	if p.nodesGetter == nil {
    		return fmt.Errorf("%s requires a node getter", PluginName)
    	}
    	return nil
    }
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    		return nil
    	}
    	return fmt.Errorf("port number %d must be in the range 1..65535", port)
    }
    
    // encapsulates DNS 1123 checks common to both wildcarded hosts and FQDNs
    func CheckDNS1123Preconditions(name string) error {
    	if len(name) > 255 {
    		return fmt.Errorf("domain name %q too long (max 255)", name)
    	}
    	if len(name) == 0 {
    		return fmt.Errorf("empty domain name not allowed")
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/model/generator.go

    	return nil, fmt.Errorf("unimplemented")
    }
    
    func (envoyFilterGenerator) extendedPrincipal(_ string, _ []string, _ bool) (*rbacpb.Principal, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    type srcIPGenerator struct{}
    
    func (srcIPGenerator) permission(_, _ string, _ bool) (*rbacpb.Permission, error) {
    	return nil, fmt.Errorf("unimplemented")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pkg/config/validation/envoyfilter/envoyfilter.go

    			errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: missing applyTo")) // nolint: stylecheck
    			continue
    		}
    		if cp.Patch == nil {
    			errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: missing patch")) // nolint: stylecheck
    			continue
    		}
    		if cp.Patch.Operation == networking.EnvoyFilter_Patch_INVALID {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top