Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for satisfies (0.36 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    //
    // A parameterized test fixture must be derived from testing::Test and from
    // testing::WithParamInterface<T>, where T is the type of the parameter
    // values. Inheriting from TestWithParam<T> satisfies that requirement because
    // TestWithParam<T> inherits from both Test and WithParamInterface. In more
    // complicated hierarchies, however, it is occasionally useful to inherit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// the alternatives below, assuming that the maximum satisfies *all*
    	// conditions we check (e.g. if we need to scavenge X to satisfy the
    	// memory limit and Y to satisfy heap-growth scavenging, and Y > X, then
    	// it's fine to pick Y, because the memory limit is still satisfied).
    	//
    	// It's fine to do this after allocating because we expect any scavenged
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/pv_controller.go

    		return ctrl.syncUnboundClaim(ctx, claim)
    	} else {
    		return ctrl.syncBoundClaim(ctx, claim)
    	}
    }
    
    // checkVolumeSatisfyClaim checks if the volume requested by the claim satisfies the requirements of the claim
    func checkVolumeSatisfyClaim(volume *v1.PersistentVolume, claim *v1.PersistentVolumeClaim) error {
    	requestedQty := claim.Spec.Resources.Requests[v1.ResourceName(v1.ResourceStorage)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  4. tensorflow/BUILD

        ],
    )
    
    # Config setting that is satisfied when TensorFlow is being built with CUDA
    # support through e.g. `--config=cuda` (or `--config=cuda_clang` in OSS).
    alias(
        name = "is_cuda_enabled",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_enabled",
            "@local_config_cuda//cuda:using_clang",
        ),
    )
    
    # Config setting that is satisfied when CUDA device code should be compiled
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	Compiler    string // compiler to assume when computing target paths
    
    	// The build, tool, and release tags specify build constraints
    	// that should be considered satisfied when processing go:build lines.
    	// Clients creating a new context may customize BuildTags, which
    	// defaults to empty, but it is usually an error to customize ToolTags or ReleaseTags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    // "Absent" from the profile, and end up "Satisfied" by the time the profile is
    // complete. While a goroutine's stack is being captured, its
    // goroutineProfileState will be "InProgress" and it will not be able to run
    // until the capture completes and the state moves to "Satisfied".
    //
    // Some goroutines (the finalizer goroutine, which at various times can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// We only encode those to deliver DELETE watch events, so if
    		// event.Object is not nil it can be used only for watchers for which
    		// selector was satisfied for its previous version and is no longer
    		// satisfied for the current version.
    		// This is rare enough that it doesn't justify making deep-copy of the
    		// object (done by newCachingObject) every time.
    	case watch.Deleted:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    }
    
    type FakeRSExpectations struct {
    	*controller.ControllerExpectations
    	satisfied    bool
    	expSatisfied func()
    }
    
    func (fe FakeRSExpectations) SatisfiedExpectations(logger klog.Logger, controllerKey string) bool {
    	fe.expSatisfied()
    	return fe.satisfied
    }
    
    // TestRSSyncExpectations tests that a pod cannot sneak in between counting active pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition
    // is not satisfied.
    //  Synopsys:
    //    GTEST_CHECK_(boolean_condition);
    //     or
    //    GTEST_CHECK_(boolean_condition) << "Additional message";
    //
    //    This checks the condition and if the condition is not satisfied
    //    it prints message about the condition violation, including the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      }
    
      // Stores result of the assertion predicate.
      bool success_;
      // Stores the message describing the condition in case the expectation
      // construct is not satisfied with the predicate's outcome.
      // Referenced via a pointer to avoid taking too much stack frame space
      // with test assertions.
      internal::scoped_ptr< ::std::string> message_;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top