Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,201 for olisit (0.19 sec)

  1. CHANGELOG/CHANGELOG-1.18.md

    - CustomResourceDefinition schemas that use `x-kubernetes-list-map-keys` to specify properties that uniquely identify list items must make those properties required or have a default value, to ensure those properties are present for all list items. See https://kubernetes.io/docs/reference/using-api/api-concepts/#merge-strategy for details. ([#88076](https://github.com/kubernetes/kubernetes/pull/88076),...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/ConnectionSpecTest.kt

            .tlsVersions(TlsVersion.TLS_1_2)
            .supportsTlsExtensions(true)
            .build()
        assertThat(tlsSpec.cipherSuites!!.toList())
          .containsExactly(CipherSuite.TLS_RSA_WITH_RC4_128_MD5)
        assertThat(tlsSpec.tlsVersions!!.toList())
          .containsExactly(TlsVersion.TLS_1_2)
        assertThat(tlsSpec.supportsTlsExtensions).isTrue()
      }
    
      @Test
      fun tlsBuilder_defaultCiphers() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

            fun checkServerTrusted(
              chain: Array<out X509Certificate>,
              authType: String,
              hostname: String,
            ): List<X509Certificate> {
              withHostCalled = true
              return chain.toList()
            }
    
            override fun getAcceptedIssuers(): Array<X509Certificate> = arrayOf()
          }
    
        val sslContext =
          Platform.get().newSSLContext().apply {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 14:12:28 UTC 2025
    - 29K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/HashBiMap.java

        setSucceeds(oldPredecessor, oldSuccessor); // remove from insertion order linked list
    
        deleteFromTableKToV(entry, Hashing.smearedHash(keys[entry]));
        keys[entry] = newKey;
        insertIntoTableKToV(entry, Hashing.smearedHash(newKey));
    
        // insert into insertion order linked list, usually at the end
        setSucceeds(newPredecessor, entry);
        setSucceeds(entry, newSuccessor);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/Graphs.java

              visitedNodes.addAll(reachableNodes);
              int pairwiseMatch = 1; // start at 1 to include self-loops
              for (N nodeU : reachableNodes) {
                for (N nodeV : Iterables.limit(reachableNodes, pairwiseMatch++)) {
                  transitiveClosure.putEdge(nodeU, nodeV);
                }
              }
            }
          }
        }
    
        return transitiveClosure.build();
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Graphs.java

              visitedNodes.addAll(reachableNodes);
              int pairwiseMatch = 1; // start at 1 to include self-loops
              for (N nodeU : reachableNodes) {
                for (N nodeV : Iterables.limit(reachableNodes, pairwiseMatch++)) {
                  transitiveClosure.putEdge(nodeU, nodeV);
                }
              }
            }
          }
        }
    
        return transitiveClosure.build();
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 01 00:26:14 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Handler.java

            final String host = u.getHost();
            String path, ref;
            int port;
    
            if (spec.equals("smb1://")) {
                spec = "smb1:////";
                limit += 2;
            } else if (!spec.startsWith("smb1://") && host != null && host.length() == 0) {
                spec = "//" + spec;
                limit += 2;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                consumer.accept(attrList.get(0));
            }
        }
    
        /**
         * Gets a list of attribute values from search results.
         *
         * @param result the list of search results
         * @param name the attribute name
         * @return a list of attribute values
         */
        protected List<Object> getAttributeValueList(final List<SearchResult> result, final String name) {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/Handler.java

            final String host = u.getHost();
            String path, ref;
            int port;
    
            if (spec.equals("smb://")) {
                spec = "smb:////";
                limit += 2;
            } else if (!spec.startsWith("smb://") && host != null && host.length() == 0) {
                spec = "//" + spec;
                limit += 2;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    final ListResultBean<WebConfig> list = new ListResultBean<>();
                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W1"));
                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W2"));
                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W3"));
                    return list;
                }
            }, WebConfigBhv.class.getCanonicalName());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
Back to top