Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 230 for Overwritten (0.24 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

            }
    
            then:
            overwrittenFile.text == "Overwritten"
            listAllFiles(destinationDir) == ["Overwritten.class", "com/example/A.class", "com/example/A.txt", "com/example/B.class", "com/example/C\$D.class", "com/example/C.class"]
            listAllFiles(annotationGeneratedSourcesDir) == ["com/example/A.java", "com/example/B.java", "com/example/B.txt"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskOverwritingIntegrationTest.groovy

                class MyTask extends DefaultTask {}
                def myTask = tasks.register("myTask", SomeTask) {
                    assert false, "This task is overwritten before been realized"
                }
                myTask.configure {
                    assert false, "This task is overwritten before been realized"
                }
    
                tasks.create(name: "myTask", type: SomeOtherTask, overwrite: true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  3. test/linkx.go

    	fmt.Println(tbdcopy)
    	fmt.Println(arraycopy[0])
    
    	fmt.Println(overwrite)
    	fmt.Println(overwritecopy)
    	fmt.Println(arraycopy[1])
    
    	// Check non-string symbols are not overwritten.
    	// This also make them used.
    	if b || x != 0 {
    		panic("b or x overwritten")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 01 20:13:05 UTC 2019
    - 741 bytes
    - Viewed (0)
  4. cluster/addons/metrics-server/README.md

    Metrics Server supports up to 30 pods per cluster node. In clusters where there are more running pods, Metrics Server may be throttled or fail with OOM error. Starting with Kubernetes 1.9.2, Metrics Server resource requirements may be overwritten manually. [Learn more about Addon Resizer configuration](https://github.com/kubernetes/autoscaler/tree/master/addon-resizer#addon-resizer-configuration)
    
    ### Important notices
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 18 13:04:48 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. tests/test_reponse_set_reponse_code_empty.py

        response: Response,
    ) -> Any:
        response.status_code = 400
        return {"msg": "Status overwritten", "id": id}
    
    
    client = TestClient(app)
    
    
    def test_dependency_set_status_code():
        response = client.delete("/1")
        assert response.status_code == 400 and response.content
        assert response.json() == {"msg": "Status overwritten", "id": 1}
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/injection-with-mismatched-sidecar.yaml

        name: istio-proxy
    ---
    # details-v1-pod-overwritten-sidecar has a custom sidecar version injected and
    # therefore should not match the injector version.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      annotations:
        sidecar.istio.io/proxyImage: docker.io/istio/proxyv2:1.3.0-prerelease
      name: details-v1-pod-overwritten-sidecar
      namespace: enabled-namespace
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 05:31:06 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. cmd/bucket-object-lock.go

    // with governance bypass headers set in the request.
    // Objects under site wide WORM cannot be overwritten.
    // For objects in "Governance" mode, overwrite is allowed if a) object retention date is past OR
    // governance bypass headers are set and user has governance bypass permissions.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/attributes_test.go

    	assert.Error(t, attr.AddAnnotation("foo.admission.k8s.io/key1", "value1-overwrite"),
    		"admission annotations should not be allowd to be overwritten")
    	annotations = attr.getAnnotations(auditinternal.LevelMetadata)
    	assert.Equal(t, annotations["foo.admission.k8s.io/key1"], "value1", "admission annotations should not be overwritten")
    
    	// test invalid plugin names
    	var testCases = map[string]string{
    		"invalid dns subdomain": "INVALID-DNS-Subdomain/policy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 19:44:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. releasenotes/notes/fix-chained-cni-helm.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 43632
      - 45034
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 17:12:09 UTC 2023
    - 257 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/explicit-security-context.yaml

      template:
        metadata:
          labels:
            app: hello
        spec:
          containers:
          - name: hello
            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          # We expect this to get overwritten to 1337
          securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 23:55:05 UTC 2020
    - 379 bytes
    - Viewed (0)
Back to top