Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for Xadd (0.1 sec)

  1. pkg/kube/inject/testdata/inputs/hello.yaml.10.template.gen.yaml

              privileged: {{ .Values.global.proxy.privileged }}
              capabilities:
            {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
                add:
                - NET_ADMIN
                - NET_RAW
            {{- end }}
                drop:
                - ALL
            {{- if not (or .Values.pilot.cni.enabled .Values.istio_cni.enabled) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	// For hardrives it is possible to set this to a lower value to avoid any
    	// spike in latency. But currently we are simply keeping it optimal for SSDs.
    
    	// bigFileThreshold is the point where we add readahead to put operations.
    	bigFileThreshold = 128 * humanize.MiByte
    
    	// XL metadata file carries per object metadata.
    	xlStorageFormatFile = "xl.meta"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/upgrade/1.8.6-install.yaml.tar

    .Values.global.proxy.resources | indent 4 }} {{- end }} {{- end }} securityContext: allowPrivilegeEscala: {{ .Values.global.proxy.privileged }} privileged: {{ .Values.global.proxy.privileged }} capabilities: {{- if not .Values.istio_cni.enabled }} add: - NET_ADMIN - NET_RAW {{- end }} drop: - ALL {{- if not .Values.istio_cni.enabled }} readOnlyRootFilesyst: false runAsGroup: 0 runAsNonRoot: false runAsUser: 0 {{- else }} readOnlyRootFilesyst: true runAsGroup: 1337 runAsUser: 1337 runAsNonRoot: true...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 70K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	// so limit that check to just Go files.
    	files = filter(files, func(p string) bool {
    		return !strings.HasPrefix(p, ".") && (!strings.HasPrefix(p, "_") || !strings.HasSuffix(p, ".go"))
    	})
    
    	// Add generated files for this package.
    	for _, gt := range gentab {
    		if gt.pkg == pkg {
    			files = append(files, gt.file)
    		}
    	}
    	files = uniq(files)
    
    	// Convert to absolute paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    	{Value: &Port{Type: "<unix>"}, ExpectXML: `<port type="&lt;unix&gt;"></port>`},
    	{Value: &Port{Number: "443", Comment: "https"}, ExpectXML: `<port><!--https-->443</port>`},
    	{Value: &Port{Number: "443", Comment: "add space-"}, ExpectXML: `<port><!--add space- -->443</port>`, MarshalOnly: true},
    	{Value: &Domain{Name: []byte("google.com&friends")}, ExpectXML: `<domain>google.com&amp;friends</domain>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  6. cmd/iam.go

    	}
    	loadDuration := time.Since(loadStartTime)
    
    	atomic.StoreUint64(&sys.LastRefreshDurationMilliseconds, uint64(loadDuration.Milliseconds()))
    	atomic.StoreUint64(&sys.LastRefreshTimeUnixNano, uint64(loadStartTime.Add(loadDuration).UnixNano()))
    	atomic.AddUint64(&sys.TotalRefreshSuccesses, 1)
    
    	if !globalSiteReplicatorCred.IsValid() {
    		sa, _, err := sys.getServiceAccount(ctx, siteReplicatorSvcAcc)
    		if err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    		},
    	}
    	for _, testCase := range testCases {
    		t.Run(testCase.description, func(t *testing.T) {
    			iniContainerMap := containermap.NewContainerMap()
    			iniContainerMap.Add("fakePod1", "fakeContainer1", "fakeID1")
    			iniContainerMap.Add("fakePod1", "fakeContainer2", "fakeID2")
    			mgr := &manager{
    				policy:       returnPolicyByName(testCase),
    				state:        state.NewMemoryState(),
    				containerMap: iniContainerMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    */
    
    type opPredicates map[token.Token]func(Type) bool
    
    var unaryOpPredicates opPredicates
    
    func init() {
    	// Setting unaryOpPredicates in init avoids declaration cycles.
    	unaryOpPredicates = opPredicates{
    		token.ADD: allNumeric,
    		token.SUB: allNumeric,
    		token.XOR: allInteger,
    		token.NOT: allBoolean,
    	}
    }
    
    func (check *Checker) op(m opPredicates, x *operand, op token.Token) bool {
    	if pred := m[op]; pred != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. configure.py

          )
      )
      return var
    
    
    def choose_compiler_Win(environ_cp):
      question = 'Do you want to use Clang to build TensorFlow?'
      yes_reply = 'Add "--config=win_clang" to compile TensorFlow with CLANG.'
      no_reply = 'MSVC will be used to compile TensorFlow.'
      var = int(
          get_var(
              environ_cp, 'TF_NEED_CLANG', None, True, question, yes_reply, no_reply
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      // CHECK: ResourceGatherNd
      // CHECK: tf_device.cluster
      // CHECK: Add
      // CHECK: ResourceGatherNd
      %0 = "tf.Const"() {value = dense<32> : tensor<i32>} : () -> tensor<i32>
      %1 = "tf.ResourceGatherNd"(%arg0, %0) {
        Tindices = i32
      } : (tensor<*x!tf_type.resource<tensor<80xf32>>>, tensor<i32>) -> tensor<1x80xf32>
      %2 = "tf.Add"(%1, %1) {
        _xla_compile_device_type = "TPU", _replication_info = "cluster",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top