Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for consuming (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Other notable changes to be aware of that may break your build include:
    
     * <<#rel5.0:pom_compile_runtime_separation,Separation of compile and runtime dependencies when consuming POMs>>
     * A change that means you should <<#rel4.8:configure_internal_tasks,configure existing `wrapper` and `init` tasks>> rather than defining your own.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(synStream.associatedStreamId).isEqualTo(-1)
        assertThat(synStream.headerBlock).isEqualTo(headerEntries("a", "artichaut"))
      }
    
      /** A server RST_STREAM shouldn't prevent the client from consuming the response body.  */
      @Test fun serverResponseBodyRstStream() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    	if err == nil {
    		t.Errorf("Expected an error for consuming a limited resource without quota.")
    	}
    }
    
    // TestAdmitLimitedResourceNoQuotaIgnoresNonMatchingResources shows it ignores non matching resources in config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          ForEachEdgeInPostOrder([&](Cluster* from,
                                     Cluster* to) -> absl::StatusOr<bool> {
            // Shape consuming operations are desirable to cluster with their
            // operands because they return a small set of scalar values after
            // consuming a large amount of data.  For example, given a graph X -> Y
            // -> Size -> Z, where the possible clustering is [{X, Y, Size}, {Z}] or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// 2) the size of the channels are set to 10 for the watcher
    	// 3) if the test is cpu-starved and the internal goroutine is not picking
    	//    up these events from the channel, after consuming the whole time
    	//    budget (defaulted to 100ms) on waiting, we will simply close the watch,
    	//    which will cause the test failure
    	// Using fakeTimeBudget gives us always a budget to wait and have a test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                subjectName == "producer.jar (project :producer)"
            }
    
            checkExecuteTransformWorkOperations(executePlannedStepOps[1], 2)
        }
    
        def "single transform consuming multiple artifacts from task"() {
            createDirs("producer", "consumer")
            settingsFile << """
                include 'producer', 'consumer'
            """
    
            taskTypeWithMultipleOutputFileProperties()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    		})
    	})
    }
    
    func TestLabelRace(t *testing.T) {
    	testenv.MustHaveParallelism(t)
    	// Test the race detector annotations for synchronization
    	// between setting labels and consuming them from the
    	// profile.
    	matches := matchAndAvoidStacks(stackContainsLabeled, []string{"runtime/pprof.cpuHogger;key=value"}, nil)
    	testCPUProfile(t, matches, func(dur time.Duration) {
    		start := time.Now()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    }
    
    LogicalResult CreateUniformQuantizedPerAxisTypeParams(
        quant::UniformQuantizedPerAxisType qtype, Location loc,
        PatternRewriter& rewriter, Value& scale, Value& zero_point) {
      // Consuming op should already know about Quantized channel information,
      // so not passing it during conversion. This design might change if needed.
      ArrayRef<double> scales = qtype.getScales();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    === Using dependency resolution results
    
    Dependency resolution results can be consumed as task inputs in two ways.
    First by consuming the graph of the resolved metadata using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedComponentResult.html[ResolvedComponentResult].
    Second by consuming the flat set of the resolved artifacts using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedArtifactResult.html[ResolvedArtifactResult].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This can lead to confusing circular dependency graphs, as the configuration being resolved is used for two different purposes.
    
    To avoid this problem, plugins should mark all resolvable configurations as `canBeConsumed=false` or use the `resolvable(String)` configuration factory method when creating configurations meant for resolution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top