Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sdscompare (0.23 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig.go

    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/kubeinject"
    	istioctlutil "istio.io/istio/istioctl/pkg/util"
    	sdscompare "istio.io/istio/istioctl/pkg/writer/compare/sds"
    	"istio.io/istio/istioctl/pkg/writer/envoy/clusters"
    	"istio.io/istio/istioctl/pkg/writer/envoy/configdump"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/quota_linux_test.go

    		}
    		if s != p {
    			t.Errorf("Case %v /etc/projects miscompare: expected\n`%s`\ngot\n`%s`\n", testcase.path, p, s)
    		}
    	}
    	bytes, err = os.ReadFile(projidFile)
    	if err != nil {
    		t.Error(err.Error())
    	} else {
    		s := string(bytes)
    		p := projidHeader
    		if enabled {
    			p += testcase.expectedProjid
    		}
    		if s != p {
    			t.Errorf("Case %v /etc/projid miscompare: expected\n`%s`\ngot\n`%s`\n", testcase.path, p, s)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/cmds.go

    				"File1 can be 'stdout' or 'stderr' to compare the script's stdout or stderr buffer.",
    			},
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    			return nil, doCompare(s, true, args...)
    		})
    }
    
    func doCompare(s *State, env bool, args ...string) error {
    	quiet := false
    	if len(args) > 0 && args[0] == "-q" {
    		quiet = true
    		args = args[1:]
    	}
    	if len(args) != 2 {
    		return ErrUsage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. test/codegen/memops.go

    	x[i+7] &= 77
    	// amd64: `ORQ\t[$]77, 64\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\)`
    	x[i+8] |= 77
    	// amd64: `XORQ\t[$]77, 72\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\)`
    	x[i+9] ^= 77
    }
    
    func idxCompare(i int) int {
    	// amd64: `MOVBLZX\t1\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*1\), [A-Z]+[0-9]*`
    	if x8[i+1] < x8[0] {
    		return 0
    	}
    	// amd64: `MOVWLZX\t2\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*2\), [A-Z]+[0-9]*`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top