Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1081 - 1090 of 3,033 for During (0.09 sec)

  1. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

          ) {
            builder.username(value)
          }
    
          override operator fun get(url: HttpUrl): String = url.username
        },
    
        PASSWORD {
          override fun urlString(value: String): String = "http://:$******@****.***/"
    
          override fun encodedValue(url: HttpUrl): String = url.encodedPassword
    
          override operator fun set(
            builder: HttpUrl.Builder,
            value: String,
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/CharSourceTester.java

      }
    
      static TestSuite suiteForString(
          CharSourceFactory factory, String string, String name, String desc) {
        TestSuite suite = new TestSuite(name + " [" + desc + "]");
        for (Method method : testMethods) {
          suite.addTest(new CharSourceTester(factory, string, name, desc, method));
        }
        return suite;
      }
    
      private final ImmutableList<String> expectedLines;
    
      private CharSource source;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. cmd/batch-rotate_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 3
    	// string "Type"
    	o = append(o, 0x83, 0xa4, 0x54, 0x79, 0x70, 0x65)
    	o = msgp.AppendString(o, string(z.Type))
    	// string "Key"
    	o = append(o, 0xa3, 0x4b, 0x65, 0x79)
    	o = msgp.AppendString(o, z.Key)
    	// string "Context"
    	o = append(o, 0xa7, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74)
    	o = msgp.AppendString(o, z.Context)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

        } // -- java.util.List<Execution> getExecutions()
    
        /**
         * Get the ID of this phase, e.g.,
         * <code>generate-sources</code>.
         *
         * @return String
         */
        public String getId() {
            return this.id;
        } // -- String getId()
    
        /**
         * Method removeExecution.
         *
         * @param execution a execution object.
         */
        public void removeExecution(Execution execution) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

    public class PluginTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "pluginTests_";
        private static final String API_PATH = "/api/admin/plugin";
        private static final String LIST_ENDPOINT_SUFFIX = "";
        private static final String ITEM_ENDPOINT_SUFFIX = "";
        private static final String INSTALLED_ENDPOINT_SUFFIX = "installed";
        private static final String AVAILABLE_ENDPOINT_SUFFIX = "available";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 01 02:20:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java

                @Override
                public String getRoleSearchUserPrefix() {
                    return fessConfig.getRoleSearchUserPrefix();
                }
    
                @Override
                public String getRoleSearchGroupPrefix() {
                    return fessConfig.getRoleSearchGroupPrefix();
                }
    
                @Override
                public String getRoleSearchRolePrefix() {
                    return "";
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

            private int flags;
            private int proximity;
            private int pathOffset;
            private int altPathOffset;
            private int nodeOffset;
            private String altPath;
    
            int ttl;
            String path = null;
            String node = null;
    
            int readWireFormat( byte[] buffer, int bufferIndex, int len ) {
                int start = bufferIndex;
    
                version = readInt2( buffer, bufferIndex );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5K bytes
    - Viewed (0)
  8. internal/event/event.go

    	ETag         string            `json:"eTag,omitempty"`
    	ContentType  string            `json:"contentType,omitempty"`
    	UserMetadata map[string]string `json:"userMetadata,omitempty"`
    	VersionID    string            `json:"versionId,omitempty"`
    	Sequencer    string            `json:"sequencer"`
    }
    
    // Metadata represents event metadata.
    type Metadata struct {
    	SchemaVersion   string `json:"s3SchemaVersion"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapGenerators.java

    public class BiMapGenerators {
      public static class ImmutableBiMapGenerator extends TestStringBiMapGenerator {
        @Override
        protected BiMap<String, String> create(Entry<String, String>[] entries) {
          ImmutableBiMap.Builder<String, String> builder = ImmutableBiMap.builder();
          for (Entry<String, String> entry : entries) {
            checkNotNull(entry);
            builder.put(entry.getKey(), entry.getValue());
          }
          return builder.build();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileAuthentication.java

        /** createdBy */
        protected String createdBy;
    
        /** createdTime */
        protected Long createdTime;
    
        /** fileConfigId */
        protected String fileConfigId;
    
        /** hostname */
        protected String hostname;
    
        /** parameters */
        protected String parameters;
    
        /** password */
        protected String password;
    
        /** port */
        protected Integer port;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top