Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for isObject (0.74 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ExpressionTypeProvider.kt

                    if (whenExpression != null) {
                        val subject = whenExpression.subjectExpression ?: return with(analysisSession) { builtinTypes.boolean }
                        val kotlinType = analysisContext.analyze(subject).getType(subject)
                        return kotlinType?.toKtNonErrorType(analysisContext)
                    }
                }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                    }
                }
            }
    
            private ModelReference<?> mapSubject(ModelReference<?> subject, ModelPath targetPath) {
                if (subject.getPath() == null) {
                    return subject.inScope(targetPath);
                } else {
                    return subject.withPath(targetPath.descendant(subject.getPath()));
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            }
        }
    
        @Override
        public <T> void bind(ModelReference<T> subject, ModelActionRole role, ModelAction mutator) {
            bindInternal(subject, role, mutator);
        }
    
        private <T> RuleBinder bindInternal(ModelReference<T> subject, ModelActionRole role, ModelAction mutator) {
            BindingPredicate mappedSubject = mapSubject(subject, role);
            List<BindingPredicate> mappedInputs = mapInputs(mutator.getInputs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        String getMailSmtpServerMainHostAndPort();
    
        /**
         * Get the value for the key 'mail.subject.test.prefix'. <br>
         * The value is, e.g. [Test] <br>
         * comment: The prefix of subject to show test environment or not
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

    import org.gradle.util.ConcurrentSpecification
    import spock.lang.Subject
    
    class WorkerDaemonClientsManagerTest extends ConcurrentSpecification {
        def options = Stub(DaemonForkOptions)
        def starter = Stub(WorkerDaemonStarter)
        def listenerManager = Stub(ListenerManager)
        def loggingManager = Stub(LoggingManagerInternal)
        def memoryManager = Mock(MemoryManager)
    
        @Subject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/crypto/x509/verify.go

    }
    
    func (e UnknownAuthorityError) Error() string {
    	s := "x509: certificate signed by unknown authority"
    	if e.hintErr != nil {
    		certName := e.hintCert.Subject.CommonName
    		if len(certName) == 0 {
    			if len(e.hintCert.Subject.Organization) > 0 {
    				certName = e.hintCert.Subject.Organization[0]
    			} else {
    				certName = "serial:" + e.hintCert.SerialNumber.String()
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

                putValue(data, "Sender", message.getSender());
                putValue(data, "Sent-Date", message.getSentDate());
                putValue(data, "Size", message.getSize());
                putValue(data, "Subject", message.getSubject());
                putValue(data, "Receipients", message.getAllRecipients());
                putValue(data, "To", message.getRecipients(Message.RecipientType.TO));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

            failure.assertHasCause("Attempt to modify a read only view of model element 'people' of type 'ModelMap<Person>' given to rule RulePlugin#mutate(ModelMap<Task>, ModelMap<Person>)")
        }
    
        def "cannot mutate when used as subject of validate rule"() {
            when:
            buildScript '''
                @Managed
                interface Person extends Named {
                  String getValue()
                  void setValue(String string)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    Contributor.
    
    2. GRANT OF RIGHTS
    
      a) Subject to the terms of this Agreement, each Contributor hereby
      grants Recipient a non-exclusive, worldwide, royalty-free copyright
      license to reproduce, prepare Derivative Works of, publicly display,
      publicly perform, Distribute and sublicense the Contribution of such
      Contributor, if any, and such Derivative Works.
    
      b) Subject to the terms of this Agreement, each Contributor hereby
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

    import spock.lang.Specification
    import spock.lang.Subject
    
    import java.util.function.Function
    
    class DefaultUserInputHandlerTest extends Specification {
    
        private static final String TEXT = 'Accept license?'
        def outputEventBroadcaster = Mock(OutputEventListener)
        def userInputReader = Mock(UserInputReader)
        def clock = Mock(Clock)
        @Subject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top