Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 275 for bargs (0.51 sec)

  1. src/cmd/go/internal/work/gccgo.go

    				return "", nil, err
    			}
    			args = append(args, "-I", root)
    		}
    	}
    	if embedcfg != nil && b.gccSupportsFlag(args[:1], "-fgo-embedcfg=/dev/null") {
    		if err := sh.writeFile(objdir+"embedcfg", embedcfg); err != nil {
    			return "", nil, err
    		}
    		args = append(args, "-fgo-embedcfg="+objdir+"embedcfg")
    	}
    
    	if b.gccSupportsFlag(args[:1], "-ffile-prefix-map=a=b") {
    		if cfg.BuildTrimpath {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    func Test_clusterMatch(t *testing.T) {
    	type args struct {
    		proxy          *model.Proxy
    		cluster        *cluster.Cluster
    		matchCondition *networking.EnvoyFilter_EnvoyConfigObjectMatch
    		operation      networking.EnvoyFilter_Patch_Operation
    		host           host.Name
    	}
    	tests := []struct {
    		name string
    		args args
    		want bool
    	}{
    		{
    			name: "name mismatch",
    			args: args{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/os/exec/exec_test.go

    	"hang":          cmdHang,
    }
    
    func cmdEcho(args ...string) {
    	iargs := []any{}
    	for _, s := range args {
    		iargs = append(iargs, s)
    	}
    	fmt.Println(iargs...)
    }
    
    func cmdEchoEnv(args ...string) {
    	for _, s := range args {
    		fmt.Println(os.Getenv(s))
    	}
    }
    
    func cmdCat(args ...string) {
    	if len(args) == 0 {
    		io.Copy(os.Stdout, os.Stdin)
    		return
    	}
    	exit := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  4. cni/pkg/plugin/plugin_test.go

    	}
    }
    
    func Test_dedupPorts(t *testing.T) {
    	type args struct {
    		ports []string
    	}
    	tests := []struct {
    		name string
    		args args
    		want []string
    	}{
    		{
    			name: "No duplicates",
    			args: args{ports: []string{"1234", "2345"}},
    			want: []string{"1234", "2345"},
    		},
    		{
    			name: "Sequential Duplicates",
    			args: args{ports: []string{"1234", "1234", "2345", "2345"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/options/options_test.go

    								Name: "InterPodAffinity",
    								Args: &kubeschedulerconfig.InterPodAffinityArgs{
    									HardPodAffinityWeight: 2,
    								},
    							},
    							{
    								Name: "foo",
    								Args: &runtime.Unknown{
    									Raw:         []byte(`{"bar":"baz"}`),
    									ContentType: "application/json",
    								},
    							},
    							{
    								Name: "DefaultPreemption",
    								Args: &kubeschedulerconfig.DefaultPreemptionArgs{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin.go

    		}
    	}()
    
    	conf, err := parseConfig(args.StdinData)
    	if err != nil {
    		log.Errorf("istio-cni cmdAdd failed to parse config %v %v", string(args.StdinData), err)
    		return err
    	}
    
    	// Create a kube client
    	client, err := newK8sClient(*conf)
    	if err != nil {
    		return err
    	}
    
    	// Actually do the add
    	if err := doAddRun(args, conf, client, IptablesInterceptRuleMgr()); err != nil {
    		return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/runtime/stkframe.go

    type reflectMethodValue struct {
    	fn     uintptr
    	stack  *bitvector // ptrmap for both args and results
    	argLen uintptr    // just args
    }
    
    // argBytes returns the argument frame size for a call to frame.fn.
    func (frame *stkframe) argBytes() uintptr {
    	if frame.fn.args != abi.ArgsSizeUnknown {
    		return uintptr(frame.fn.args)
    	}
    	// This is an uncommon and complicated case. Fall back to fully
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/jwks_resolver_test.go

    		{"testNewNoKeys", args{test.JwtPubKey1, test.JwtPubKeyNoKeys}, true, false},
    		{"testOldNoKeys", args{test.JwtPubKeyNoKeys, test.JwtPubKey1}, true, false},
    		{"testBothNoKeysSame", args{test.JwtPubKeyNoKeys, test.JwtPubKeyNoKeys}, false, false},
    		{"testBothNoKeysDifferent", args{test.JwtPubKeyNoKeys, test.JwtPubKeyNoKeys2}, true, false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Strings.java

      public static String lenientFormat(
          @CheckForNull String template, @CheckForNull @Nullable Object... args) {
        template = String.valueOf(template); // null -> "null"
    
        if (args == null) {
          args = new Object[] {"(Object[])null"};
        } else {
          for (int i = 0; i < args.length; i++) {
            args[i] = lenientToString(args[i]);
          }
        }
    
        // start substituting the arguments into the '%s' placeholders
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:47:03 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/branchelim.go

    		// because it requires three instructions (OR, MASKEQZ, MASKNEZ) and will increase the
    		// register pressure.
    		if !(v.Args[0].isGenericIntConst() && v.Args[0].AuxInt == 0) &&
    			!(v.Args[1].isGenericIntConst() && v.Args[1].AuxInt == 0) {
    			return false
    		}
    	}
    	// For now, stick to simple scalars that fit in registers
    	switch {
    	case v.Type.Size() > v.Block.Func.Config.RegSize:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
Back to top