Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,027 for relaxed (0.14 sec)

  1. guava-tests/test/com/google/common/hash/HashTestUtils.java

          Assert.assertEquals(hashFunction.bits(), hashcode1.asBytes().length * 8);
          hashcodes.add(hashcode1);
        }
        Assert.assertTrue(hashcodes.size() > objects * 0.95); // quite relaxed test
    
        assertHashBytesThrowsCorrectExceptions(hashFunction);
        assertIndependentHashers(hashFunction);
        assertShortcutsAreEquivalent(hashFunction, 512);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	// https://tools.ietf.org/html/rfc7234#section-5.5
    	//   https://tools.ietf.org/html/rfc7234#appendix-A
    	//     Some requirements regarding production and processing of the Warning
    	//     header fields have been relaxed, as it is not widely implemented.
    	//     Furthermore, the Warning header field no longer uses RFC 2047
    	//     encoding, nor does it allow multiple languages, as these aspects were
    	//     not implemented.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  3. tests/integration/README.md

    When executing in the CI systems, the makefiles use the ```--istio.test.ci``` flag. This flag causes a few changes in
    behavior. Specifically, more verbose logging output will be displayed, some of the timeout values will be more relaxed, and
    additional diagnostic data will be dumped into the working directory at the end of the test execution.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            final CookieSpecProvider laxStandardProvider =
                    new RFC6265CookieSpecProvider(RFC6265CookieSpecProvider.CompatibilityLevel.RELAXED, publicSuffixMatcher);
            final CookieSpecProvider strictStandardProvider =
                    new RFC6265CookieSpecProvider(RFC6265CookieSpecProvider.CompatibilityLevel.STRICT, publicSuffixMatcher);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      // For now, restrict scale adjustment to ops with affine quantized weights,
      // and having weights and biases as constants. This currently only applies to
      // FC and Conv* ops. Restriction for the weight can be relaxed if there are
      // needs for adjusting scale of variable weights.
      auto affine_op = dyn_cast<AffineQuantizedOpInterface>(op);
      auto bias_op = op->getOperand(bias_index).getDefiningOp<arith::ConstantOp>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InternetDomainName.java

       * ("Internationalizing Domain Names in Applications") is skipped, while validation against <a
       * href="http://www.ietf.org/rfc/rfc1035.txt">RFC 1035</a> is relaxed in the following ways:
       *
       * <ul>
       *   <li>Any part containing non-ASCII characters is considered valid.
       *   <li>Underscores ('_') are permitted wherever dashes ('-') are permitted.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/func.go

    		n.SetType(nil)
    		return n
    	}
    	t := n.X.Type()
    	if !t.IsPtr() {
    		base.Errorf("first argument to unsafe.Slice must be pointer; have %L", t)
    	} else if t.Elem().NotInHeap() {
    		// TODO(mdempsky): This can be relaxed, but should only affect the
    		// Go runtime itself. End users should only see not-in-heap
    		// types due to incomplete C structs in cgo, and those types don't
    		// have a meaningful size anyway.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

       * ("Internationalizing Domain Names in Applications") is skipped, while validation against <a
       * href="http://www.ietf.org/rfc/rfc1035.txt">RFC 1035</a> is relaxed in the following ways:
       *
       * <ul>
       *   <li>Any part containing non-ASCII characters is considered valid.
       *   <li>Underscores ('_') are permitted wherever dashes ('-') are permitted.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/symtab.go

    		}
    		// FIXME: avoid having to do name inspections here.
    		// NB: the restrictions below on file local symbols are a bit
    		// arbitrary -- if it turns out we need nameless static
    		// symbols they could be relaxed/removed.
    		sn := ldr.SymName(s)
    		if (sn == "" || sn[0] == '.') && ldr.IsFileLocal(s) {
    			panic(fmt.Sprintf("unexpected file local symbol %d %s<%d>\n",
    				s, sn, ldr.SymVersion(s)))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control.go

    // consistent monotonic update strategy by default - scale up proceeds in ordinal order, no new pod
    // is created while any pod is unhealthy, and pods are terminated in descending order. The burst
    // strategy allows these constraints to be relaxed - pods will be created and deleted eagerly and
    // in no particular order. Clients using the burst strategy should be careful to ensure they
    // understand the consistency implications of having unpredictable numbers of pods available.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top