Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,347 for need (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

            apply(metadataProvider)
    
            then:
            !componentSelection.rejected
            // rules are called in order
            closureCalled == 0..7
        }
    
        // Short circuiting tests will need to be removed once the extra param feature is removed
        def "short-circuit prefers non-metadata rules over rules requiring metadata"() {
            def metadataProvider = Mock(MetadataProvider)
            def closuresCalled = []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  2. pkg/controller/resourceclaim/controller.go

    			if apierrors.IsNotFound(err) {
    				return true, "need to create PodSchedulingContext for scheduled pod"
    			}
    			if err != nil {
    				// Shouldn't happen.
    				return true, fmt.Sprintf("internal error while checking for PodSchedulingContext: %v", err)
    			}
    			if scheduling.Spec.SelectedNode != pod.Spec.NodeName {
    				// Need to update PodSchedulingContext.
    				return true, "need to updated PodSchedulingContext for scheduled pod"
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    	if err != nil {
    		return err
    	}
    	// Ignore inactive pods.
    	filteredPods := controller.FilterActivePods(logger, allPods)
    
    	// NOTE: filteredPods are pointing to objects from cache - if you need to
    	// modify them, you need to copy it first.
    	filteredPods, err = rsc.claimPods(ctx, rs, selector, filteredPods)
    	if err != nil {
    		return err
    	}
    
    	var manageReplicasErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. android/pom.xml

          </activation>
          <properties>
            <!--
                Some tests need reflective access to the internals of these packages. It is only the
                tests themselves and not the code being tested that needs that access, though there's no
                obvious way to ensure that.
    
                We could consider arranging things so that only the tests we know need this would get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pom.xml

          </activation>
          <properties>
            <!--
                Some tests need reflective access to the internals of these packages. It is only the
                tests themselves and not the code being tested that needs that access, though there's no
                obvious way to ensure that.
    
                We could consider arranging things so that only the tests we know need this would get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

            assert toolChain != null, "You need to specify Swift tool chain requirement with 'requireSwiftToolChain()'"
            assumeTrue(toolChain.version.major == swiftVersion.version)
        }
    
        // TODO: Use @RequiresInstalledToolChain instead once Xcode test are sorted out
        void assumeSwiftCompilerSupportsLanguageVersion(SwiftVersion swiftVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    // (3) For passthrough results, if result #r is the same as arg #a of the loop
    //     body, after one iteration, result #r = arg #a, so we need to also
    //     propagate arg #a to result #r. After another iteration, arg #a of the
    //     loop body will be result #a of the previous iteration. So then we need
    //     propagate from result #a to result #r. Generalizing, the resource ID
    //     propagation (for results which are passthrough) looks like:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. src/cmd/dist/buildtool.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Build toolchain using Go bootstrap version.
    //
    // The general strategy is to copy the source files we need into
    // a new GOPATH workspace, adjust import paths appropriately,
    // invoke the Go bootstrap toolchains go command to build those sources,
    // and then copy the binaries back.
    
    package main
    
    import (
    	"fmt"
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    [[using_a_build_service_from_a_task]]
    == Using a build service in a task
    
    To use a build service from a task, you need to:
    
    1. Add a property to the task of type `Property<MyServiceType>`.
    2. Annotate the property with `@Internal` or `@ServiceReference` (since 8.0).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. architecture/networking/pilot.md

    `Cluster` is pushed, so this optimization is intentionally turned off in this specific case.
    
    Finally, we determine which subset of the type we need to generate. XDS has two modes - "State of the World (SotW)" and "Delta". In SotW, we generally need to generate all resources of the type, even if only one changed. Note that we actually need to *generate* all of them, typically, as we do not store previously generated resources (mostly because they are generated per-client). This also means...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top