Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for expectedly (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FailingBuildAction.java

        @Override
        public SomeToolingModel execute(BuildController controller) {
            controller.getBuildModel();
            throw new RuntimeException("Build action expectedly failed");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

            when:
            withIsolatedProjects()
            runBuildActionFails(new FailingBuildAction())
    
            then:
            fixture.assertNoConfigurationCache()
            failureDescriptionContains("Build action expectedly failed")
    
            // TODO:isolated should not contain this output https://github.com/gradle/gradle/issues/27476
            failure.assertOutputContains("Configuration cache entry stored.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal_test.go

    			assert.Equal(t, namespace, obj.Namespace, "the HPA namespace should be as expected")
    			assert.Equal(t, hpaName, obj.Name, "the HPA name should be as expected")
    			assert.Equal(t, tc.expectedDesiredReplicas, obj.Status.DesiredReplicas, "the desired replica count reported in the object status should be as expected")
    			if tc.verifyCPUCurrent {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  4. tensorflow/cc/tools/freeze_saved_model_test.cc

        GraphDef expected_graph_def;
        Scope expected_scope = Scope::NewRootScope();
        Output expected_a = ops::Const(expected_scope.WithOpName("a"), 10.0f, {});
        Output expected_b = ops::Const(expected_scope.WithOpName("b"), 10.0f, {});
        Output expected_c =
            ops::Mul(expected_scope.WithOpName("c"), expected_a, expected_b);
        TF_ASSERT_OK(expected_scope.ToGraphDef(&expected_graph_def));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/certs_test.go

    				}
    			}
    
    			val, err := test.externalCAFunc(&cfg.ClusterConfiguration)
    			if val != test.expected {
    				t.Errorf("UsingExternalCA did not match expected: %v", test.expected)
    			}
    
    			if (err != nil) != test.expectedErr {
    				t.Errorf("UsingExternalCA returned un expected err: %v", err)
    			}
    		})
    	}
    }
    
    func TestValidateMethods(t *testing.T) {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected4.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 245 bytes
    - Viewed (0)
  7. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected1.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 521 bytes
    - Viewed (0)
  8. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected5.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 244 bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            }
            def expectedGradleOps = [
                expectedOp('Gradle.afterProject', 'gradle.afterProject(Action)'),
                expectedOp('Gradle.afterProject', 'gradle.afterProject(Closure(0))'),
                expectedOp('Gradle.afterProject', 'gradle.afterProject(Closure(1))'),
                expectedOp('Gradle.afterProject', 'gradle.afterProject(Closure(2))'),
                expectedOp('Gradle.addListener', 'gradle.addListener(ProjectEvaluationListener)'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  10. security/pkg/pki/util/dual_use_test.go

    func TestDualUseCommonName(t *testing.T) {
    	tt := []struct {
    		name       string
    		host       string
    		expectedCN string
    		expectErr  bool
    	}{
    		{
    			name:       "single host",
    			host:       "a.com",
    			expectedCN: "a.com",
    		},
    		{
    			name:       "multiple hosts",
    			host:       "a.com,b.org,c.groups",
    			expectedCN: "a.com",
    		},
    		{
    			name:      "long host",
    			host:      strings.Repeat("a", 61) + ".com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top