Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,732 for fmtF (0.07 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    			return nil, fmt.Errorf("expected webhook response of %v, got %v", v1GVK.String(), response.GroupVersionKind().String())
    		}
    
    		if response.Response == nil {
    			return nil, fmt.Errorf("no response provided")
    		}
    
    		// Verify UID to make sure this response was actually meant for the request we sent
    		if response.Response.UID != expectedUID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  4. pkg/volume/util/subpath/subpath_linux.go

    	if err != nil && !os.IsExist(err) {
    		return false, "", fmt.Errorf("error creating directory %s: %s", bindParent, err)
    	}
    
    	t, err := os.Lstat(subpath.Path)
    	if err != nil {
    		return false, "", fmt.Errorf("lstat %s failed: %s", subpath.Path, err)
    	}
    
    	if t.Mode()&os.ModeDir > 0 {
    		if err = os.Mkdir(bindPathTarget, 0750); err != nil && !os.IsExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  5. src/internal/profile/profile.go

    	if pt := p.PeriodType; pt != nil {
    		ss = append(ss, fmt.Sprintf("PeriodType: %s %s", pt.Type, pt.Unit))
    	}
    	ss = append(ss, fmt.Sprintf("Period: %d", p.Period))
    	if p.TimeNanos != 0 {
    		ss = append(ss, fmt.Sprintf("Time: %v", time.Unix(0, p.TimeNanos)))
    	}
    	if p.DurationNanos != 0 {
    		ss = append(ss, fmt.Sprintf("Duration: %v", time.Duration(p.DurationNanos)))
    	}
    
    	ss = append(ss, "Samples:")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. tests/integration/pilot/istioctl_test.go

    				{
    					name: "ingressgateway",
    					pod:  fmt.Sprintf("%s.%s", gwPod, i.Settings().SystemNamespace),
    					wants: []*regexp.Regexp{
    						regexp.MustCompile(fmt.Sprintf(`DENY\s+deny-policy\.%s\s+2`, i.Settings().SystemNamespace)),
    						regexp.MustCompile(fmt.Sprintf(`ALLOW\s+allow-policy\.%s\s+1`, i.Settings().SystemNamespace)),
    					},
    				},
    				{
    					name: "workload",
    					pod:  fmt.Sprintf("%s.%s", appPod, apps.Namespace.Name()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. istioctl/pkg/admin/istiodconfig.go

    			},
    		)
    	}
    	switch ga.outputFormat {
    	case "short":
    		w := new(tabwriter.Writer).Init(out, 0, 8, 3, ' ', 0)
    		_, _ = fmt.Fprintln(w, "ACTIVE SCOPE\tDESCRIPTION\tLOG LEVEL")
    		for _, sll := range resultScopeLogLevel {
    			_, _ = fmt.Fprintf(w, "%s\t%s\t%s\n", sll.ScopeName, sll.Description, sll.LogLevel)
    		}
    		return w.Flush()
    	case "json", "yaml":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. pkg/kubelet/logs/container_log_manager.go

    	if err != nil {
    		return fmt.Errorf("failed to get container status %q: %v", containerID, err)
    	}
    	if resp.GetStatus() == nil {
    		return fmt.Errorf("container status is nil for %q", containerID)
    	}
    	pattern := fmt.Sprintf("%s*", resp.GetStatus().GetLogPath())
    	logs, err := c.osInterface.Glob(pattern)
    	if err != nil {
    		return fmt.Errorf("failed to list all log files with pattern %q: %v", pattern, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case W0 <= r && r <= W30:
    		return fmt.Sprintf("W%d", int(r-W0))
    	case X0 <= r && r <= X30:
    		return fmt.Sprintf("X%d", int(r-X0))
    
    	case B0 <= r && r <= B31:
    		return fmt.Sprintf("B%d", int(r-B0))
    	case H0 <= r && r <= H31:
    		return fmt.Sprintf("H%d", int(r-H0))
    	case S0 <= r && r <= S31:
    		return fmt.Sprintf("S%d", int(r-S0))
    	case D0 <= r && r <= D31:
    		return fmt.Sprintf("D%d", int(r-D0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    		return
    	}
    	title := labels[0]
    	fmt.Fprintf(b, `subgraph cluster_L { "%s" [shape=box fontsize=16`, escapeForDot(title))
    	fmt.Fprintf(b, ` label="%s\l"`, strings.Join(escapeAllForDot(labels), `\l`))
    	if b.config.LegendURL != "" {
    		fmt.Fprintf(b, ` URL="%s" target="_blank"`, b.config.LegendURL)
    	}
    	if b.config.Title != "" {
    		fmt.Fprintf(b, ` tooltip="%s"`, b.config.Title)
    	}
    	fmt.Fprintf(b, "] }\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
Back to top