Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,335 for idents (0.13 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildProgressCrossVersionSpec.groovy

    """
    
            when:
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
                    connection.newBuild()
                            .addProgressListener(events)
                            .run()
            }
    
            then:
            events.assertIsABuild()
    
            def configureBuild = events.operation("Configure build")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/assignments.go

    func (check *Checker) lhsVar(lhs syntax.Expr) Type {
    	// Determine if the lhs is a (possibly parenthesized) identifier.
    	ident, _ := syntax.Unparen(lhs).(*syntax.Name)
    
    	// Don't evaluate lhs if it is the blank identifier.
    	if ident != nil && ident.Value == "_" {
    		check.recordDef(ident, nil)
    		return nil
    	}
    
    	// If the lhs is an identifier denoting a variable v, this reference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStats.java

        static GarbageCollectionStats forHeap(Collection<GarbageCollectionEvent> events) {
            if (events.isEmpty()) {
                return noData();
            } else {
                return new GarbageCollectionStats(
                        calculateRate(events),
                        calculateAverageUsage(events),
                        findMaxSize(events),
                        events.size()
                );
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

            def configureRootProject = events.operation("Configure project :")
            def applyBuildGradle = events.operation(applyBuildScriptRootProject())
    
            def help = events.operation("Apply plugin org.gradle.help-tasks to root project 'single'")
            def java = events.operation("Apply plugin org.gradle.java to root project 'single'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            withFailingTestClasses(10)
    
            when:
            fails("test")
    
            then:
            events.statusLogged("0 tests completed")
            events.statusLogged("1 test completed, 1 failed")
            (2..10).each { count ->
                assert events.statusLogged("${count} tests completed, ${count} failed")
            }
        }
    
        def "captures skipped test progress logging events" () {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            then: "fingerprint frame events are logged"
            def events = collectOutputEvents()
            events.contains([profile: "build fingerprint", type: "O", "frame": GradleEnvironment.name])
            events.contains([profile: "build fingerprint", type: "C", "frame": GradleEnvironment.name])
            events.contains([profile: "project fingerprint", type: "O", "frame": ProjectFingerprint.name])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            then: "task progress events must be forwarded to the attached listeners"
            !events.tasks.empty
            events.operations == events.tasks
        }
    
        def "receive task progress events when launching a build"() {
            given:
            goodCode()
    
            when: "launching a build"
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

                  method,
                  parameterTypes[0].getName(),
                  Primitives.wrap(parameterTypes[0]).getSimpleName());
    
              MethodIdentifier ident = new MethodIdentifier(method);
              if (!identifiers.containsKey(ident)) {
                identifiers.put(ident, method);
              }
            }
          }
        }
        return ImmutableList.copyOf(identifiers.values());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
                    connection.model(BuildInvocations).forTasks('assemble').addProgressListener(events, EnumSet.of(OperationType.GENERIC)).get()
            }
    
            then: "build progress events must be forwarded to the attached listeners"
            events.assertIsABuild()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/BuildProgressCrossVersionSpec.groovy

            withConnection {
                ProjectConnection connection ->
                    connection.newBuild()
                            .withArguments("--init-script", file("init.gradle").toString())
                            .addProgressListener(events)
                            .run()
            }
    
            then:
            events.assertIsABuild()
    
            def root = events.operation("Run build")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top