Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 334 for involve (0.17 sec)

  1. security/pkg/nodeagent/caclient/credentials.go

    	"istio.io/istio/pkg/security"
    )
    
    // TokenProvider is a grpc PerRPCCredentials that can be used to attach a JWT token to each gRPC call.
    // TokenProvider can be used for XDS, which may involve token exchange through STS.
    type DefaultTokenProvider struct {
    	opts *security.Options
    }
    
    var _ credentials.PerRPCCredentials = &DefaultTokenProvider{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

    // This transformation pass reduces the precision of some tensor types by first
    // checking if all values within that tensor are within the range.
    // This pass is added to aid conversion of models that involve types not
    // available in TF such as INT4, and ideally should be removed in favor of
    // stronger type propagation.
    
    #include <cstdint>
    #include <memory>
    #include <utility>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

        /**
         * Whether this function call is an implicit invoke call on a value that has an `invoke` member function. See
         * https://kotlinlang.org/docs/operator-overloading.html#invoke-operator for more details.
         */
        public val isImplicitInvoke: Boolean by validityAsserted(isImplicitInvoke)
    }
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/net/http/servemux121.go

    // The behavior is controlled by a GODEBUG setting.
    // Most of this code is derived from commit 08e35cc334.
    // Changes are minimal: aside from the different receiver type,
    // they mostly involve renaming functions, usually by unexporting them.
    
    // servemux121.go exists solely to provide a snapshot of
    // the pre-Go 1.22 ServeMux implementation for backwards compatibility.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "pod_scheduling_sli_duration_seconds",
    			Help:      "E2e latency for a pod being scheduled, from the time the pod enters the scheduling queue and might involve multiple scheduling attempts.",
    			// Start with 10ms with the last bucket being [~88m, Inf).
    			Buckets:        metrics.ExponentialBuckets(0.01, 2, 20),
    			StabilityLevel: metrics.BETA,
    		},
    		[]string{"attempts"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. docs/en/docs/async.md

    For "synchronous" (contrary to "asynchronous") they commonly also use the term "sequential", because the computer / program follows all the steps in sequence before switching to a different task, even if those steps involve waiting.
    
    ### Concurrency and Burgers
    
    This idea of **asynchronous** code described above is also sometimes called **"concurrency"**. It is different from **"parallelism"**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

    
    class QuantizedModelTest(test.TestCase, parameterized.TestCase):
      """Base test class for StableHLO quant tests."""
    
      def setUp(self) -> None:
        super().setUp()
    
        # Many test cases for quantization involve creating and saving the input
        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. docs/en/docs/help-fastapi.md

    # Help FastAPI - Get Help
    
    Do you like **FastAPI**?
    
    Would you like to help FastAPI, other users, and the author?
    
    Or would you like to get help with **FastAPI**?
    
    There are very simple ways to help (several involve just one or two clicks).
    
    And there are several ways to get help too.
    
    ## Subscribe to the newsletter
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_controller.go

    				// IMPORTANT:
    				// We do not use this function to queue up a full quota recalculation.  To do so, would require
    				// us to enqueue all quota.Status updates, and since quota.Status updates involve additional queries
    				// that cannot be backed by a cache and result in a full query of a namespace's content, we do not
    				// want to pay the price on spurious status updates.  As a result, we have a separate routine that is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.go

    //  - We say that a Named type is "resolved" if its RHS information has been
    //    loaded or fully type-checked. For Named types constructed from export
    //    data, this may involve invoking a loader function to extract information
    //    from export data. For instantiated named types this involves reading
    //    information from their origin.
    //  - We say that a Named type is "expanded" if it is an instantiated type and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top