Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 231 for JSONPath (0.17 sec)

  1. prow/lib.sh

        CA_DATA=$(kubectl get secret "${SECRET_NAME}" -n istio-system-multi -o "jsonpath={.data['ca\\.crt']}")
        TOKEN=$(kubectl get secret "${SECRET_NAME}" -n istio-system-multi -o "jsonpath={.data['token']}" | base64 --decode)
    
        cat <<EOF > "${filename}"
          apiVersion: v1
          clusters:
             - cluster:
                 certificate-authority-data: ${CA_DATA}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    										Type: "boolean",
    									},
    								},
    							},
    						},
    					},
    				},
    				SelectableFields: []apiextensionsv1.SelectableField{
    					{JSONPath: ".spec.color"},
    					{JSONPath: ".spec.quantity"},
    					{JSONPath: ".spec.size"},
    					{JSONPath: ".spec.branded"},
    				},
    			},
    			{
    				Name:    "v1beta1",
    				Storage: false,
    				Served:  true,
    				Schema: &apiextensionsv1.CustomResourceValidation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.it.CrudTestBase;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.path.json.JsonPath;
    
    @Tag("it")
    public class JobLogTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "joblogTest_";
        private static final String API_PATH = "/api/admin/joblog";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

        }
    
        @Test
        void testCRUD() throws Exception {
            List<Map<String, Object>> available =
                    checkGetMethod(Collections.emptyMap(), getAvailableEndpointSuffix() + "/").body().jsonPath().get("response.plugins");
            final Map<String, Object> targetMap = available.get(0);
            final Artifact target = getArtifactFromMap(targetMap);
    
            // Install
            {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/BackupTests.java

    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.it.CrudTestBase;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.path.json.JsonPath;
    
    @Tag("it")
    public class BackupTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "backupTest_";
        private static final String API_PATH = "/api/admin/backup";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/admin/GroupTests.java

    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.it.CrudTestBase;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    import io.restassured.path.json.JsonPath;
    
    @Tag("it")
    public class GroupTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "groupTest_";
        private static final String API_PATH = "/api/admin/group";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

                "type": "typeValue",
                "format": "formatValue",
                "description": "descriptionValue",
                "priority": 5,
                "jsonPath": "jsonPathValue"
              }
            ],
            "selectableFields": [
              {
                "jsonPath": "jsonPathValue"
              }
            ]
          }
        ],
        "conversion": {
          "strategy": "strategyValue",
          "webhook": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

        additionalPrinterColumns:
        - name: Type
          type: string
          description: The type of this ServiceImport
          jsonPath: .spec.type
        - name: IP
          type: string
          description: The VIP for this ServiceImport
          jsonPath: .spec.ips
        - name: Age
          type: date
          jsonPath: .metadata.creationTimestamp
        "schema":
          "openAPIV3Schema":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  9. cluster/gce/upgrade.sh

      until [[ $("${KUBE_ROOT}"/cluster/kubectl.sh -n kube-system get deployment coredns -o=jsonpath='{$.metadata.resourceVersion}') -ne ${COREDNS_DEPLOY_RESOURCE_VERSION} ]] || [[ $(date -u +%s) -gt $endtime ]]; do
         sleep 1
      done
    
      if [[ $("${KUBE_ROOT}"/cluster/kubectl.sh -n kube-system get deployment coredns -o=jsonpath='{$.metadata.resourceVersion}') -ne ${COREDNS_DEPLOY_RESOURCE_VERSION} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

    		{Name: "Age", Type: "date", JSONPath: ".metadata.creationTimestamp"},
    		{Name: "Replicas", Type: "integer", JSONPath: ".spec.replicas"},
    		{Name: "Missing", Type: "string", JSONPath: ".spec.missing"},
    		{Name: "Invalid", Type: "integer", JSONPath: ".spec.string"},
    		{Name: "String", Type: "string", JSONPath: ".spec.string"},
    		{Name: "StringFloat64", Type: "string", JSONPath: ".spec.float64"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top