Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for expectedly (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/fieldpath/fieldpath_test.go

    			expectedOK: false,
    		},
    		{
    			fieldPath:  "metadata.labels['key']foo",
    			expectedOK: false,
    		},
    		{
    			fieldPath:  "['key']",
    			expectedOK: false,
    		},
    		{
    			fieldPath:  "metadata.labels",
    			expectedOK: false,
    		},
    	}
    	for _, tc := range cases {
    		path, subscript, ok := SplitMaybeSubscriptedPath(tc.fieldPath)
    		if !ok {
    			if tc.expectedOK {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 06:26:55 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/certificates_test.go

    			expectedKey:       "/cluster-signing-key",
    		},
    		{
    			name:              "specifiedOnly-KubeletServingSignerFilesSpecified",
    			config:            specifiedOnly,
    			specifiedFn:       areKubeletServingSignerFilesSpecified,
    			expectedSpecified: true,
    			filesFn:           getKubeletServingSignerFiles,
    			expectedCert:      "/cluster-signing-kubelet-serving/cert-file",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 09 12:14:55 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/constants/constants_test.go

    			manifestsDir:  "/etc/bar/",
    			expected:      "/etc/bar/foo.yaml",
    		},
    	}
    	for _, rt := range tests {
    		t.Run(rt.componentName, func(t *testing.T) {
    			actual := GetStaticPodFilepath(rt.componentName, rt.manifestsDir)
    			expected := filepath.FromSlash(rt.expected)
    			if actual != expected {
    				t.Errorf(
    					"failed GetStaticPodFilepath:\n\texpected: %s\n\t  actual: %s",
    					rt.expected,
    					actual,
    				)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. security/pkg/k8s/configutil_test.go

    			Namespace: namespace,
    		},
    		Data: data,
    	}
    }
    
    func checkActions(actual, expected []ktesting.Action) error {
    	if len(actual) != len(expected) {
    		return fmt.Errorf("unexpected number of actions, want %d but got %d, %v", len(expected), len(actual), actual)
    	}
    
    	for i, action := range actual {
    		expectedAction := expected[i]
    		verb := expectedAction.GetVerb()
    		resource := expectedAction.GetResource().Resource
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/storage_test.go

    			},
    		},
    	}
    
    	for _, podIn := range podsIn {
    		expected := podStart
    		expected.ResourceVersion = "2"
    		grace := int64(30)
    		enableServiceLinks := v1.DefaultEnableServiceLinks
    		expected.Spec.TerminationGracePeriodSeconds = &grace
    		expected.Spec.RestartPolicy = api.RestartPolicyAlways
    		expected.Spec.DNSPolicy = api.DNSClusterFirst
    		expected.Spec.EnableServiceLinks = &enableServiceLinks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_test.go

    	} else if expectedKey, _ := controller.KeyFunc(set1); expectedKey != key {
    		t.Errorf("expected StatefulSet key %s found %s", expectedKey, key)
    	}
    	ssc.queue.Done(key)
    
    	ssc.addPod(logger, pod2)
    	key, done = ssc.queue.Get()
    	if key == "" || done {
    		t.Error("failed to enqueue StatefulSet")
    	} else if expectedKey, _ := controller.KeyFunc(set2); expectedKey != key {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top