Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,798 for argps (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/logger.go

    	klog.ErrorDepth(klogWrapperDepth, args...)
    }
    
    func (klogWrapper) Errorln(args ...interface{}) {
    	klog.ErrorDepth(klogWrapperDepth, fmt.Sprintln(args...))
    }
    
    func (klogWrapper) Errorf(format string, args ...interface{}) {
    	klog.ErrorDepth(klogWrapperDepth, fmt.Sprintf(format, args...))
    }
    
    func (klogWrapper) Fatal(args ...interface{}) {
    	klog.FatalDepth(klogWrapperDepth, args...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. src/net/rpc/server_test.go

    	if args.B == 0 {
    		return errors.New("divide by zero")
    	}
    	reply.C = args.A / args.B
    	return nil
    }
    
    func (t *Arith) String(args *Args, reply *string) error {
    	*reply = fmt.Sprintf("%d+%d=%d", args.A, args.B, args.A+args.B)
    	return nil
    }
    
    func (t *Arith) Scan(args string, reply *Reply) (err error) {
    	_, err = fmt.Sscan(args, &reply.C)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
  3. cmd/kubeadm/test/cmd/init_test.go

    	initTest := []struct {
    		name     string
    		args     string
    		expected bool
    	}{
    		{
    			name:     "invalid token size",
    			args:     "--token=abcd:1234567890abcd",
    			expected: false,
    		},
    		{
    			name:     "invalid token non-lowercase",
    			args:     "--token=Abcdef:1234567890abcdef",
    			expected: false,
    		},
    		{
    			name:     "valid token is accepted",
    			args:     "--token=abcdef.0123456789abcdef",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppCompilerArgsTransformer.java

        @Override
        public List<String> transform(T spec) {
            List<String> args = new ArrayList<>();
            addToolSpecificArgs(spec, args);
            addMacroArgs(spec, args);
            addUserArgs(spec, args);
            addIncludeArgs(spec, args);
            return args;
        }
    
        private void addUserArgs(T spec, List<String> args) {
            args.addAll(escapeUserArgs(spec.getAllArgs()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. pkg/probe/util_test.go

    	}
    	tests := []struct {
    		name    string
    		args    args
    		want    int
    		wantErr bool
    	}{
    		{
    			name: "get port by int type",
    			args: args{
    				param:     intstr.IntOrString{Type: 0, IntVal: 443},
    				container: &v1.Container{},
    			},
    			want:    443,
    			wantErr: false,
    		},
    		{
    			name: "invalid port",
    			args: args{
    				param:     intstr.IntOrString{Type: 0, IntVal: 66666},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 06:14:41 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compilation_cluster_signature_test.cc

      std::vector<XlaCompiler::Argument> args(1);
      args[0].kind = XlaCompiler::Argument::kConstant;
      args[0].type = DT_INT32;
      args[0].shape = TensorShape({4, 0});
      args[0].constant_value = Tensor(DT_INT32, {4, 0});
      TF_ASSERT_OK_AND_ASSIGN(DeviceCompilationClusterSignature s1,
                              DeviceCompilationClusterSignature::Build(fn, args));
    
      args[0].type = DT_FLOAT;
      args[0].constant_value = Tensor(DT_FLOAT, {4, 0});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

    from typing import overload
    
    class Attribute:
        def __init__(self, *args, **kwargs) -> None: ...
    
    class Block:
        def __init__(self, *args, **kwargs) -> None: ...
        def addArgument(self, *args, **kwargs) -> Any: ...
        def end(self) -> Block_Iterator: ...
        def new(self) -> Block: ...
    
    class BlockArgument(Value):
        def __init__(self, *args, **kwargs) -> None: ...
    
    class Block_Iterator:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	case STR_EQ:
    		op = "MOVW" + op[3:] + suffix
    		args[0], args[1] = args[1], args[0]
    	case STRB_EQ:
    		op = "MOVB" + op[4:] + suffix
    		args[0], args[1] = args[1], args[0]
    	case STRH_EQ:
    		op = "MOVH" + op[4:] + suffix
    		args[0], args[1] = args[1], args[0]
    	case VSTR_EQ:
    		args[0], args[1] = args[1], args[0]
    	default:
    		op = op + suffix
    	}
    
    	if args != nil {
    		op += " " + strings.Join(args, ", ")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			savedSharedVHost := proto.Clone(tt.args.sharedRoutesVHost).(*route.VirtualHost)
    			patchHTTPRoute(tt.args.patchContext, tt.args.patches, tt.args.routeConfiguration,
    				tt.args.virtualHost, tt.args.routeIndex, tt.args.routesRemoved, tt.args.portMap, &tt.args.clonedVhostRoutes)
    			if diff := cmp.Diff(tt.want, tt.args.virtualHost, protocmp.Transform()); diff != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile-diff_test.go

    	l := clog.NewConsoleLogger(os.Stdout, os.Stderr, nil)
    	for i, c := range cases {
    		t.Run(fmt.Sprintf("case %d %q", i, c.args), func(t *testing.T) {
    			args := strings.Split(c.args, " ")
    			setFlag := fmt.Sprintf("installPackagePath=%s", snapshotCharts)
    			by := &bytes.Buffer{}
    			_, err := profileDiffInternal(args[len(args)-2], args[len(args)-1], []string{setFlag}, by, l)
    			verifyProfileDiffCommandCaseOutput(t, c, by.String(), err)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top