Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for jones (0.02 sec)

  1. licenses/github.com/gregjones/httpcache/LICENSE.txt

    Copyright © 2012 Greg Jones (greg.jones@gmail.com)
    
    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 furnished to do so, subject to the following conditions:
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2019-10-26 02:47
    - 1.1K bytes
    - Viewed (0)
  2. docs/distributed/samples/bootstrap-complete.ldif

    sn: Harper
    uid: dillon
    mail: ******@****.***
    userPassword: {SSHA}UH+LmoEhWWW6s9rjgdpqHPI0qCMouY8+
    
    dn: uid=liza,ou=people,ou=swengg,dc=min,dc=io
    objectClass: inetOrgPerson
    cn: Elizabeth Jones
    sn: Jones
    uid: liza
    mail: ejones@example.io
    userPassword: {SSHA}feVkKkafHtsu2Io7n0tQP4Cnh8/Oy1PK
    
    dn: uid=fahim,ou=people,ou=swengg,dc=min,dc=io
    objectClass: inetOrgPerson
    cn: Fahim Ahmed
    sn: Ahmed
    uid: fahim
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-09-12 15:59
    - 3.2K bytes
    - Viewed (0)
  3. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          assertThat(derReader.readOctetString()).isEqualTo("Jones".encodeUtf8())
        }
    
        assertThat(derReader.hasNext()).isFalse()
      }
    
      @Test fun `encode primitive string`() {
        val buffer = Buffer()
        val derWriter = DerWriter(buffer)
    
        derWriter.write("test", tagClass = DerHeader.TAG_CLASS_UNIVERSAL, tag = 26L) {
          derWriter.writeOctetString("Jones".encodeUtf8())
        }
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 31.7K bytes
    - Viewed (0)
  4. LICENSES/vendor/github.com/gregjones/httpcache/LICENSE

    = vendor/github.com/gregjones/httpcache licensed under: =
    
    Copyright © 2012 Greg Jones (greg.jones@gmail.com)
    
    Registered: 2025-05-30 09:05
    - Last Modified: 2020-05-08 04:49
    - 1.2K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    qbuser.com
    
    // Quip : https://quip.com
    // Submitted by Patrick Linehan <******@****.***>
    *.quipelements.com
    
    // Qutheory LLC : http://qutheory.io
    // Submitted by Jonas Schwartz <jonas@qutheory.io>
    vapor.cloud
    vaporcloud.io
    
    // Rackmaze LLC : https://www.rackmaze.com
    // Submitted by Kirill Pertsev <******@****.***>
    rackmaze.com
    rackmaze.net
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 309.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones
      // +optional
      optional string timeZone = 8;
    
      // Optional deadline in seconds for starting the job if it misses scheduled
      // time for any reason.  Missed jobs executions will be counted as failed ones.
      // +optional
      optional int64 startingDeadlineSeconds = 2;
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 5.7K bytes
    - Viewed (0)
  7. RELEASE.md

    Woodcock, Hiran Sarkar, Ilya Arzhannikov, Janghoo Lee, jdematos, Jens Meder,
    Jerry Shih, jgehw, Jim Fisher, Jingbei Li, Jiri Podivin, Joachim Gehweiler,
    Johannes Lade, Jonas I. Liechti, Jonas Liechti, Jonas Ohlsson, Jonathan
    Dekhtiar, Julian Gross, Kaixi Hou, Kevin Cheng, Koan-Sin Tan, Kulin Seth,
    linzewen, Liubov Batanina, luisleee, Lukas Geiger, Mahmoud Abuzaina, mathgaming,
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-04-21 16:40
    - 738.1K bytes
    - Viewed (1)
  8. lib/time/update.bash

    rm -rf work
    mkdir work
    go build -o work/mkzip mkzip.go # build now for correct paths in build errors
    cd work
    mkdir zoneinfo
    curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
    curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.gz
    tar xzf tzcode$CODE.tar.gz
    tar xzf tzdata$DATA.tar.gz
    
    # The PACKRATLIST and PACKRATDATA options are copied from Ubuntu:
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-02-07 01:10
    - 2.1K bytes
    - Viewed (0)
  9. lib/time/README

    the code and data maintained as part of the IANA Time Zone Database.
    The IANA asserts that the database is in the public domain.
    
    For more information, see
    https://www.iana.org/time-zones
    ftp://ftp.iana.org/tz/code/tz-link.html
    https://datatracker.ietf.org/doc/html/rfc6557
    
    Registered: 2025-05-27 11:13
    - Last Modified: 2021-08-15 02:18
    - 390 bytes
    - Viewed (0)
  10. internal/logger/targets.go

    		go target.Cancel()
    	}
    }
    
    // UpdateHTTPWebhooks swaps system webhook targets with newly loaded ones from the cfg
    func UpdateHTTPWebhooks(ctx context.Context, cfgs map[string]http.Config) (errs []error) {
    	return updateHTTPTargets(ctx, cfgs, systemTargets)
    }
    
    // UpdateAuditWebhooks swaps audit webhook targets with newly loaded ones from the cfg
    func UpdateAuditWebhooks(ctx context.Context, cfgs map[string]http.Config) (errs []error) {
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-06-03 15:44
    - 6K bytes
    - Viewed (0)
Back to top