Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 419 for pause (0.4 sec)

  1. src/cmd/compile/internal/types2/instantiate.go

    	if Ti.typeSet().IsEmpty() {
    		if cause != nil {
    			*cause = check.sprintf("cannot %s %s (empty type set)", verb, T)
    		}
    		return false
    	}
    
    	// V must implement T's methods, if any.
    	if m, _ := check.missingMethod(V, T, true, Identical, cause); m != nil /* !Implements(V, T) */ {
    		if cause != nil {
    			*cause = check.sprintf("%s does not %s %s %s", V, verb, T, *cause)
    		}
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorInjectDecoratedTest.groovy

            def e = thrown(ClassGenerationException)
            e.cause.message == "Cannot use @Inject annotation on method ExtensibleBeanWithInject.getExtensions()."
        }
    
        def "cannot attach @Inject annotation to final method"() {
            when:
            generator.generate(FinalInjectBean)
    
            then:
            def e = thrown(ClassGenerationException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                                )
                            )
                        )
                    ]
                )""".trimIndent()
            parse(code).assert(expected)
        }
    
        private
        fun parse(code: String): LanguageTreeResult = ParseTestUtil.parse(code)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Throwables.java

      }
    
      /**
       * Gets a {@code Throwable} cause chain as a list. The first entry in the list will be {@code
       * throwable} followed by its cause hierarchy. Note that this is a snapshot of the cause chain and
       * will not reflect any subsequent changes to the cause chain.
       *
       * <p>Here's an example of how it can be used to find specific types of exceptions in the cause
       * chain:
       *
       * <pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/lookup.go

    				// Rather than reporting this misleading error cause, for now
    				// just point out that the method signature is incorrect.
    				// TODO(gri) should find a good way to report the root cause
    				*cause = check.sprintf("(wrong type for method %s)", m.Name())
    				break
    			}
    			*cause = check.sprintf("(wrong type for method %s)\n\t\thave %s\n\t\twant %s", m.Name(), fs, ms)
    		case ambigSel:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    //	5th word -- Padding.
    func parseCPU(b []byte) (*Profile, error) {
    	var parse func([]byte) (uint64, []byte)
    	var n1, n2, n3, n4, n5 uint64
    	for _, parse = range cpuInts {
    		var tmp []byte
    		n1, tmp = parse(b)
    		n2, tmp = parse(tmp)
    		n3, tmp = parse(tmp)
    		n4, tmp = parse(tmp)
    		n5, tmp = parse(tmp)
    
    		if tmp != nil && n1 == 0 && n2 == 3 && n3 == 0 && n4 > 0 && n5 == 0 {
    			b = tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  7. misc/ios/go_ios_exec.go

    		} `xml:"array>dict"`
    	}
    	if err := xml.Unmarshal(out, &list); err != nil {
    		return "", fmt.Errorf("failed to parse ideviceinstaller output: %v", err)
    	}
    	for _, app := range list.Apps {
    		values, err := parsePlistDict(app.Data)
    		if err != nil {
    			return "", fmt.Errorf("findDeviceAppPath: failed to parse app dict: %v", err)
    		}
    		if values["CFBundleIdentifier"] == bundleID {
    			if path, ok := values["Path"]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        NPE_IAE_OR_UOE() {
          @Override
          public boolean isExpectedType(Throwable cause) {
            return cause instanceof NullPointerException
                || cause instanceof IllegalArgumentException
                || cause instanceof UnsupportedOperationException;
          }
        };
    
        public abstract boolean isExpectedType(Throwable cause);
      }
    
      private static boolean annotatedTypeExists() {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_fr.properties

    labels.ldapAdminSecurityPrincipal	=	Bind DN
    labels.ldapAdminSecurityCredentials	=	Mot de passe
    labels.ldapBaseDn	=	DN de base
    labels.ldapAccountFilter	=	Filtre de compte
    labels.ldapGroupFilter	=	Filtre de groupe
    labels.ldapMemberofAttribute	=	Attribut memberOf
    labels.oldPassword	=	Mot de passe actuel
    labels.newPassword	=	nouveau mot de passe
    labels.confirmNewPassword	=	Nouveau mot de passe (confirmer)
    
    labels.menu_system	=	Système
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    }
                    if (values.length > 1) {
                        cb.query().setUpdatedAt_LessEqual(LocalDateTime.parse(values[1], formatter));
                    }
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed to parse {}", pager.requestedTimeRange, e);
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top