Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 705 for argv (0.13 sec)

  1. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

          return arguments.get(position);
        }
    
        final void calledWith(Object... args) {
          for (int i = 0; i < args.length; i++) {
            if (args[i] != null) {
              arguments.put(i, args[i]);
            }
          }
          for (Object arg : args) {
            checkNotNull(arg); // to fulfill null check
          }
        }
      }
    
      private enum Gender {
        MALE,
        FEMALE
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 47.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java

             */
            public void setKkk(final String kkk) {
                this.kkk = kkk;
            }
    
            /**
             * @param arg1
             * @param arg2
             * @return Number
             */
            public Number add(final Number arg1, final Number arg2) {
                return new Integer(3);
            }
    
            /**
             * @return BigDecimal
             */
            public BigDecimal getGgg() {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym.jsp

                                            <la:message key="labels.pagination_page_guide_msg"
                                                        arg0="${f:h(pager.currentPageNumber)}"
                                                        arg1="${f:h(pager.allPageCount)}"
                                                        arg2="${f:h(pager.allRecordCount)}"/>
                                        </div>
                                        <div class="col-sm-10">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 24 13:43:18 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                                            arg0="${f:h(pager.currentPageNumber)}"
                                                            arg1="${f:h(pager.allPageCount)}"
                                                            arg2="${f:h(pager.allRecordCount)}"/>
                                            </div>
                                        </div>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 16K bytes
    - Viewed (0)
  5. istioctl/pkg/validate/validate_test.go

    		},
    		{
    			name:      "invalid port naming service",
    			args:      []string{"--filename", invalidPortNamingSvcFile},
    			wantError: true,
    		},
    		{
    			name:      "filename missing",
    			wantError: true,
    		},
    		{
    			name: "valid resources from file",
    			args: []string{"--filename", validFilenameYAML},
    		},
    		{
    			name:      "extra args",
    			args:      []string{"--filename", validFilenameYAML, "extra-arg"},
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  6. internal/dsync/lock-args_gen_test.go

    Klaus Post <******@****.***> 1700528975 -0800
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Nov 21 01:09:35 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  7. cmd/endpoint.go

    // NewEndpoints - returns new endpoint list based on input args.
    func NewEndpoints(args ...string) (endpoints Endpoints, err error) {
    	var endpointType EndpointType
    	var scheme string
    
    	uniqueArgs := set.NewStringSet()
    	// Loop through args and adds to endpoint list.
    	for i, arg := range args {
    		endpoint, err := NewEndpoint(arg)
    		if err != nil {
    			return nil, fmt.Errorf("'%s': %s", arg, err.Error())
    		}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
  8. tests/callbacks_test.go

    		for _, c := range data.callbacks {
    			var v interface{} = callbacks.Create()
    			callMethod := func(s interface{}, name string, args ...interface{}) {
    				var argValues []reflect.Value
    				for _, arg := range args {
    					argValues = append(argValues, reflect.ValueOf(arg))
    				}
    
    				results := reflect.ValueOf(s).MethodByName(name).Call(argValues)
    				if len(results) > 0 {
    					v = results[0].Interface()
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Tue Mar 26 03:33:36 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/next_pluggable_device/c_api.cc

          container_name, plugin_resource_name, &tf_plugin_resource,
          [plugin_resource_name, create_func, create_func_args,
           delete_func](tensorflow::PluginResource** new_resource) {
            void* opaque_plugin_resource = create_func(create_func_args);
            *new_resource = new tensorflow::PluginResource(
                opaque_plugin_resource, plugin_resource_name, delete_func);
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Tue Jan 09 00:52:04 GMT 2024
    - 13.9K bytes
    - Viewed (1)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // Defaults to only container if there is only one container in the pod.
      // +optional
      optional string container = 5;
    
      // Command is the remote command to execute. argv array. Not executed within a shell.
      repeated string command = 6;
    }
    
    // IP address information for entries in the (plural) PodIPs field.
    // Each entry includes:
    //
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top