Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 707 for capture2 (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            }
    
            // then:
            val runnableBuildOperation = ArgumentCaptor.forClass(RunnableBuildOperation::class.java)
            verify(buildOperationRunner).run(runnableBuildOperation.capture())
    
            // and:
            assertThat(
                runnableBuildOperation.value.description().build().progressDisplayName,
                equalTo("Storing configuration cache state")
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/config/constants/constants.go

    	DataplaneModeLabel = "istio.io/dataplane-mode"
    	// Set by users to indicate that the (namespace|pod) should be captured for ambient
    	DataplaneModeAmbient = "ambient"
    	// Set by users to indicate that the (namespace|pod) should NOT be captured for ambient
    	DataplaneModeNone    = "none"
    	DataplaneModeInherit = "inherit" // TODO do we need this atm
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. architecture/standards/README.md

    ## Architecture Standards
    
    **Experimental!**
    
    We'd like to capture our architectural decisions about the build tool as [Architectural Decision Records (ADRs)](https://adr.github.io/).
    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 06:30:44 UTC 2024
    - 546 bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/TypeResolver.java

       * {@code ArrayList<?>::set}.
       *
       * <p>Instead, {@code <?>} will be resolved to a capture in the form of a type variable {@code
       * <capture-of-? extends Object>}, effectively preventing {@code set} from accepting any type.
       */
      static TypeResolver invariantly(Type contextType) {
        Type invariantContext = WildcardCapturer.INSTANCE.capture(contextType);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        The `tf_executor.island` region allows implicit capture. If any value
        captured by a `tf_executor.island` is dead, the whole region does not
        execute and every produced value is marked as dead as well.
        An arbitrary number of `tf_executor.control` operands are accepted by a
        `tf_executor.island` operation.
        If any operand or implicitly captured value are dead, the region is not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project2/build.gradle

    buildscript {
        println('quietProject2ScriptClassPathOut')
        logging.captureStandardOutput LogLevel.INFO
        logger.info('infoProject2ScriptClassPathOut')
    }
    
    evaluationDependsOn(':project1')
    // stdout capture config injected
    println('infoProject2Out')
    
    gradle.taskGraph.whenReady {
        println 'quietProject2CallbackOut'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 328 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/audit/context.go

    	"k8s.io/klog/v2"
    )
    
    // The key type is unexported to prevent collisions
    type key int
    
    // auditKey is the context key for storing the audit context that is being
    // captured and the evaluated policy that applies to the given request.
    const auditKey key = iota
    
    // AuditContext holds the information for constructing the audit events for the current request.
    type AuditContext struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/compile/CodeFragmentCapturedValue.kt

        ) : CodeFragmentCapturedValue(name.asString(), isMutated, isCrossingInlineBounds) {
            override val displayText: String
                get() = "field"
        }
    
        /** Represents a captured outer class. */
        public class ContainingClass(
            private val classId: ClassId,
            isCrossingInlineBounds: Boolean,
        ) : CodeFragmentCapturedValue("<this>", isMutated = false, isCrossingInlineBounds) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. releasenotes/notes/redirect-dns-iptables.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
      - 29908
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 176 bytes
    - Viewed (0)
  10. test/fixedbugs/issue32175.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // This used to print 0, because x was incorrectly captured by value.
    
    func f() (x int) {
    	defer func() func() {
    		return func() {
    			println(x)
    		}
    	}()()
    	return 42
    }
    
    func main() {
    	f()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:43:09 UTC 2019
    - 373 bytes
    - Viewed (0)
Back to top