Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for follower (0.2 sec)

  1. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Come, there's no use in crying like that!' said Alice to
    herself, rather sharply; `I advise you to leave off this minute!'
    She generally gave herself very good advice, (though she very
    seldom followed it), and sometimes she scolded herself so
    severely as to bring tears into her eyes; and once she remembered
    trying to box her own ears for having cheated herself in a game
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Come, there's no use in crying like that!' said Alice to
    herself, rather sharply; `I advise you to leave off this minute!'
    She generally gave herself very good advice, (though she very
    seldom followed it), and sometimes she scolded herself so
    severely as to bring tears into her eyes; and once she remembered
    trying to box her own ears for having cheated herself in a game
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    			}
    			if objRetention.Mode.Valid() {
    				oi.UserDefined[strings.ToLower(xhttp.AmzObjectLockMode)] = string(objRetention.Mode)
    				oi.UserDefined[strings.ToLower(xhttp.AmzObjectLockRetainUntilDate)] = amztime.ISO8601Format(objRetention.RetainUntilDate.UTC())
    			} else {
    				oi.UserDefined[strings.ToLower(xhttp.AmzObjectLockMode)] = ""
    				oi.UserDefined[strings.ToLower(xhttp.AmzObjectLockRetainUntilDate)] = ""
    			}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    ASCII text.  There are four ways to represent the integer value
    as a numeric constant: <code>\x</code> followed by exactly two hexadecimal
    digits; <code>\u</code> followed by exactly four hexadecimal digits;
    <code>\U</code> followed by exactly eight hexadecimal digits, and a
    plain backslash <code>\</code> followed by exactly three octal digits.
    In each case the value of the literal is the value represented by
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertThat(request.headers["Accept-Encoding"]).isEqualTo("custom")
      }
    
      /**
       * Test a bug where gzip input streams weren't exhausting the input stream, which corrupted the
       * request that followed or prevented connection reuse. http://code.google.com/p/android/issues/detail?id=7059
       * http://code.google.com/p/android/issues/detail?id=38817
       */
      private fun testClientConfiguredGzipContentEncodingAndConnectionReuse(
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * resources are files and directories however an <code>SmbFile</code>
     * may also refer to servers and workgroups. If the resource is a file or
     * directory the methods of <code>SmbFile</code> follow the behavior of
     * the well known {@link java.io.File} class. One fundamental difference
     * is the usage of a URL scheme [1] to specify the target file or
     * directory. SmbFile URLs have the following syntax:
     *
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. cmd/bucket-replication.go

    			break
    		}
    		if found {
    			compareMeta1[strings.ToLower(k)] = v
    		}
    	}
    
    	compareMeta2 := make(map[string]string)
    	for k, v := range oi2.Metadata {
    		var found bool
    		for _, prefix := range compareKeys {
    			if !stringsHasPrefixFold(k, prefix) {
    				continue
    			}
    			found = true
    			break
    		}
    		if found {
    			compareMeta2[strings.ToLower(k)] = strings.Join(v, ",")
    		}
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/collect/Maps.java

          return fromMap.size();
        }
    
        @Override
        public boolean containsKey(@CheckForNull Object key) {
          return fromMap.containsKey(key);
        }
    
        // safe as long as the user followed the <b>Warning</b> in the javadoc
        @SuppressWarnings("unchecked")
        @Override
        @CheckForNull
        public V2 get(@CheckForNull Object key) {
          V1 value = fromMap.get(key);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    of available replicas to 1, you can update this value as follows: # # podDisruptionBudget: # minAvailable: 1 # # Or, to allow a maximum of 1 unavailable replica, you can set: # # podDisruptionBudget: # maxUnavailable: 1 # # You can also specify the `unhealthyPodEviction` field, and the valid values are `IfHealthyBudget` and `AlwaysAllow`. # For example, to set the `unhealthyPodEviction` to `AlwaysAllow`, you can update this value as follows: # # podDisruptionBudget: # minAvailable: 1 # unhealthyPodEviction:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  10. okhttp/src/test/java/okhttp3/CallTest.kt

            .build()
        assertFailsWith<IOException> {
          client.newCall(Request.Builder().url(server.url("/0")).build()).execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Too many follow-up requests: 21")
        }
      }
    
      /**
       * We had a bug where we were passing a null route to the authenticator.
       * https://github.com/square/okhttp/issues/3809
       */
      @Test
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
Back to top