Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for Adrian (0.23 sec)

  1. LICENSES/vendor/github.com/stoewer/go-strcase/LICENSE

    = vendor/github.com/stoewer/go-strcase licensed under: =
    
    The MIT License (MIT)
    
    Copyright (c) 2017, Adrian Stoewer <adrian******@****.***>
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Plain Text
    - Registered: Fri Apr 12 09:05:11 GMT 2024
    - Last Modified: Wed Nov 10 18:15:40 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  2. licenses/github.com/stoewer/go-strcase/LICENSE

    The MIT License (MIT)
    
    Copyright (c) 2017, Adrian Stoewer <adrian******@****.***>
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 05 01:31:25 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  3. .mailmap

    Adam Murdoch <******@****.***> <Adam@Adam-PC.(none)>
    Adam Murdoch <******@****.***> <******@****.***>
    Adam Murdoch <******@****.***> <******@****.***>
    Adam Murdoch <******@****.***> <******@****.***>
    Adrian Kelly <adrian@gradle.com> <******@****.***>
    Benjamin Muschko <******@****.***> <******@****.***>
    Cedric Champeau <******@****.***>
    Cedric Champeau <******@****.***> <******@****.***>
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Oct 03 06:34:28 GMT 2017
    - 3.3K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_2x.md

    ## Version 2.3.0
    
    _2015-03-16_
    
     *  **HTTP/2 support.** We've done interop testing and haven't seen any
        problems. HTTP/2 support has been a big effort and we're particularly
        thankful to Adrian Cole who has helped us to reach this milestone.
    
     *  **RC4 cipher suites are no longer supported by default.** To connect to
        old, obsolete servers relying on these cipher suites, you must create a
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 26.6K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Jason Kridner <******@****.***>
    beagleboard.io
    
    // Beget Ltd
    // Submitted by Lev Nekrasov <******@****.***>
    *.beget.app
    
    // BetaInABox
    // Submitted by Adrian <adrian@betainabox.com>
    betainabox.com
    
    // BinaryLane : http://www.binarylane.com
    // Submitted by Nathan O'Sullivan <******@****.***>
    bnr.la
    
    // Bitbucket : http://bitbucket.org
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  6. RELEASE.md

    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    8bitmp3, Abhilash Majumder, abhilash1910, AdeshChoudhar, Adrian Garcia
    Badaracco, Adrian Ratiu, ag.ramesh, Aleksandr Nikolaev, Alexander Bosch,
    Alexander Grund, Annie Tallund, Anush Elangovan, Artem Sokolovskii, azazhu,
    Balint Cristian, Bas Aarts, Ben Barsdell, bhack, cfRod, Cheney-Wang, Cheng Ren,
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  7. guava-tests/test/com/google/common/collect/QueuesTest.java

      }
    
      private static <T> int drain(
          BlockingQueue<T> q,
          Collection<? super T> buffer,
          int maxElements,
          long timeout,
          TimeUnit unit,
          boolean interruptibly)
          throws InterruptedException {
        return interruptibly
            ? Queues.drain(q, buffer, maxElements, timeout, unit)
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 12K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/QueuesTest.java

      }
    
      private static <T> int drain(
          BlockingQueue<T> q,
          Collection<? super T> buffer,
          int maxElements,
          long timeout,
          TimeUnit unit,
          boolean interruptibly)
          throws InterruptedException {
        return interruptibly
            ? Queues.drain(q, buffer, maxElements, timeout, unit)
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 12K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/ReaderInputStream.java

            if (result.isOverflow()) {
              // Not enough room in output buffer--drain it, creating a bigger buffer if necessary.
              startDraining(true);
              continue DRAINING;
            } else if (result.isUnderflow()) {
              // If encoder underflows, it means either:
              // a) the final flush() succeeded; next drain (then done)
              // b) we encoded all of the input; next flush
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 28 20:13:02 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  10. internal/logger/target/http/http.go

    			select {
    			case currentGlobalBuffer <- v:
    			default:
    			}
    		}
    
    		if mainWorker {
    		drain:
    			for {
    				select {
    				case v, ok := <-h.logCh:
    					if !ok {
    						break drain
    					}
    
    					currentGlobalBuffer <- v
    				default:
    					break drain
    				}
    			}
    		}
    	}()
    
    	var entry interface{}
    	var ok bool
    	var err error
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Mar 25 16:44:20 GMT 2024
    - 14.9K bytes
    - Viewed (0)
Back to top