Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 713 for Invalid (0.11 sec)

  1. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            if (froms.length != 2) {
                throw new FessSystemException("Invalid format: " + time);
            }
            final int[] values = new int[2];
            values[0] = Integer.parseInt(froms[0]);
            if (values[0] < 0 || values[0] > 23) {
                throw new FessSystemException("Invalid format: " + time);
            }
            values[1] = Integer.parseInt(froms[1]);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/lifetime/KtLifetimeToken.kt

    }
    
    public typealias KtLifetimeTokenFactory = KaLifetimeTokenFactory
    
    @Suppress("NOTHING_TO_INLINE")
    public inline fun KaLifetimeToken.assertIsValidAndAccessible() {
        if (!isValid()) {
            throw KaInvalidLifetimeOwnerAccessException("Access to invalid $this: ${getInvalidationReason()}")
        }
        if (!isAccessible()) {
            throw KaInaccessibleLifetimeOwnerAccessException("$this is inaccessible: ${getInaccessibilityReason()}")
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    		return m.match(typ.Elem(), false)
    
    	case *types.Pointer:
    		// Ugly, but dealing with an edge case: a known pointer to an invalid type,
    		// probably something from a failed import.
    		if typ.Elem() == types.Typ[types.Invalid] {
    			return true // special case
    		}
    		// If it's actually a pointer with %p, it prints as one.
    		if m.t == argPointer {
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivatorTest.java

            assertActivationWithProblems(profile, newContext(null, newProperties("rubbish")), "invalid JDK version");
            assertActivationWithProblems(profile, newContext(null, newProperties("1.a.0_09")), "invalid JDK version");
            assertActivationWithProblems(profile, newContext(null, newProperties("1.a.2.b")), "invalid JDK version");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{50, "ENOCSI", "no CSI structure available"},
    	{51, "EL2HLT", "level 2 halted"},
    	{52, "EBADE", "invalid exchange"},
    	{53, "EBADR", "invalid request descriptor"},
    	{54, "EXFULL", "exchange full"},
    	{55, "ENOANO", "no anode"},
    	{56, "EBADRQC", "invalid request code"},
    	{57, "EBADSLT", "invalid slot"},
    	{59, "EBFONT", "bad font file format"},
    	{60, "ENOSTR", "device not a stream"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

            if (event.getMetadata().getFile() != null) {
                metadata = event.getMetadata().getFile();
            } else {
                metadata = event.getMetadata();
            }
    
            String errorType = " is invalid";
            if (exception instanceof FileNotFoundException) {
                errorType = " is inaccessible";
            }
    
            String msg = "";
            if (exception != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 19:10:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check.go

    // It also sets alias.typ to Typ[Invalid].
    // Not used if check.conf.EnableAlias is set.
    func (check *Checker) brokenAlias(alias *TypeName) {
    	assert(!check.conf.EnableAlias)
    	if check.brokenAliases == nil {
    		check.brokenAliases = make(map[*TypeName]bool)
    	}
    	check.brokenAliases[alias] = true
    	alias.typ = Typ[Invalid]
    }
    
    // validAlias records that alias has the valid type typ (possibly Typ[Invalid]).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/crypto/x509/45990.md

    [CreateCertificateRequest] now correct supports RSA-PSS signature algorithms.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 317 bytes
    - Viewed (0)
  9. src/crypto/ecdsa/ecdsa.go

    // invalid according to the definition of [ecdh.Curve.NewPublicKey], or if the
    // Curve is not supported by crypto/ecdh.
    func (k *PublicKey) ECDH() (*ecdh.PublicKey, error) {
    	c := curveToECDH(k.Curve)
    	if c == nil {
    		return nil, errors.New("ecdsa: unsupported curve by crypto/ecdh")
    	}
    	if !k.Curve.IsOnCurve(k.X, k.Y) {
    		return nil, errors.New("ecdsa: invalid public key")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

                        url = "https://invalid.invalid/"
                    }
                }
            """
    
            when:
            executer.withStacktraceEnabled()
            executer.withStackTraceChecksDisabled()
            withBuildCache().run "jar"
    
            then:
            output.contains("java.net.UnknownHostException")
            output.contains("invalid.invalid")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top