Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for isLegal (0.21 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

            std::nullopt);
    
    // Converts dequantize-(quantizable) call-quantize pattern to a single call op
    // that has quantized input and output types. It is expected for this pass to
    // emit illegal IR with unsupported quantized input and output types. The
    // pass following immediately after this one will be responsible for legalizing
    // input and output types by unwrapping quantization parameters.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{144, "EDC5144I", "Improper link."},
    	{145, "EDC5145I", "The parameter list is too long, or the message to receive was too large for the buffer."},
    	{146, "EDC5146I", "Too many levels of symbolic links."},
    	{147, "EDC5147I", "Illegal byte sequence."},
    	{148, "EDC5148I", "The named attribute or data not available."},
    	{149, "EDC5149I", "Value Overflow Error."},
    	{150, "EDC5150I", "UNIX System Services is not active."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            abstract fun dispose(): WritingState
    
            private
            fun illegalStateFor(operation: String): Nothing = throw IllegalStateException(
                "'$operation' is illegal while in '${javaClass.simpleName}' state."
            )
        }
    
        private
        inner class Idle : WritingState() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/codegen.cc

      if (ident[0] != '_' && !IsAlpha(ident[0])) {
        return errors::InvalidArgument("illegal leading char: ", msg);
      }
      for (size_t pos = 1; pos < ident.size(); ++pos) {
        if (ident[pos] != '_' && !IsAlphaNum(ident[pos])) {
          return errors::InvalidArgument("illegal char: ", msg);
        }
      }
      return absl::OkStatus();
    }
    
    }  // namespace tfcompile
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. internal/s3select/unused-errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errIllegalSQLFunctionArgument(err error) *s3Error {
    	return &s3Error{
    		code:       "IllegalSqlFunctionArgument",
    		message:    "Illegal argument was used in the SQL function.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errMultipleDataSourcesUnsupported(err error) *s3Error {
    	return &s3Error{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    	}
    	return events
    }
    
    // podHasPVCs returns 2 values:
    // - the first one to denote if the given "pod" has any PVC defined.
    // - the second one to return any error if the requested PVC is illegal.
    func (pl *VolumeBinding) podHasPVCs(pod *v1.Pod) (bool, error) {
    	hasPVC := false
    	for _, vol := range pod.Spec.Volumes {
    		var pvcName string
    		isEphemeral := false
    		switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/UnsignedLongs.java

        if (string.length() == 0) {
          throw new NumberFormatException("empty string");
        }
        if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX) {
          throw new NumberFormatException("illegal radix: " + radix);
        }
    
        int maxSafePos = ParseOverflowDetection.maxSafeDigits[radix] - 1;
        long value = 0;
        for (int pos = 0; pos < string.length(); pos++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/index/suffixarray/suffixarray_test.go

    	// check that each result is in fact a correct match and the result is sorted
    	for i, r := range res {
    		if r[0] < 0 || r[0] > r[1] || len(tc.source) < r[1] {
    			t.Errorf("test %q, FindAllIndex %q, result %d (n == %d): illegal match [%d, %d]", tc.name, rx, i, n, r[0], r[1])
    		} else if !rx.MatchString(tc.source[r[0]:r[1]]) {
    			t.Errorf("test %q, FindAllIndex %q, result %d (n = %d): [%d, %d] not a match", tc.name, rx, i, n, r[0], r[1])
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/net/http/cookie.go

    	if len(c.Path) > 0 {
    		b.WriteString("; Path=")
    		b.WriteString(sanitizeCookiePath(c.Path))
    	}
    	if len(c.Domain) > 0 {
    		if validCookieDomain(c.Domain) {
    			// A c.Domain containing illegal characters is not
    			// sanitized but simply dropped which turns the cookie
    			// into a host-only cookie. A leading dot is okay
    			// but won't be sent.
    			d := c.Domain
    			if d[0] == '.' {
    				d = d[1:]
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/UnsignedLongs.java

        if (string.length() == 0) {
          throw new NumberFormatException("empty string");
        }
        if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX) {
          throw new NumberFormatException("illegal radix: " + radix);
        }
    
        int maxSafePos = ParseOverflowDetection.maxSafeDigits[radix] - 1;
        long value = 0;
        for (int pos = 0; pos < string.length(); pos++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top