Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,892 for arns (0.06 sec)

  1. pilot/pkg/status/distribution/state_test.go

    	},
    	ValidationMessages: nil,
    }
    
    func TestReconcileStatuses(t *testing.T) {
    	type args struct {
    		current *config.Config
    		desired Progress
    	}
    	tests := []struct {
    		name  string
    		args  args
    		want  bool
    		want1 *v1alpha1.IstioStatus
    	}{
    		{
    			name: "Don't Reconcile when other fields are the only diff",
    			args: args{
    				current: &config.Config{Status: statusStillPropagating},
    				desired: Progress{1, 2},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 22 22:47:47 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/ytab.go

    	// If we had exact yt.args length, it could be `yt.argc != len(args)`.
    	if len(args) < len(yt.args) && yt.args[len(args)] != Yxxx {
    		return false
    	}
    
    	for i := range args {
    		if ycover[args[i]+int(yt.args[i])] == 0 {
    			return false
    		}
    	}
    
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 15:40:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 1, inst.Args[1], PC))
    			buf.WriteString(asm)
    			startArg = 3
    		}
    
    	case "mtfsf", "mtfsf.":
    		buf.WriteString(opName)
    		l := inst.Args[3].(Imm)
    		if l == 0 {
    			// L == 0 is an extended mnemonic for the same.
    			asm := fmt.Sprintf(" %s,%s,%s",
    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 1, inst.Args[1], PC),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            }
        }
    
        private List args(Class mainClass, String... args) {
            GUtil.flattenElements(mainClass.getName(), args)
        }
    
        public static class BrokenApp {
            public static void main(String[] args) {
                System.exit(72)
            }
        }
    
        public static class SlowApp {
            public static void main(String[] args) throws InterruptedException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  5. operator/pkg/name/name_test.go

    	"istio.io/istio/operator/pkg/util"
    )
    
    func TestGetFromTreePath(t *testing.T) {
    	type args struct {
    		inputTree string
    		path      util.Path
    	}
    
    	tests := []struct {
    		name    string
    		args    args
    		want    string
    		found   bool
    		wantErr bool
    	}{
    		{
    			name: "found string node",
    			args: args{
    				inputTree: `
    k1: v1
    `,
    				path: util.Path{"k1"},
    			},
    			want: `
    v1
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 14:08:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. internal/config/policy/plugin/config.go

    	}
    	if err = args.Validate(); err != nil {
    		return args, err
    	}
    	return args, nil
    }
    
    // New - initializes Authorization Management Plugin.
    func New(args Args) *AuthZPlugin {
    	if args.URL == nil || args.URL.Scheme == "" && args.AuthToken == "" {
    		return nil
    	}
    	return &AuthZPlugin{
    		args:   args,
    		client: &http.Client{Transport: args.Transport},
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (1)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/metrics_test.go

    	type fields struct {
    		conversionWebhookRequest *metrics.CounterVec
    		conversionWebhookLatency *metrics.HistogramVec
    	}
    	type args struct {
    		elapsed time.Duration
    	}
    	tests := []struct {
    		name                 string
    		fields               fields
    		args                 args
    		wantLabels           map[string]string
    		expectedRequestValue int
    	}{
    		{
    			name: "test_conversion_success",
    			fields: fields{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:34:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/tool-chains/groovy/build.gradle

                    cppCompiler.withArguments { args ->
                        args << "-DFRENCH"
                    }
                }
            }
            clang(Clang) {
                eachPlatform {
                    cCompiler.withArguments { args ->
                        Collections.replaceAll(args, "CUSTOM", "-DFRENCH")
                    }
                    linker.withArguments { args ->
                        args.remove "CUSTOM"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/script/cmds.go

    			},
    		},
    		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
    	}
    
    	name1, name2 := args[0], args[1]
    	var text1, text2 string
    	switch name1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. cmd/local-locker.go

    	// lock on all resources at once.
    	for i, resource := range args.Resources {
    		l.lockMap[resource] = []lockRequesterInfo{
    			{
    				Name:            resource,
    				Writer:          true,
    				Source:          args.Source,
    				Owner:           args.Owner,
    				UID:             args.UID,
    				Timestamp:       UTCNow(),
    				TimeLastRefresh: UTCNow(),
    				Group:           len(args.Resources) > 1,
    				Quorum:          args.Quorum,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top