Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for Truly (0.18 sec)

  1. src/internal/abi/escape.go

    // NoEscape hides the pointer p from escape analysis, preventing it
    // from escaping to the heap. It compiles down to nothing.
    //
    // WARNING: This is very subtle to use correctly. The caller must
    // ensure that it's truly safe for p to not escape to the heap by
    // maintaining runtime pointer invariants (for example, that globals
    // and the heap may not generally point into a stack).
    //
    //go:nosplit
    //go:nocheckptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 884 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/component/SoftwareComponentContainerInternal.java

    public interface SoftwareComponentContainerInternal extends SoftwareComponentContainer {
        /**
         * Get the main component of a project.
         * <p>
         * This method will remain internal until we pinpoint what a "main" component truly is,
         * and if it is conceptually necessary.
         */
        Property<SoftwareComponent> getMainComponent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 15:02:08 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

    #include "tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.pb.h"
    
    namespace stablehlo::quantization {
    namespace {
    
    using ::testing::Eq;
    using ::testing::SizeIs;
    using ::testing::StrEq;
    using ::testing::Truly;
    
    TEST(PopulateDefaultsTest, PopulateDefaultsForEmptyConfig) {
      QuantizationConfig config{};
    
      const QuantizationConfig new_config = PopulateDefaults(config);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	// The latest Job may have a different UID, but it's fine because the checks will be run again.
    	fresh, err := tc.client.BatchV1().Jobs(namespace).Get(ctx, name, metav1.GetOptions{})
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    	// Use the latest Job TTL to see if the TTL truly expires.
    	expiredAt, err := tc.processTTL(logger, fresh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/negotiate.go

    }
    
    func (n *clientNegotiator) Encoder(contentType string, params map[string]string) (Encoder, error) {
    	// TODO: `pretty=1` is handled in NegotiateOutputMediaType, consider moving it to this method
    	// if client negotiators truly need to use it
    	mediaTypes := n.serializer.SupportedMediaTypes()
    	info, ok := SerializerInfoForMediaType(mediaTypes, contentType)
    	if !ok {
    		if len(contentType) != 0 || len(mediaTypes) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 29 19:55:06 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  6. plugin/pkg/admission/namespace/exists/admission.go

    	if err == nil {
    		return nil
    	}
    	if !errors.IsNotFound(err) {
    		return errors.NewInternalError(err)
    	}
    
    	// in case of latency in our caches, make a call direct to storage to verify that it truly exists or not
    	_, err = e.client.CoreV1().Namespaces().Get(context.TODO(), a.GetNamespace(), metav1.GetOptions{})
    	if err != nil {
    		if errors.IsNotFound(err) {
    			return err
    		}
    		return errors.NewInternalError(err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  7. manifests/charts/UPDATING-CHARTS.md

    For bespoke use cases, [Helm Chart Customization](https://istio.io/latest/docs/setup/additional-setup/customize-installation-helm/#advanced-helm-chart-customization) can be used
    to allow arbitrary customizations.
    
    If the change truly is generally purpose, it is generally preferred to have broader APIs. For example, instead of providing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
     * sourceSets {
     *   main {
     *     //if you truly want to override the defaults:
     *     output.resourcesDir = file('out/bin')
     *     // Compiled Java classes should use this directory
     *     java.destinationDirectory.set(file('out/bin'))
     *   }
     * }
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    	if err != nil && !apierrors.IsNotFound(err) {
    		return nil, err
    	}
    	if apierrors.IsNotFound(err) {
    		// in case of latency in our caches, make a call direct to storage to verify that it truly exists or not
    		namespace, err = m.Client.CoreV1().Namespaces().Get(context.TODO(), namespaceName, metav1.GetOptions{})
    		if err != nil {
    			return nil, err
    		}
    	}
    	return namespace.Labels, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. docs/contribute/code_of_conduct.md

    of releasing and managing open source software. We’ve seen incredible support and enthusiasm from
    thousands of people who have already contributed to our projects — and we want to ensure our community
    continues to be truly open for everyone.
    
    This code of conduct outlines our expectations for participants, as well as steps to reporting
    unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top