Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Putmsg (0.08 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. pkg/proto/merge/merge.go

    	for _, opt := range opts {
    		mo = opt(mo)
    	}
    	dstMsg, srcMsg := dst.ProtoReflect(), src.ProtoReflect()
    	if dstMsg.Descriptor() != srcMsg.Descriptor() {
    		if got, want := dstMsg.Descriptor().FullName(), srcMsg.Descriptor().FullName(); got != want {
    			panic(fmt.Sprintf("descriptor mismatch: %v != %v", got, want))
    		}
    		panic("descriptor mismatch")
    	}
    	mo.mergeMessage(dstMsg, srcMsg)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 17:31:22 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top