Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for unchanged (0.56 sec)

  1. istioctl/pkg/workload/workload.go

    func validateFlagIsSetManuallyOrNot(istioCmd *cobra.Command, flagName string) bool {
    	if istioCmd != nil {
    		allPersistentFlagSet := istioCmd.PersistentFlags()
    		if flagName != "" {
    			return allPersistentFlagSet.Changed(flagName)
    		}
    	}
    	return false
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest-generate_test.go

    		// This one is not a selector, it must be an exact match
    		if sel := mustGetLabels(t, deployment, "spec.selector.matchLabels"); !reflect.DeepEqual(deploymentSelector, sel) {
    			t.Fatalf("Depployment selectors are immutable, but changed since 1.5. Was %v, now is %v", deploymentSelector, sel)
    		}
    	})
    }
    
    // This test enforces that objects that reference other objects do so properly, such as Service selecting deployment
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 43.5K bytes
    - Viewed (0)
Back to top