Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Putmsg (0.21 sec)

  1. istioctl/pkg/checkinject/checkinject.go

    			} else if nsLabel != "" {
    				outMsg := fmt.Sprintf("Namespace label %s matches", nsLabel)
    				if strings.Contains(nsLabel, "kubernetes.io/metadata.name") {
    					outMsg += " (Automatic injection is enabled in all namespaces)."
    				}
    				return outMsg, true
    			} else if podLabel != "" {
    				return fmt.Sprintf("Pod label %s matches", podLabel), true
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/go/types/check_test.go

    				continue
    			}
    			if substr {
    				if !strings.Contains(gotMsg, unquoted) {
    					continue
    				}
    			} else {
    				rx, err := regexp.Compile(unquoted)
    				if err != nil {
    					t.Errorf("%s:%d:%d: %v", filename, line, want.col, err)
    					continue
    				}
    				if !rx.MatchString(gotMsg) {
    					continue
    				}
    			}
    			indices = append(indices, i)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check_test.go

    				continue
    			}
    			if substr {
    				if !strings.Contains(gotMsg, unquoted) {
    					continue
    				}
    			} else {
    				rx, err := regexp.Compile(unquoted)
    				if err != nil {
    					t.Errorf("%s:%d:%d: %v", filename, line, want.Pos.Col(), err)
    					continue
    				}
    				if !rx.MatchString(gotMsg) {
    					continue
    				}
    			}
    			indices = append(indices, i)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. internal/config/config.go

    	ErrConfigGeneric
    }
    
    // Error creates an error message and wraps
    // it with the error type specified in the type parameter
    func Error[T ErrorConfig, PT interface {
    	*T
    	setMsg(string)
    }](format string, vals ...interface{},
    ) T {
    	pt := PT(new(T))
    	pt.setMsg(fmt.Sprintf(format, vals...))
    	return *pt
    }
    
    // Errorf formats an error and returns it as a generic config error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"RtMetrics.Weight", Field, 0},
    		{"RtMsg", Type, 0},
    		{"RtMsg.Dst_len", Field, 0},
    		{"RtMsg.Family", Field, 0},
    		{"RtMsg.Flags", Field, 0},
    		{"RtMsg.Protocol", Field, 0},
    		{"RtMsg.Scope", Field, 0},
    		{"RtMsg.Src_len", Field, 0},
    		{"RtMsg.Table", Field, 0},
    		{"RtMsg.Tos", Field, 0},
    		{"RtMsg.Type", Field, 0},
    		{"RtMsghdr", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Prefixlen uint8
    	Flags     uint8
    	Scope     uint8
    	Index     uint32
    }
    
    type IfaCacheinfo struct {
    	Prefered uint32
    	Valid    uint32
    	Cstamp   uint32
    	Tstamp   uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top