Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 308 for wastage (0.71 sec)

  1. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/groovy/src/test/java/org/gradle/PersonTest.java

    import org.junit.Before;
    
    import static org.junit.Assert.assertEquals;
    
    public class PersonTest{
    
        Person person;
        @Before public void setup(){
            person = new Person();
        }
    
        @Test public void testAge() {
            person.setAge(30);
            assertEquals(30, person.getAge());
        }
    
    
        @Test public void testSurname() {
            person.setSurname("Duke");
            assertEquals("Duke", person.getSurname());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 476 bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt

    import jetbrains.buildServer.configs.kotlin.BuildStep
    import jetbrains.buildServer.configs.kotlin.buildSteps.script
    import model.CIBuildModel
    import model.Stage
    import model.StageName
    
    class FlakyTestQuarantine(model: CIBuildModel, stage: Stage, os: Os, arch: Arch = Arch.AMD64) : BaseGradleBuildType(stage = stage, init = {
        id("${model.projectId}_FlakyQuarantine_${os.asName()}_${arch.asName()}")
        name = "Flaky Test Quarantine - ${os.asName()} ${arch.asName()}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/get_compiler_ir.h

    enum class CompilerArgSource {
      TENSOR_SPEC,
      CONCRETE_INPUT,
    };
    
    // Returns the IR format of the selected stage for a given function `func_name`
    // using library runtime `runtime` on a device `dev` with given
    // `inputs_arg_shape_and_dtype` and `input_handles`.
    absl::StatusOr<std::string> GetCompilerIr(
        IrExportStage stage, ProcessFunctionLibraryRuntime* pflr,
        absl::string_view func_name, Device* dev, EagerContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// is sent. This stage is only generated for long-running requests (e.g. watch).
    	StageResponseStarted Stage = "ResponseStarted"
    	// The stage for events generated once the response body has been completed, and no more bytes
    	// will be sent.
    	StageResponseComplete Stage = "ResponseComplete"
    	// The stage for events generated when a panic occurred.
    	StagePanic Stage = "Panic"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/Gradleception.kt

    import jetbrains.buildServer.configs.kotlin.buildSteps.script
    import model.CIBuildModel
    import model.Stage
    
    /**
     * Build a Gradle distribution (dogfood-first) and use this distribution to build a distribution again (dogfood-second).
     * Use `dogfood-second` to run `test sanityCheck`.
     */
    class Gradleception(
        model: CIBuildModel,
        stage: Stage,
        buildJvm: Jvm,
        jvmDescription: String,
        bundleGroovy4: Boolean = false,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 09:57:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/jacoco-quickstart/kotlin/src/test/java/org/gradle/PersonTest.java

    import org.junit.Before;
    
    import static org.junit.Assert.assertEquals;
    
    public class PersonTest{
    
        Person person;
        @Before public void setup(){
            person = new Person();
        }
    
        @Test public void testAge() {
            person.setAge(30);
            assertEquals(30, person.getAge());
        }
    
    
        @Test public void testSurname() {
            person.setSurname("Duke");
            assertEquals("Duke", person.getSurname());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 476 bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    import model.CIBuildModel
    import model.PerformanceTestBuildSpec
    import model.PerformanceTestType
    import model.Stage
    
    class PerformanceTest(
        model: CIBuildModel,
        stage: Stage,
        performanceTestBuildSpec: PerformanceTestBuildSpec,
        description: String,
        performanceSubProject: String,
        val testProjects: List<String>,
        val bucketIndex: Int,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/audit/log/backend_test.go

    	for _, test := range []struct {
    		event    *auditinternal.Event
    		expected string
    	}{
    		{
    			&auditinternal.Event{
    				AuditID: types.UID(uuid.New().String()),
    			},
    			`[\d\:\-\.\+TZ]+ AUDIT: id="[\w-]+" stage="" ip="<unknown>" method="" user="<none>" groups="<none>" as="<self>" asgroups="<lookup>" user-agent="" namespace="<none>" uri="" response="<deferred>"`,
    		},
    		{
    			&auditinternal.Event{
    				ResponseStatus: &metav1.Status{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/zz_generated.conversion.go

    	}
    	return nil
    }
    
    func autoConvert_v1_Event_To_audit_Event(in *Event, out *audit.Event, s conversion.Scope) error {
    	out.Level = audit.Level(in.Level)
    	out.AuditID = types.UID(in.AuditID)
    	out.Stage = audit.Stage(in.Stage)
    	out.RequestURI = in.RequestURI
    	out.Verb = in.Verb
    	out.User = in.User
    	out.ImpersonatedUser = (*authenticationv1.UserInfo)(unsafe.Pointer(in.ImpersonatedUser))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Namespace: namespace,
    			Subsystem: subsystem,
    			Name:      "priority_level_seat_utilization",
    			Help:      "Observations, at the end of every nanosecond, of utilization of seats for any stage of execution (but only initial stage for WATCHes)",
    			// Buckets for both 0.99 and 1.0 mean PromQL's histogram_quantile will reveal saturation
    			Buckets:        []float64{0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.95, 0.99, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top