Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,892 for arns (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    	if _, ok := inst.Args[3].(Cond); ok {
    		if _, ok := inst.Args[2].(Reg); ok {
    			args[1], args[2] = args[2], args[1]
    		} else {
    			args[0], args[2] = args[2], args[0]
    		}
    	}
    	// Reverse args, placing dest last.
    	for i, j := 0, len(args)-1; i < j; i, j = i+1, j-1 {
    		args[i], args[j] = args[j], args[i]
    	}
    
    	if args != nil {
    		op += " " + strings.Join(args, ", ")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  2. pkg/util/iptables/iptables_test.go

    			func(cmd string, args ...string) exec.Cmd { return fakeexec.InitFakeCmd(&fcmd, cmd, args...) },
    			func(cmd string, args ...string) exec.Cmd { return fakeexec.InitFakeCmd(&fcmd, cmd, args...) },
    			func(cmd string, args ...string) exec.Cmd { return fakeexec.InitFakeCmd(&fcmd, cmd, args...) },
    			func(cmd string, args ...string) exec.Cmd { return fakeexec.InitFakeCmd(&fcmd, cmd, args...) },
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ClSQLException.java

        private final String messageCode;
    
        private final Object[] args;
    
        private final String sql;
    
        /**
         * {@link ClSQLException}を作成します。
         *
         * @param messageCode
         *            メッセージコード
         * @param args
         *            引数の並び
         */
        public ClSQLException(final String messageCode, final Object[] args) {
            this(messageCode, args, null, 0, null, null);
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion_test.go

    )
    
    func TestConvertToArgs(t *testing.T) {
    	var tests = []struct {
    		name         string
    		args         map[string]string
    		expectedArgs []kubeadmapi.Arg
    	}{
    		{
    			name:         "nil map returns nil args",
    			args:         nil,
    			expectedArgs: nil,
    		},
    		{
    			name: "valid args are parsed (sorted)",
    			args: map[string]string{"c": "d", "a": "b"},
    			expectedArgs: []kubeadmapi.Arg{
    				{Name: "a", Value: "b"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/graph/DirectedGraphRendererTest.groovy

            given:
            1 * graph.getNodeValues("1", _, _) >> { args -> args[2] << "2"; args[2] << "3" }
            1 * graph.getNodeValues("2", _, _) >> { args -> args[2] << "4" }
            1 * graph.getNodeValues("3", _, _) >> { args -> }
            1 * graph.getNodeValues("4", _, _) >> { args -> args[2] << "5" }
            1 * graph.getNodeValues("5", _, _) >> { args -> }
    
            when:
            StringWriter writer = new StringWriter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/process/ArgWriter.java

                }
            };
        }
    
        /**
         * Writes a set of args on a single line, escaping and quoting as required.
         */
        @Override
        public ArgWriter args(Object... args) {
            for (int i = 0; i < args.length; i++) {
                Object arg = args[i];
                if (i > 0) {
                    writer.print(' ');
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:14:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/internal/trace/event/go122/event.go

    	EvEventBatch: event.Spec{
    		Name: "EventBatch",
    		Args: []string{"gen", "m", "time", "size"},
    	},
    	EvStacks: event.Spec{
    		Name: "Stacks",
    	},
    	EvStack: event.Spec{
    		Name:    "Stack",
    		Args:    []string{"id", "nframes"},
    		IsStack: true,
    	},
    	EvStrings: event.Spec{
    		Name: "Strings",
    	},
    	EvString: event.Spec{
    		Name:    "String",
    		Args:    []string{"id"},
    		HasData: true,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. tensorflow/c/logging.cc

          break;
      }
    }
    
    void TF_VLog(int level, const char* fmt, ...) {
      va_list args;
      va_start(args, fmt);
      auto message = BuildMessage(fmt, args);
      va_end(args);
      VLOG(level) << message;
    }
    
    void TF_DVLog(int level, const char* fmt, ...) {
      va_list args;
      va_start(args, fmt);
      auto message = BuildMessage(fmt, args);
      va_end(args);
      DVLOG(level) << message;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 18 13:10:33 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. internal/dsync/dsync-server_test.go

    	lockServers = make([]*lockServer, numberOfNodes)
    )
    
    func getLockArgs(r *http.Request) (args LockArgs, err error) {
    	buf, err := io.ReadAll(r.Body)
    	if err != nil {
    		return args, err
    	}
    	_, err = args.UnmarshalMsg(buf)
    	return args, err
    }
    
    type lockServerHandler struct {
    	lsrv *lockServer
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 23 16:46:37 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecSpec.java

         * @param args args for the command
         * @return this
         */
        ExecSpec args(Iterable<?> args);
    
        /**
         * Sets the arguments for the command to be executed.
         *
         * @param args args for the command
         * @return this
         * @since 4.0
         */
        ExecSpec setArgs(List<String> args);
    
        /**
         * Sets the arguments for the command to be executed.
         *
         * @param args args for the command
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top