Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for Hurst (0.28 sec)

  1. build/openresty/patches/lua-resty-websocket-0.09_01-client-mtls.patch

    From 05d0832cf96c216297810cb495706c50309b8c5a Mon Sep 17 00:00:00 2001
    From: James Hurst <******@****.***>
    Date: Mon, 7 Feb 2022 11:36:25 +0000
    Subject: [PATCH 1/2] feat: add mtls client cert support
    
    ---
     lib/resty/websocket/client.lua | 26 ++++++++++++++++++++++----
     1 file changed, 22 insertions(+), 4 deletions(-)
    
    diff --git a/bundle/lua-resty-websocket-0.09/lib/resty/websocket/client.lua b/bundle/lua-resty-websocket-0.09/lib/resty/websocket/client.lua
    Others
    - Registered: 2023-03-19 13:41
    - Last Modified: 2023-01-16 12:52
    - 3.3K bytes
    - Viewed (0)
  2. experimental/domain/pagination-sorting/data.js

        "company": "GLASSTEP",
        "email": "******@****.***",
        "phone": "+1 (966) 551-2149"
      },
      {
        "_id": "591ad7e21b8e73ba4dbf7c9a",
        "age": 34,
        "name": "Weber Hurst",
        "gender": "male",
        "company": "SLUMBERIA",
        "email": "******@****.***",
        "phone": "+1 (943) 516-3449"
      },
      {
        "_id": "591ad7e282b9cb56357b42db",
        "age": 27,
    JavaScript
    - Registered: 2023-03-19 04:05
    - Last Modified: 2019-07-15 01:52
    - 15.8K bytes
    - Viewed (0)
  3. build/openresty/patches/lua-resty-core-0.1.23_01-cosocket-mtls.patch

         cosocket.client_pkey = pkey
    +
    +    return true
     end
     
     
    -- 
    2.32.0 (Apple Git-132)
    
    
    From fead2a28f409117ad1b6c98d02edb6a38a64fde0 Mon Sep 17 00:00:00 2001
    From: James Hurst <******@****.***>
    Date: Wed, 9 Feb 2022 16:05:11 +0000
    Subject: [PATCH 9/9] fix(socket) add temporary backwards compatability for
     tlshandshake
    
    ---
     lib/resty/core/socket.lua | 22 ++++++++++++++++++++++
    Others
    - Registered: 2023-03-19 13:41
    - Last Modified: 2023-01-16 12:52
    - 17.8K bytes
    - Viewed (0)
  4. spec/fixtures/burst.yml

    Hisham Muhammad <******@****.***> 1591999012 -0300
    Others
    - Registered: 2023-03-19 13:41
    - Last Modified: 2020-06-16 14:03
    - 431.7K bytes
    - Viewed (0)
  5. COPYRIGHT

    
    %%%%%%%%%
    
    lua-resty-http
    
    https://github.com/ledgetech/lua-resty-http
    https://github.com/ledgetech/lua-resty-http/blob/master/LICENSE
    
    Copyright (c) 2013, James Hurst
    All rights reserved.
    
    Redistribution and use in source and binary forms, with or without modification,
    are permitted provided that the following conditions are met:
    
    Others
    - Registered: 2023-03-19 13:41
    - Last Modified: 2022-08-23 15:15
    - 133.5K bytes
    - Viewed (0)
  6. scheduling/highest_response_ratio_next.py

                    temp = (burst_time[i] + (current_time - arrival_time[i])) / burst_time[
                        i
                    ]
                if response_ratio < temp:
                    response_ratio = temp
                    loc = i
    
            # Calculate the turn around time
            turn_around_time[loc] = current_time + burst_time[loc] - arrival_time[loc]
            current_time += burst_time[loc]
    Python
    - Registered: 2023-03-16 19:18
    - Last Modified: 2023-02-01 13:14
    - 3.9K bytes
    - Viewed (0)
  7. scheduling/shortest_job_first.py

        no_of_processes = int(input())
        burst_time = [0] * no_of_processes
        arrival_time = [0] * no_of_processes
        processes = list(range(1, no_of_processes + 1))
    
        for i in range(no_of_processes):
            print("Enter the arrival time and burst time for process:--" + str(i + 1))
            arrival_time[i], burst_time[i] = map(int, input().split())
    
    Python
    - Registered: 2023-03-16 19:18
    - Last Modified: 2023-03-01 16:23
    - 4.6K bytes
    - Viewed (0)
  8. lib/pacer/pacers.go

    		minSleep: 10 * time.Millisecond,
    		burst:    100,
    	}
    	c.Update(opts...)
    	return c
    }
    
    // Update applies the Calculator options.
    func (c *GoogleDrive) Update(opts ...GoogleDriveOption) {
    	for _, opt := range opts {
    		opt.ApplyGoogleDrive(c)
    	}
    	if c.burst <= 0 {
    		c.burst = 1
    	}
    	c.limiter = rate.NewLimiter(rate.Every(c.minSleep), c.burst)
    }
    
    Go
    - Registered: 2023-02-06 07:43
    - Last Modified: 2022-07-08 17:24
    - 10.2K bytes
    - Viewed (0)
  9. scheduling/round_robin.py

    Python
    - Registered: 2023-03-16 19:18
    - Last Modified: 2021-09-07 11:37
    - 2.2K bytes
    - Viewed (0)
  10. scheduling/multi_level_feedback_queue.py

    class Process:
        def __init__(self, process_name: str, arrival_time: int, burst_time: int) -> None:
            self.process_name = process_name  # process name
            self.arrival_time = arrival_time  # arrival time of the process
            # completion time of finished process or last interrupted time
            self.stop_time = arrival_time
            self.burst_time = burst_time  # remaining burst time
    Python
    - Registered: 2023-03-16 19:18
    - Last Modified: 2022-10-16 05:25
    - 12.1K bytes
    - Viewed (0)
Back to top