Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of about 10,000 for copy2 (4.02 sec)

  1. Dockerfile.release.fips

        MINIO_CONFIG_ENV_FILE=config.env
    
    COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
    COPY --from=build /go/bin/minio /usr/bin/minio
    COPY --from=build /go/bin/cur* /usr/bin/
    
    COPY CREDITS /licenses/CREDITS
    COPY LICENSE /licenses/LICENSE
    COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
    
    EXPOSE 9000
    VOLUME ["/data"]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. test/fixedbugs/issue7272.go

    package p
    
    func F() {
    	var a []int
    	var c chan int
    	var m map[int]int
    
    	close(c)
    	copy(a, a)
    	delete(m, 0)
    	panic(0)
    	print("foo")
    	println("bar")
    	recover()
    
    	(close(c))
    	(copy(a, a))
    	(delete(m, 0))
    	(panic(0))
    	(print("foo"))
    	(println("bar"))
    	(recover())
    
    	go close(c)
    	go copy(a, a)
    	go delete(m, 0)
    	go panic(0)
    	go print("foo")
    	go println("bar")
    	go recover()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 763 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyConstraintTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/17179")
        def "can copy project dependency constraint"() {
            setup:
            DefaultProjectDependencyConstraint constraint = createProjectDependencyConstraint()
            constraint.force = true
            constraint.reason = "reason"
    
            when:
            def constraintCopy = constraint.copy()
    
            then:
            constraintCopy.group == constraint.group
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ClosureBackedAction.java

                } else {
                    Closure copy = (Closure) closure.clone();
                    copy.setResolveStrategy(resolveStrategy);
                    copy.setDelegate(delegate);
                    if (copy.getMaximumNumberOfParameters() == 0) {
                        copy.call();
                    } else {
                        copy.call(delegate);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/performance/resolveAtConfigurationTime/kotlin/build.gradle.kts

    }
    
    dependencies {
        implementation("org.apache.commons:commons-lang3:3.11")
    }
    
    // tag::copy[]
    tasks.register<Copy>("copyFiles") {
        println(">> Compilation deps: ${configurations.compileClasspath.get().files.map { it.name }}")
        into(layout.buildDirectory.dir("output"))
        from(configurations.compileClasspath)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 406 bytes
    - Viewed (0)
  6. internal/crypto/header.go

    	h.Del(xhttp.AmzMetaUnencryptedContentMD5)
    }
    
    // SSECopy represents AWS SSE-C for copy requests. It provides
    // functionality to handle SSE-C copy requests.
    var SSECopy = ssecCopy{}
    
    type ssecCopy struct{}
    
    // IsRequested returns true if the HTTP headers contains
    // at least one SSE-C copy header. Regular SSE-C headers
    // are ignored.
    func (ssecCopy) IsRequested(h http.Header) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion.go

    	return nil
    }
    
    // +k8s:conversion-fn=copy-only
    func Convert_v1_ListMeta_To_v1_ListMeta(in, out *ListMeta, s conversion.Scope) error {
    	*out = *in
    	return nil
    }
    
    // +k8s:conversion-fn=copy-only
    func Convert_v1_DeleteOptions_To_v1_DeleteOptions(in, out *DeleteOptions, s conversion.Scope) error {
    	*out = *in
    	return nil
    }
    
    // +k8s:conversion-fn=copy-only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 26 03:49:57 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  8. samples/jwt-server/src/Dockerfile

    FROM golang:1.19 as builder
    WORKDIR /go/src/istio.io/jwt-server/
    COPY . .
    RUN CGO_ENABLED=0 GOOS=linux go build -o jwt-server main.go
    
    FROM gcr.io/distroless/static-debian11@sha256:21d3f84a4f37c36199fd07ad5544dcafecc17776e3f3628baf9a57c8c0181b3f as distroless
    
    WORKDIR /bin/
    # copy the jwt-server binary to a separate container based on BASE_DISTRIBUTION
    COPY --from=builder /go/src/istio.io/jwt-server .
    ENTRYPOINT [ "/bin/jwt-server" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. pkg/registry/flowcontrol/ensurer/flowschema.go

    }
    
    func flowSchemaReplaceSpec(into, from *flowcontrolv1.FlowSchema) *flowcontrolv1.FlowSchema {
    	copy := into.DeepCopy()
    	copy.Spec = *from.Spec.DeepCopy()
    	return copy
    }
    
    func flowSchemaSpecEqual(expected, actual *flowcontrolv1.FlowSchema) bool {
    	copiedExpectedSpec := expected.Spec.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1/conversion.go

    	if err := autoConvert_apps_Deployment_To_v1_Deployment(in, out, s); err != nil {
    		return err
    	}
    
    	out.Annotations = deepCopyStringMap(out.Annotations) // deep copy because we modify it below
    
    	// Copy deprecated rollbackTo field to annotation for roundtrip
    	// TODO: remove this conversion after we delete extensions/v1beta1 and apps/v1beta1 Deployment
    	if in.Spec.RollbackTo != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top