Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 364 for isDependent (0.19 sec)

  1. src/text/tabwriter/tabwriter.go

    	// Handle empty columns as if they were not present in
    	// the input in the first place.
    	DiscardEmptyColumns
    
    	// Always use tabs for indentation columns (i.e., padding of
    	// leading empty cells on the left) independent of padchar.
    	TabIndent
    
    	// Print a vertical bar ('|') between columns (after formatting).
    	// Discarded columns appear as zero-width columns ("||").
    	Debug
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      // Collect external values used.
      llvm::SetVector<Value> extern_values;
    
      // The basic block arguments correspond to values that are loop carried, while
      // all those post are loop independent. Initialize extern_values with while_op
      // not loop carried operands.
      auto num_loop_carried = while_op.getCond().getNumArguments();
      auto not_carried_operands =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            and: 'conventions get properly applied'
            // check the conventions in the resolution results, they should be there, and it is independent of the DOM overlay
            def projectEvaluated = project.stepResults.values()[0] as EvaluationResult.Evaluated<AnalysisStepResult>
            projectEvaluated.stepResult.assignmentTrace.resolvedAssignments.entrySet().any {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/common/extensions.kt

            // if multiple test tasks run in parallel. We also pass it to the Gradle build as a maximum (maxParallelForks)
            // for each test task, such that we are independent of whatever default value is defined in the build itself.
            "-Dorg.gradle.workers.max=$maxParallelForks",
            "-PmaxParallelForks=$maxParallelForks",
            pluginPortalUrlOverride,
            "-s",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  5. src/runtime/metrics.go

    // they're all relatively cheap to acquire and generally independent
    // of one another and other runtime memory stats. The fact that they
    // may be acquired at different times, especially with respect to
    // heapStatsAggregate, means there could be some skew, but because of
    // these stats are independent, there's no real consistency issue here.
    type sysStatsAggregate struct {
    	stacksSys      uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/leaderelection_test.go

    	close(stop2)
    	close(stop)
    	t.Log("drop")
    	// After leader is lost, we can take over
    	_, stop3 := createPerRevisionElection(t, "pod2", "foo", watcher, true, client)
    	// Other revisions are independent
    	_, stop4 := createPerRevisionElection(t, "pod4", "not-foo", watcher, true, client)
    	close(stop3)
    	close(stop4)
    }
    
    func TestPrioritizedLeaderElection(t *testing.T) {
    	client := fake.NewSimpleClientset()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                node = node.next;
            }
            return last;
        }
    
        /**
         * Caches calls to the transform chain selection algorithm. The cached results are stored in
         * a variant-independent manner, such that only the attributes of the input variants are cached.
         * This way, if multiple calls are made with different variants but those variants have the same
         * attributes, the cached results may be used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/sync/pool.go

    // free lists.
    //
    // An appropriate use of a Pool is to manage a group of temporary items
    // silently shared among and potentially reused by concurrent independent
    // clients of a package. Pool provides a way to amortize allocation overhead
    // across many clients.
    //
    // An example of good use of a Pool is in the fmt package, which maintains a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (1)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    [[sec:custom_java_source_sets]]
    === Compiling independent sources separately
    
    Most projects have at least two independent sets of sources: the production code and the test code.
    Gradle already makes this scenario part of its Java convention, but what if you have other sets of sources?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/Kerb5Context.java

             * The kerberos session key is not accessible via the JGSS API. IBM and
             * Oracle both implement a similar API to make an ExtendedGSSContext
             * available. That API is accessed via reflection to make this independent
             * of the runtime JRE
             */
            if ( EXT_GSS_CONTEXT_CLASS == null || INQUIRE_SEC_CONTEXT == null || INQUIRE_TYPE_SESSION_KEY == null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:22:42 UTC 2018
    - 13.9K bytes
    - Viewed (0)
Back to top