Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3801 - 3810 of 4,618 for alse (0.02 sec)

  1. guava/src/com/google/common/reflect/AbstractInvocationHandler.java

        }
        if (args.length == 1
            && method.getName().equals("equals")
            && method.getParameterTypes()[0] == Object.class) {
          Object arg = args[0];
          if (arg == null) {
            return false;
          }
          if (proxy == arg) {
            return true;
          }
          return isProxyOfSameInterfaces(arg, proxy.getClass())
              && equals(Proxy.getInvocationHandler(arg));
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/SuccessorsFunction.java

     * {@link ValueGraph}, and {@link Network}):
     *
     * <pre>{@code
     * someGraphAlgorithm(startNode, graph);
     * }</pre>
     *
     * This works because those types each implement {@code SuccessorsFunction}. It will also work with
     * any other implementation of this interface.
     *
     * <p>If you have your own graph implementation based around a custom node type {@code MyNode},
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblem.java

            return exception;
        }
    
        @Override
        public String getMessage() {
            String msg = null;
    
            if (message != null && !message.isEmpty()) {
                msg = message;
            } else if (exception != null) {
                msg = exception.getMessage();
            }
    
            if (msg == null) {
                msg = "";
            }
    
            return msg;
        }
    
        @Override
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java

                    modelId = "";
                }
                tmp.addModelId(modelId);
                tmp.setRawModel(modelId, model);
                tmp.setProblems(problems);
                result = tmp;
            } else {
                result = null;
            }
        }
    
        /**
         * Creates a new exception from the specified interim result and its associated problems.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/cors.md

    * `allow_credentials` - 🎦 πŸ‘ˆ πŸͺ πŸ”œ πŸ•β€πŸ¦Ί βœ–οΈ-πŸ‡¨πŸ‡³ πŸ“¨. πŸ”’ `False`. , `allow_origins` πŸš«πŸ”œ βš’ `['*']` πŸŽ“ βœ”, πŸ‡¨πŸ‡³ πŸ”œ βœ”.
    * `expose_headers` - 🎦 πŸ™† πŸ“¨ 🎚 πŸ‘ˆ πŸ”œ βš’ β™Ώ πŸ–₯. πŸ”’ `[]`.
    * `max_age` - βš’ πŸ”† πŸ•° πŸ₯ˆ πŸ–₯ πŸ’Ύ ⚜ πŸ“¨. πŸ”’ `600`.
    
    πŸ› οΈ πŸ“¨ 2️⃣ 🎯 πŸ†Ž πŸ‡ΊπŸ‡ΈπŸ” πŸ“¨...
    
    ### ⚜ πŸ›« πŸ“¨
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractorTest.java

            CloseableUtil.closeQuietly(in);
            logger.info(content);
            assertTrue(content.contains("γƒ†γ‚Ήγƒˆ"));
            assertFalse(content.contains("γ‚³γƒ‘γƒ³γƒˆ"));
            xmlExtractor.setIgnoreCommentTag(false);
        }
    
        public void test_getXml_sjis() {
            final InputStream in = ResourceUtil.getResourceAsStream("extractor/test_sjis.xml");
            final String content = xmlExtractor.getText(in, null).getContent();
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/math/BigIntegerMathBenchmark.java

      }
    
      /** Previous version of BigIntegerMath.factorial, kept for timing purposes. */
      private static BigInteger oldSlowFactorial(int n) {
        if (n <= 20) {
          return BigInteger.valueOf(LongMath.factorial(n));
        } else {
          int k = 20;
          return BigInteger.valueOf(LongMath.factorial(k)).multiply(oldSlowFactorial(k, n));
        }
      }
    
      /** Returns the product of {@code n1} exclusive through {@code n2} inclusive. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Aug 19 16:21:24 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/MacHashFunction.java

        return bits;
      }
    
      private static boolean supportsClone(Mac mac) {
        try {
          Object unused = mac.clone();
          return true;
        } catch (CloneNotSupportedException e) {
          return false;
        }
      }
    
      private static Mac getMac(String algorithmName, Key key) {
        try {
          Mac mac = Mac.getInstance(algorithmName);
          mac.init(key);
          return mac;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 15 22:31:55 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. docs/sts/etcd.md

      --listen-peer-urls http://0.0.0.0:2380 \
      --initial-advertise-peer-urls http://0.0.0.0:2380 \
      --initial-cluster s1=http://0.0.0.0:2380 \
      --initial-cluster-token tkn \
      --initial-cluster-state new
    ```
    
    You may also setup etcd with TLS following this documentation [here](https://coreos.com/etcd/docs/latest/op-guide/security.html)
    
    ### 3. Setup MinIO with etcd
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/expiration_test.go

    		},
    		{ // Expiration with both ExpiredObjectDeleteMarker and days
    			inputXML: `<Expiration>
                                        <Days>3</Days>
    			            <ExpiredObjectDeleteMarker>false</ExpiredObjectDeleteMarker>
                                        </Expiration>`,
    			expectedErr: errLifecycleInvalidDeleteMarker,
    		},
    		{ // Expiration with a valid number of days and ExpiredObjectAllVersions
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top