Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 707 for capture1 (0.16 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIntegrationTest.groovy

        }
    
        def configuredTaskRunsCorrectly() {
            run 'test'
            outputContains 'The parameter is `42`'
            true
        }
    
        def 'isolated beforeProject action given as Kotlin lambda can capture managed value'() {
            given:
            withSettingsPluginInBuildLogic()
    
            createDir('build-logic') {
                file('settings.gradle.kts') << ''
                file('build.gradle.kts') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 16:52:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. operator/pkg/validate/common.go

    	// is anchored and has capturing groups for name, tag, and digest
    	// components.
    	ReferenceRegexp = anchored(capture(NameRegexp),
    		optional(literal(":"), capture(TagRegexp)),
    		optional(literal("@"), capture(DigestRegexp)))
    
    	// ObjectNameRegexp is a legal name for a k8s object.
    	ObjectNameRegexp = match(`[a-z0-9.-]{1,254}`)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/regexp/backtrack.go

    func shouldBacktrack(prog *syntax.Prog) bool {
    	return len(prog.Inst) <= maxBacktrackProg
    }
    
    // reset resets the state of the backtracker.
    // end is the end position in the input.
    // ncap is the number of captures.
    func (b *bitState) reset(prog *syntax.Prog, end int, ncap int) {
    	b.end = end
    
    	if cap(b.jobs) == 0 {
    		b.jobs = make([]job, 0, 256)
    	} else {
    		b.jobs = b.jobs[:0]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStepTest.groovy

        def delegateResult = Stub(Result)
    
        def step = new CaptureOutputsAfterExecutionStep<>(buildOperationRunner, buildInvocationScopeId, outputSnapshotter, outputFilter, delegate)
    
        def "no state is captured if cache key calculated state is unavailable"() {
            def delegateDuration = Duration.ofMillis(123)
            delegateResult.duration >> delegateDuration
    
            when:
            def result = step.execute(work, context)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/test/echo/docker/Dockerfile.app_sidecar_base

        update-alternatives --set iptables /usr/sbin/iptables-legacy && \
        update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy; fi
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/closure.go

    	clofn := clo.Func
    
    	if ir.IsTrivialClosure(clo) {
    		return // leave for walkClosure to handle
    	}
    
    	// We are going to insert captured variables before input args.
    	var params []*types.Field
    	var decls []*ir.Name
    	for _, v := range clofn.ClosureVars {
    		if !v.Byval() {
    			// If v of type T is captured by reference,
    			// we introduce function param &v *T
    			// and v remains PAUTOHEAP with &v heapaddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. pkg/test/echo/docker/Dockerfile.app_sidecar_base_centos

        conntrack \
        net-tools \
        ca-certificates \
        && update-ca-trust \
        && yum clean all \
        && rm -rf /var/cache/yum
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 568 bytes
    - Viewed (0)
  8. tools/istio-clean-iptables/pkg/cmd/root.go

    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.RedirectDNS, "ISTIO_META_DNS_CAPTURE")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pkg/test/echo/docker/Dockerfile.app

    COPY ${TARGETARCH:-amd64}/server /usr/local/bin/server
    COPY certs/cert.crt /cert.crt
    COPY certs/cert.key /cert.key
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application
    USER 1338
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 490 bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler.h

      // compilations to have finished. This means that both 'entry' and 'this' will
      // be alive for the duration of the compilation.
      // !!Pay attention when additional variables must be captured by this lambda!!
      // All values are captured by value. Make sure that all pointer values (like
      // entry) do not get freed until the lambda has finished.
      const std::string& function_name = function.name();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top