Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for afterward (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_outlining.cc

      return outlined_func;
    }
    
    // Outlines body of `tf_device.cluster` into a function and create a
    // `tf_device.cluster_func` to invoke that function. `tf_device.cluster` is
    // removed afterwards.`
    void OutlineCluster(tf_device::ClusterOp cluster_op, SymbolTable* symbol_table,
                        OpBuilder* builder) {
      llvm::SetVector<Value> live_ins;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/compress/bzip2/bit_reader.go

    // bit-by-bit, from it. Its Read* methods don't return the usual error
    // because the error handling was verbose. Instead, any error is kept and can
    // be checked afterwards.
    type bitReader struct {
    	r    io.ByteReader
    	n    uint64
    	bits uint
    	err  error
    }
    
    // newBitReader returns a new bitReader reading from r. If r is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForReceiverParameter.kt

            // isEmpty check is possible on a callable symbol directly as annotations cannot be moved from a containing
            // declaration (e.g., a containing property) to the receiver parameter afterwards
            // See 'FirTypeResolveTransformer.moveOrDeleteIrrelevantAnnotations()'
            return receiverParameter.annotations.isEmpty()
        }
    
        override val size: Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/TestNGCoverage.groovy

            } else if (javaVersion < JavaVersion.VERSION_1_7) {
                // 6.8.21 was the last version to compile to JDK 5 bytecode. Afterwards (6.9.4) TestNG compiled to JDK 7 bytecode.
                return versions.findAll { VersionNumber.parse(it) <= VersionNumber.parse('6.8.21')}
            } else {
                return versions
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

            if (!gradle.daemonIdleTimeoutConfigurable && OperatingSystem.current().isWindows()) {
                // Older daemon don't have configurable ttl and they hung for 3 hours afterwards.
                // This is a real problem on windows due to eager file locking and continuous CI failures.
                // On linux it's a lesser problem - long-lived daemons hung and steal resources but don't lock files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    If a dependency constraint influenced the resolution result, any type of <<resolution_rules.adoc#sec:dependency_resolve_rules,dependency resolve rules>> may still be applied afterwards.
    
    .Define dependency constraints
    ====
    include::sample[dir="snippets/dependencyManagement/managingTransitiveDependencies-versionsWithConstraints/kotlin",files="build.gradle.kts[tags=dependency-constraints]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/internal/bytealg/count_ppc64x.s

    	VPOPCNTD V2, V2		// A match is 0xFF or 0. Count the bits into doubleword buckets.
    	VPOPCNTD V0, V0
    	VADDUDM	V0, V4, V4	// Accumulate the popcounts. They are 8x the count.
    	VADDUDM	V2, V5, V5	// The count will be fixed up afterwards.
    	ADD	$32, R3
    	BDNZ	cmploop
    
    	VADDUDM	V4, V5, V5
    	MFVSRD	V5, R18
    	VSLDOI	$8, V5, V5, V5
    	MFVSRD	V5, R21
    	ADD	R21, R18, R18
    	ANDCC	$31, R4, R4
    	// Skip the tail processing if no bytes remaining.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	// The bookmark will report the ResourceVersion (RV) corresponding to the
    	// set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation.
    	// Afterwards, the watch stream will proceed as usual, sending watch events
    	// corresponding to changes (subsequent to the RV) to objects watched.
    	//
    	// When `sendInitialEvents` option is set, we require `resourceVersionMatch`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_parallel_execute_sink_resource_write.cc

      // Go through each region and find AssignVariableOps that can be moved into
      // the parallel_execute region. Result indices by region index are collected,
      // so they can be removed afterwards.
      llvm::SmallVector<llvm::SmallVector<int, 4>, 4> results_to_remove_by_region;
      results_to_remove_by_region.resize(num_regions);
      for (int i = 0; i < num_regions; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 06 04:46:18 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  10. src/go/ast/filter.go

    // names from top-level declarations (including struct field and
    // interface method names, but not from parameter lists) that don't
    // pass through the filter f. If the declaration is empty afterwards,
    // the declaration is removed from the AST. Import declarations are
    // always removed. The [File.Comments] list is not changed.
    //
    // FilterFile reports whether there are any top-level declarations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top