Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 195 for geterror (0.17 sec)

  1. test/fixedbugs/issue6889.go

    	f89 = f88 * 89
    	f90 = f89 * 90
    	f91 = f90 * 91
    	f92 = f91 * 92
    	f93 = f92 * 93
    	f94 = f93 * 94
    	f95 = f94 * 95
    	f96 = f95 * 96
    	f97 = f96 * 97
    	f98 = f97 * 98
    	f99 = f98 * 99 // GC_ERROR "overflow"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeSpec.groovy

                super(decompressionCache)
                this.backingFile = backingFile
            }
    
            @Override
            DirectoryFileTree getMirror() {
                throw new UnsupportedOperationException()
            }
    
            @Override
            void visit(FileVisitor visitor) {
                throw new UnsupportedOperationException()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                                }
                                return null;
                            }
    
                            final List<String> errors = auth.getErrors();
                            if (!errors.isEmpty()) {
                                logger.warn("{}", errors.stream().collect(Collectors.joining(", ")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue7746.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    const (
    	c0   = 1 << 100
    	c1   = c0 * c0
    	c2   = c1 * c1
    	c3   = c2 * c2 // GC_ERROR "overflow"
    	c4   = c3 * c3
    	c5   = c4 * c4
    	c6   = c5 * c5
    	c7   = c6 * c6
    	c8   = c7 * c7
    	c9   = c8 * c8
    	c10  = c9 * c9
    	c11  = c10 * c10
    	c12  = c11 * c11
    	c13  = c12 * c12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/DependencyVerificationReportWriter.java

                state.hasMissing();
            } else if (failure instanceof SignatureVerificationFailure) {
                state.failedSignatures();
                if (((SignatureVerificationFailure) failure).getErrors().values().stream().map(SignatureVerificationFailure.SignatureError::getKind).noneMatch(kind -> kind == SignatureVerificationFailure.FailureKind.PASSED_NOT_TRUSTED)) {
                    state.maybeCompromised();
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

            getArtifact(artifact, remoteRepositories, null, false);
        }
    
        @Deprecated
        public ArtifactRepository getMirrorRepository(ArtifactRepository repository) {
    
            Mirror mirror = mirrorSelector.getMirror(
                    repository, legacySupport.getSession().getSettings().getMirrors());
    
            if (mirror != null) {
                String id = mirror.getId();
                if (id == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/aether/LegacyRepositorySystemSessionExtender.java

            if (repositories != null && mirrors != null) {
                for (ArtifactRepository repository : repositories) {
                    Mirror mirror = MavenRepositorySystem.getMirror(repository, mirrors);
                    injectMirror(repository, mirror);
                }
            }
        }
    
        private void injectMirror(ArtifactRepository repository, Mirror mirror) {
            if (mirror != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FileTreeAdapter.java

                return ((GeneratedSingletonFileTree) tree).getFileWithoutCreating().equals(file);
            }
            if (tree instanceof FileSystemMirroringFileTree) {
                return ((FileSystemMirroringFileTree) tree).getMirror().contains(file);
            }
            return super.contains(file);
        }
    
        @Override
        public FileTreeInternal matching(PatternFilterable patterns) {
            if (tree instanceof PatternFilterableFileTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/preemption/preemption.go

    	if err != nil && len(candidates) == 0 {
    		return nil, framework.AsStatus(err)
    	}
    
    	// Return a FitError only when there are no candidates that fit the pod.
    	if len(candidates) == 0 {
    		fitError := &framework.FitError{
    			Pod:         pod,
    			NumAllNodes: len(nodeToStatusMap),
    			Diagnosis: framework.Diagnosis{
    				NodeToStatusMap: nodeToStatusMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.logging.TestLoggingContainer.getError()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestLoggingContainer.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top