Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for yearly (0.3 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def provider = new DefaultProvider<T>(function)
            property.set(provider)
    
            // TODO - this verifies that a workaround to accidental concurrent access works. Instead, this should really be an error
    
            when:
            property.finalizeValue()
    
            then:
            1 * function.call() >> {
                // Emulate concurrent get() in other thread
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

          // and hence expect the input to be forwarded to the return tensor.
          EXPECT_EQ(orig_ptr, TF_TensorData(t));
        } else {
          // In sync mode, forwarding can't really happen since the client code will
          // have a reference count on the input tensor while the kernel is being
          // executed and thus it cannot be re-used for the return tensor.
          EXPECT_NE(orig_ptr, TF_TensorData(t));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis_test.cc

                  "{#true,&,(iv0/iv:0 & *iv0/cond:0)}<loop>");
      }
    }
    
    TEST(DeadnessAnalysisTest, LoopInvariantPredicateOnBackedge) {
      // Create a merge that "looks like" a loop but isn't really.  It has a value
      // that does not depend on the merge on its backedge.
      Scope root = Scope::NewRootScope().ExitOnError();
      InductionVarInfo iv = CreateInductionVariable(root, "iv0", "frame", 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        module('org:core:1.1')
                    }
                }
            }
        }
    
        // This documents the current behavior. It doesn't really make sense to "belong to"
        // 2 different virtual platforms, as they would resolve exactly the same
        def "can belong to multiple virtual platforms"() {
            repository {
                path 'xml -> core'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/validation/validation_test.go

    	}, {
    		requestVersion:    flowcontrolv1.SchemeGroupVersion,
    		allowZero:         true,
    		concurrencyShares: 1,
    		errExpected:       nil,
    	}, {
    		// this should never really happen in real life, the request
    		// context should always contain the request {group, version}
    		requestVersion:    schema.GroupVersion{},
    		concurrencyShares: 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    // chainNameBaseLengthMax. The hash ensures that (a) the name is still unique if we have
    // to truncate the end, and (b) it's visually distinguishable from other chains that would
    // otherwise have nearly identical names (e.g., different endpoint chains for a given
    // service that differ in only a single digit).
    func hashAndTruncate(name string) string {
    	hash := sha256.Sum256([]byte(name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

        # but then it will be removed once again. So, we first wait a long
        # unfortunate amount of time to ensure that things have quiesced, then we
        # wait until we're sure the route is really gone before re-adding it again.
        Log-Output "Waiting 45 seconds for host network state to quiesce"
        Start-Sleep 45
        WaitFor_GceMetadataServerRouteToBeRemoved
        Log-Output "Re-adding the GCE metadata server route"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// - Pod B shares access to that claim and gets scheduled because
    	//   the claim is assumed to be allocated.
    	// - PreBind for pod B is called first, tries to update reservedFor and
    	//   fails because the claim is not really allocated yet.
    	//
    	// We could avoid the ordering problem by allowing either pod A or pod B
    	// to set the allocation. But that is more complicated and leads to another
    	// problem:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				nc.zoneNoExecuteTainter[k].SwapLimiter(0)
    			}
    			for k := range nc.zoneStates {
    				nc.zoneStates[k] = stateFullDisruption
    			}
    			// All rate limiters are updated, so we can return early here.
    			return
    		}
    		// We're exiting full disruption mode
    		if allWasFullyDisrupted {
    			logger.Info("Controller detected that some Nodes are Ready. Exiting master disruption mode")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    // Issue 18044.
    func TestLdBindNow(t *testing.T) {
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.setenv("LD_BIND_NOW", "1")
    	tg.run("help")
    }
    
    // Issue 18225.
    // This is really a cmd/asm issue but this is a convenient place to test it.
    func TestConcurrentAsm(t *testing.T) {
    	skipIfGccgo(t, "gccgo does not use cmd/asm")
    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top