Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 167 for pathchk (0.17 sec)

  1. build-logic/kotlin-dsl/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to configure Kotlin DSL and patch the Kotlin compiler for use in Kotlin subprojects"
    
    dependencies {
        implementation("gradlebuild:basics")
    
        implementation(project(":dependency-modules"))
        implementation(project(":jvm"))
        implementation(project(":kotlin-dsl-shared-runtime"))
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sun Nov 12 16:16:08 GMT 2023
    - 737 bytes
    - Viewed (0)
  2. fastapi/openapi/constants.py

    METHODS_WITH_BODY = {"GET", "HEAD", "POST", "PUT", "DELETE", "PATCH"}
    REF_PREFIX = "#/components/schemas/"
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 153 bytes
    - Viewed (0)
  3. docs/de/docs/reference/fastapi.md

                - openapi
                - websocket
                - include_router
                - get
                - put
                - post
                - delete
                - options
                - head
                - patch
                - trace
                - on_event
                - middleware
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Feb 18 12:19:32 GMT 2024
    - 715 bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/RequestTest.kt

        assertThat(put.method).isEqualTo("PUT")
        assertThat(put.body).isEqualTo(body)
    
        val patch = Request.Builder().url("http://localhost/api").patch(body).build()
        assertThat(patch.method).isEqualTo("PATCH")
        assertThat(patch.body).isEqualTo(body)
      }
    
      @Test
      fun uninitializedURI() {
        val request = Request.Builder().url("http://localhost/api").build()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/configdump.json

                "ISTIO_VERSION": "1.10.0"
              },
              "userAgentBuildVersion": {
                "version": {
                  "majorNumber": 1,
                  "minorNumber": 18,
                  "patch": 3
                },
                "metadata": {
                  "build.type": "RELEASE",
                  "revision.sha": "436f365a8007cd8a13a9f1321e7cce94bcc8883e",
                  "revision.status": "Clean",
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jun 15 05:44:44 GMT 2021
    - 742 bytes
    - Viewed (0)
  6. cni/pkg/util/podutil.go

    	return pod.Namespace == systemNs && pod.GetLabels()["app"] == "ztunnel"
    }
    
    func AnnotateEnrolledPod(client kubernetes.Interface, pod *metav1.ObjectMeta) error {
    	_, err := client.CoreV1().
    		Pods(pod.Namespace).
    		Patch(
    			context.Background(),
    			pod.Name,
    			types.MergePatchType,
    			annotationPatch,
    			metav1.PatchOptions{},
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 18:04:40 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/asm.go

    		return
    	}
    
    	p.append(prog, cond, true)
    }
    
    func (p *Parser) patch() {
    	for _, patch := range p.toPatch {
    		targetProg := p.labels[patch.label]
    		if targetProg == nil {
    			p.errorf("undefined label %s", patch.label)
    			return
    		}
    		p.branch(patch.addr, targetProg)
    	}
    	p.toPatch = p.toPatch[:0]
    }
    
    func (p *Parser) branch(addr *obj.Addr, target *obj.Prog) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/templates/role.yaml

    - apiGroups: [""]
      resources: ["configmaps"]
      verbs: ["delete"]
    
    # For gateway deployment controller
    - apiGroups: ["coordination.k8s.io"]
      resources: ["leases"]
      verbs: ["get", "update", "patch", "create"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu May 04 16:21:31 GMT 2023
    - 1021 bytes
    - Viewed (0)
  9. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

            checkVersionParsing("1.7.3.0", 0, 0, 0, 0, "1.7.3.0");
            checkVersionParsing("1.7.3.0-1", 0, 0, 0, 0, "1.7.3.0-1");
            checkVersionParsing("PATCH-1193602", 0, 0, 0, 0, "PATCH-1193602");
            checkVersionParsing("5.0.0alpha-2006020117", 0, 0, 0, 0, "5.0.0alpha-2006020117");
            checkVersionParsing("1.0.0.-SNAPSHOT", 0, 0, 0, 0, "1.0.0.-SNAPSHOT");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 9.5K bytes
    - Viewed (0)
  10. manifests/charts/base/templates/default.yaml

        # Disable webhook controller in Pilot to stop patching it
        failurePolicy: Fail
        {{- else }}
        # Fail open until the validation webhook is ready. The webhook controller
        # will update this to `Fail` and patch in the `caBundle` when the webhook
        # endpoint is ready.
        failurePolicy: Ignore
        {{- end }}
        sideEffects: None
        admissionReviewVersions: ["v1beta1", "v1"]
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 1.6K bytes
    - Viewed (0)
Back to top