Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for Commands (0.3 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        Executor delegate;
        boolean wasExecuted;
    
        public ExecutorSpy(Executor delegate) {
          this.delegate = delegate;
        }
    
        @Override
        public void execute(Runnable command) {
          delegate.execute(command);
          wasExecuted = true;
        }
      }
    
      public void testTransform_Executor() throws Exception {
        Object value = new Object();
        ExecutorSpy spy = new ExecutorSpy(directExecutor());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        Executor delegate;
        boolean wasExecuted;
    
        public ExecutorSpy(Executor delegate) {
          this.delegate = delegate;
        }
    
        @Override
        public void execute(Runnable command) {
          delegate.execute(command);
          wasExecuted = true;
        }
      }
    
      public void testTransform_Executor() throws Exception {
        Object value = new Object();
        ExecutorSpy spy = new ExecutorSpy(directExecutor());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. src/main/webapp/js/bootstrap.min.js.map

    _dataApiKeydownHandler(event) {\n    // If not input/textarea:\n    //  - And not a key in REGEXP_KEYDOWN => not a dropdown command\n    // If input/textarea:\n    //  - If space key => not a dropdown command\n    //  - If key is other than escape\n    //    - If key is not up or down => not a dropdown command\n    //    - If trigger inside the menu => not a dropdown command\n    if (/input|textarea/i.test(event.target.tagName)\n      ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    	case *networking.ReadinessProbe_Exec:
    		h := m.Exec
    		if h == nil {
    			errs = appendErrors(errs, fmt.Errorf("exec may not be nil"))
    			break
    		}
    		if len(h.Command) == 0 {
    			errs = appendErrors(errs, fmt.Errorf("exec.command is required"))
    		}
    	default:
    		errs = appendErrors(errs, fmt.Errorf("unknown health check method %T", m))
    	}
    	return errs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    func (r *Row) Err() error {
    	return r.err
    }
    
    // A Result summarizes an executed SQL command.
    type Result interface {
    	// LastInsertId returns the integer generated by the database
    	// in response to a command. Typically this will be from an
    	// "auto increment" column when inserting a new row. Not all
    	// databases support this feature, and the syntax of such
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. src/crypto/x509/x509_test.go

    }
    
    func TestImports(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	testenv.MustHaveGoRun(t)
    
    	if out, err := exec.Command(testenv.GoToolPath(t), "run", "x509_test_import.go").CombinedOutput(); err != nil {
    		t.Errorf("failed to run x509_test_import.go: %s\n%s", err, out)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    	err := SystemRootsError{Err: err1}
    	if !errors.Is(err, err1) {
    		t.Error("errors.Is failed, wanted success")
    	}
    }
    
    func macosMajorVersion(t *testing.T) (int, error) {
    	cmd := testenv.Command(t, "sw_vers", "-productVersion")
    	out, err := cmd.Output()
    	if err != nil {
    		if ee, ok := err.(*exec.ExitError); ok && len(ee.Stderr) > 0 {
    			return 0, fmt.Errorf("%v: %v\n%s", cmd, err, ee.Stderr)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    // go run mksyscall_zos_s390x.go -o_sysnum zsysnum_zos_s390x.go -o_syscall zsyscall_zos_s390x.go -i_syscall syscall_zos_s390x.go -o_asm zsymaddr_zos_s390x.s
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build zos && s390x
    
    package unix
    
    const (
    	SYS_LOG                             = 0x17  // 23
    	SYS_COSH                            = 0x18  // 24
    	SYS_TANH                            = 0x19  // 25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    		return &api.LifecycleHandler{
    			Sleep: &api.SleepAction{Seconds: 1},
    		}
    	}
    
    	makeExecHandler := func() *api.LifecycleHandler {
    		return &api.LifecycleHandler{
    			Exec: &api.ExecAction{Command: []string{"foo"}},
    		}
    	}
    
    	makeHTTPGetHandler := func() *api.LifecycleHandler {
    		return &api.LifecycleHandler{
    			HTTPGet: &api.HTTPGetAction{Host: "foo"},
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

                        unc,
                        auth);
            if (dr != null) {
                String service = null;
    
                if (request != null) {
                    switch( request.command ) {
                        case ServerMessageBlock.SMB_COM_TRANSACTION:
                        case ServerMessageBlock.SMB_COM_TRANSACTION2:
                            switch( ((SmbComTransaction)request).subCommand & 0xFF ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top