Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for finishes (0.11 sec)

  1. pkg/scheduler/internal/queue/events.go

    	PodAdd = "PodAdd"
    	// ScheduleAttemptFailure is the event when a schedule attempt fails.
    	ScheduleAttemptFailure = "ScheduleAttemptFailure"
    	// BackoffComplete is the event when a pod finishes backoff.
    	BackoffComplete = "BackoffComplete"
    	// ForceActivate is the event when a pod is moved from unschedulablePods/backoffQ
    	// to activeQ. Usually it's triggered by plugin implementations.
    	ForceActivate = "ForceActivate"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheIntegrationTest.groovy

                    @Override
                    void execute(File file) {
                        throw new IllegalStateException('Cache does not lock properly')
                    }
                })
            }
    
            concurrent.finished()
    
            then:
            noExceptionThrown()
            jarFile1 && jarFile2
            jarFile1.exists() && jarFile2.exists()
            jarFile1 == jarFile2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeLifecycleControllerFactory.kt

            val modelCreator = ConfigurationCacheAwareBuildTreeModelCreator(defaultModelCreator, cache)
    
            val finisher = ConfigurationCacheAwareFinishExecutor(finishExecutor, cache)
    
            return DefaultBuildTreeLifecycleController(targetBuild, workController, modelCreator, finisher, stateTransitionControllerFactory, startParameter, buildModelParameters)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiInvocationValidationIntegrationTest.groovy

            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << ""
            buildFile << """
                plugins.apply(my.MyPlugin)
                gradle.buildFinished {
                    println("build finished")
                }
            """
    
            when:
            executer.withArguments(ENABLE_CLI)
            fetchModelFails()
    
            then:
            fixture.assertStateStoredAndDiscarded {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

        def "intermediate model is cached and reused for nested concurrent requests"() {
            // Sleep to ensure concurrent requests for the same model catch up before the first one is finished
            withSomeToolingModelBuilderPluginInBuildSrc("""
                Thread.sleep(3000)
            """)
    
            settingsFile << """
                rootProject.name = "root"
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonProcessState.java

                // The daemon could not be stopped cleanly, so the services could still be doing work.
                // Don't attempt to stop the services, just stop this process
                return;
            }
    
            // Daemon has finished work, so stop the services
            buildProcessState.close();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

          op_builder.add_hardware(hardware);
    
          if (per_device_cost.has_value()) {
            op_builder.add_op_costs(per_device_cost_offset);
          }
    
          ops.push_back(op_builder.Finish());
        }
        index++;
      }
      return CreateSubgraphMetadata(*builder, builder->CreateVector(ops));
    }
    
    flatbuffers::Offset<tflite::HardwareMetadata>
    CreateHardwareMetadataAndPopulateLookupTable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'compilation:java:java-compilation-warning' : 'Java compilation warning',
            'compilation:java:java-compilation-advice' : 'Java compilation note',
            'dependency-version-catalog:alias-not-finished' : 'version catalog error',
            'dependency-version-catalog:invalid-dependency-notation' : 'Dependency version catalog problem',
            'dependency-version-catalog:reserved-alias-name' : 'version catalog error',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top