Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for test_labels (0.2 sec)

  1. pkg/volume/downwardapi/downwardapi_test.go

    		files          map[string]string
    		modes          map[string]int32
    		podLabels      map[string]string
    		podAnnotations map[string]string
    		steps          []testStep
    	}{
    		{
    			name:      "test_labels",
    			files:     map[string]string{"labels": "metadata.labels"},
    			podLabels: labels1,
    			steps: []testStep{
    				// for steps that involve files, stepName is also
    				// used as the name of the file to verify
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            createJob(requestBody);
        }
    
        private static String createLabel() {
            Map<String, Object> labelBody = new HashMap<>();
            labelBody.put("name", TEST_LABEL);
            labelBody.put("value", TEST_LABEL);
            labelBody.put("included_paths", ".*tools.*");
            Response response = checkMethodBase(labelBody).put("/api/admin/labeltype/setting");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/test/apis_meta_v1_unstructed_unstructure_test.go

    				"selfLink":                   "test_selfLink",
    				"creationTimestamp":          "2009-11-10T23:00:00Z",
    				"deletionTimestamp":          "2010-11-10T23:00:00Z",
    				"labels": map[string]interface{}{
    					"test_label": "test_value",
    				},
    				"annotations": map[string]interface{}{
    					"test_annotation": "test_value",
    				},
    				"ownerReferences": []interface{}{
    					map[string]interface{}{
    						"kind":       "Pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 17.3K bytes
    - Viewed (0)
  4. pkg/controller/controller_ref_manager_test.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    )
    
    var (
    	productionLabel         = map[string]string{"type": "production"}
    	testLabel               = map[string]string{"type": "testing"}
    	productionLabelSelector = labels.Set{"type": "production"}.AsSelector()
    	controllerUID           = "123"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

        ::testing::internal::DeathTest* gtest_dt; \
        if (!::testing::internal::DeathTest::Create(#statement, &gtest_regex, \
            __FILE__, __LINE__, &gtest_dt)) { \
          goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \
        } \
        if (gtest_dt != NULL) { \
          ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
              gtest_dt_ptr(gtest_dt); \
          switch (gtest_dt->AssumeRole()) { \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

        ::testing::internal::DeathTest* gtest_dt; \
        if (!::testing::internal::DeathTest::Create(#statement, &gtest_regex, \
            __FILE__, __LINE__, &gtest_dt)) { \
          goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \
        } \
        if (gtest_dt != NULL) { \
          ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
              gtest_dt_ptr(gtest_dt); \
          switch (gtest_dt->AssumeRole()) { \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. cni/pkg/repair/repair_test.go

    				InitExitCode:       126,
    				InitTerminationMsg: "Died for some reason",
    				LabelKey:           "testlabel",
    				LabelValue:         "true",
    			},
    			wantLabels: map[string]string{workingPod.Name: "", workingPodDiedPreviously.Name: "", brokenPodTerminating.Name: "testlabel=true"},
    			wantCount:  1,
    			wantTags:   map[string]string{"result": resultSkip, "type": labelType},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

    	testLabels := []LabelSet{}
    	for _, namespaceLabel := range []klabels.Set{empty, revLabel, legacyLabel, legacyLabelDisabled, legacyAndRevLabel, legacyDisabledAndRevLabel} {
    		for _, podLabel := range []klabels.Set{empty, revLabel, objEnabled, objDisable, objEnabledAndRev, objDisableAndRev} {
    			testLabels = append(testLabels, LabelSet{namespaceLabel, podLabel})
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. .github/actions/notify-translations/app/main.py

        time.sleep(sleep_time)
    
        # Get PR
        logging.debug(f"Processing PR: #{github_event.pull_request.number}")
        pr = repo.get_pull(github_event.pull_request.number)
        label_strs = {label.name for label in pr.get_labels()}
        langs = []
        for label in label_strs:
            if label.startswith("lang-") and not label == lang_all_label:
                langs.append(label[5:])
        logging.info(f"PR #{pr.number} has labels: {label_strs}")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top