Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,391 for central (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // DISABLE-ALL-DOT-GENERAL-SAME: _entry_function = @composite_dot_general_fn_1
    // DISABLE-ALL-DOT-GENERAL-SAME: _original_entry_function
    // DISABLE-ALL-DOT-GENERAL-SAME: _quantization_method = "no_quantization { }"
    // DISABLE-ALL-DOT-GENERAL-SAME: _tfl_quant_trait = "fully_quantizable"
    
    // DISABLE-ALL-DOT-GENERAL: return %[[XLA_CALL_MODULE:.+]] : tensor<1x1x64xf32>
    // DISABLE-ALL-DOT-GENERAL: }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

        val headers =
          Headers.headersOf(
            "cache-control",
            "no-store",
            "Cache-Control",
            "no-cache",
          )
        val headerMap = headers.toMultimap()
        assertThat(headerMap["cache-control"]!!.size).isEqualTo(2)
        assertThat(headerMap["Cache-Control"]!!.size).isEqualTo(2)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    // limitations under the License.
    
    [[resolution-strategy-safety-nets]]
    = Preventing accidental dependency upgrades
    
    In some situations, you might want to be in total control of the dependency graph.
    In particular, you may want to make sure that:
    
    - the versions declared in a build script actually correspond to the ones being resolved
    - or make sure that dependency resolution is reproducible over time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. istioctl/pkg/version/version.go

      # (This is the usual way to get the control plane version with an out-of-cluster control plane.)
      istioctl x version --xds-address istio.cloudprovider.example.com:15012
    
      # Retrieve version information via Kubernetes config, using token security
      # (This is the usual way to get the control plane version with an in-cluster control plane.)
      istioctl x version
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    // limitations under the License.
    
    package grpcxds
    
    import (
    	"encoding/json"
    	"fmt"
    	"os"
    	"path"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/structpb"
    
    	"istio.io/istio/pkg/file"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane.go

    var labelsToAdd = []string{
    	constants.LabelNodeRoleControlPlane,
    	constants.LabelExcludeFromExternalLB,
    }
    
    // MarkControlPlane taints the control-plane and sets the control-plane label
    func MarkControlPlane(client clientset.Interface, controlPlaneName string, taints []v1.Taint) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 13 15:45:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/waitcontrolplane.go

    )
    
    // NewWaitControlPlanePhase is a hidden phase that runs after the control-plane and etcd phases
    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name: "wait-control-plane",
    		// TODO: remove this EXPERIMENTAL prefix once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    		Short: "EXPERIMENTAL: Wait for the control plane to start",
    		Run:   runWaitControlPlanePhase,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export_flags.h

    #include <string>
    
    // These flags are used to control the emission or not of different kinds of ops
    // during the flatbuffer translation.
    extern bool emit_builtin_tflite_ops;
    extern bool emit_select_tf_ops;
    extern bool emit_custom_ops;
    // The flag to control whether to lower tensorlist ops into TF ops.
    extern bool lower_tensor_list_ops;
    // The flag to control whether debug info gets stripped on export.
    extern bool strip_debug_info;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 20 17:49:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/fuse_comparisons.go

    //
    //	p
    //	|\
    //	| b
    //	|/ \
    //	s0 s1
    //
    // In our example, p has control '1 <= x', b has control 'x < 5',
    // and s0 and s1 are the if and else results of the comparison.
    //
    // This will be optimized into:
    //
    //	p
    //	 \
    //	  b
    //	 / \
    //	s0 s1
    //
    // where b has the combined control value 'unsigned(x-1) < 4'.
    // Later passes will then fuse p and b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_zos.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Socket control messages
    
    package unix
    
    import "unsafe"
    
    // UnixCredentials encodes credentials into a socket control message
    // for sending to another process. This can be used for
    // authentication.
    func UnixCredentials(ucred *Ucred) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top