Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 706 for Captured (0.17 sec)

  1. src/regexp/syntax/simplify_test.go

    	// Posix repetitions
    	{`a{1}`, `a`},
    	{`a{2}`, `aa`},
    	{`a{5}`, `aaaaa`},
    	{`a{0,1}`, `a?`},
    	// The next three are illegible because Simplify inserts (?:)
    	// parens instead of () parens to avoid creating extra
    	// captured subexpressions. The comments show a version with fewer parens.
    	{`(a){0,2}`, `(?:(a)(a)?)?`},                       //       (aa?)?
    	{`(a){0,4}`, `(?:(a)(?:(a)(?:(a)(a)?)?)?)?`},       //   (a(a(aa?)?)?)?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    						reportCaptured(pass, vars, stmt)
    					}
    
    				}
    			}
    		}
    		return true
    	})
    	return nil, nil
    }
    
    // reportCaptured reports a diagnostic stating a loop variable
    // has been captured by a func literal if checkStmt has escaping
    // references to vars. vars is expected to be variables updated by a loop statement,
    // and checkStmt is expected to be a statements from the body of a func literal in the loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    	// This is not part of the Kubernetes API and could change.
    	if !strings.Contains(capturedOutput, `"Timeout or abort while handling" logger="UnhandledError" method="GET" URI="/" auditID=""`) {
    		t.Errorf("unexpected output captured actual = %v", capturedOutput)
    	}
    }
    
    type panicOnNonReuseTransport struct {
    	Transport   http.RoundTripper
    	gotConnSeen bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/software/schemaFromSoftwareTypes.kt

    }
    
    
    /**
     * Support for software types that are configured as conventions in the settings build script.
     *
     * Conventions are not applied when process the settings build script, but are captured and applied when a project build script references a given software type.
     */
    internal
    fun EvaluationSchemaBuilder.softwareTypesConventions(
        schemaTypeToExtend: KClass<*>,
        softwareTypeRegistry: SoftwareTypeRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStepTest.groovy

        abstract AbstractCaptureStateBeforeExecutionStep<PreviousExecutionContext, CachingResult> getStep()
    
        def setup() {
            _ * work.inputFingerprinter >> inputFingerprinter
        }
    
        def "no state is captured when instructed to skip"() {
            when:
            step.execute(work, context)
            then:
            assertNoOperation()
            _ * context.shouldCaptureBeforeExecutionState() >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:34 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. 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)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

        /**
         * Successful compilation result.
         *
         * @property output Output files produced by the compiler. For the JVM target, these are class files and '.kotlin_module'.
         * @property capturedValues Context values captured by a [KtCodeFragment]. Empty for an ordinary [KtFile].
         */
        public class Success(
            public val output: List<KaCompiledFile>,
            public val capturedValues: List<CodeFragmentCapturedValue>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/runtime/trace/trace.go

    //
    // The execution trace captures a wide range of execution events such as
    // goroutine creation/blocking/unblocking, syscall enter/exit/block,
    // GC-related events, changes of heap size, processor start/stop, etc.
    // When CPU profiling is active, the execution tracer makes an effort to
    // include those samples as well.
    // A precise nanosecond-precision timestamp and a stack trace is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.cc

              tf_to_executor, kDebugGroupBridgePhase1ExecutorExport, module_name);
        }
      }
    
      LogicalResult result = tf_to_executor.run(module);
      (void)result;  // Ignore the error since it's captured by the diag_handler.
    
      if (VLOG_IS_ON(1) ||
          DEBUG_DATA_DUMPER()->ShouldDump(module_name.str(), kDebugGroupMain)) {
        ::tensorflow::DumpMlirOpToFile(
            DEBUG_DATA_DUMPER()->GetDumpFilename(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 16 03:41:02 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                        // In theory, it is possible to have a lambda so big, its handling won't fit in a single method, and such a lambda will cause an infinite loop here.
                        // However, the number of captured lambda variables is limited by the max number of method arguments allowed by the JVM.
                        // This limit is 255 arguments as of Java 20. Deserializing that many is not a problem for the current implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top