Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 84 for attacher (0.18 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    // empty, then the imported mlir function will only return nodes in
    // ordered_output_arrays in the same order. If signature is not null, then the
    // inputs/outputs in signature will be attached to the FuncOp.
    StatusOr<FuncOp> ConvertSubgraph(
        const tflite::SubGraphT& subgraph, llvm::StringRef name,
        const std::vector<std::unique_ptr<tflite::OperatorCodeT>>& op_codes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                          x-kubernetes-map-type: atomic
                        type: array
                      namespaces:
                        description: Namespaces list of namespace(s) on which ip pool
                          can be attached.
                        items:
                          type: string
                        type: array
                      priority:
                        description: Priority priority given for ip pool while ip allocation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    		if err != nil {
    			return fmt.Errorf("failed to initialize kubelet event client: %w", err)
    		}
    
    		// make a separate client for heartbeat with throttling disabled and a timeout attached
    		heartbeatClientConfig := *clientConfig
    		heartbeatClientConfig.Timeout = s.KubeletConfiguration.NodeStatusUpdateFrequency.Duration
    		// The timeout is the minimum of the lease duration and status update frequency
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal.go

    		utilruntime.HandleError(fmt.Errorf("couldn't get key for object %+v: %v", obj, err))
    		return
    	}
    
    	// TODO: could we leak if we fail to get the key?
    	a.queue.Forget(key)
    
    	// Remove HPA and attached selector.
    	a.hpaSelectorsMux.Lock()
    	defer a.hpaSelectorsMux.Unlock()
    	a.hpaSelectors.DeleteSelector(selectors.Parse(key))
    }
    
    func (a *HorizontalController) worker(ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    dialect to the SCF dialect.
    ### `-prepare-tpu-computation-for-tf-export`
    
    _Prepare TPU computation to be legal for export to TensorFlow_
    
    Prepares TPU computation module attached to _TPUCompileMlir op for
    TensorFlow graph export by making transformation such as replacing or
    removing MLIR or XLA specific attributes that are not legal in TensorFlow
    graph.
    ### `-tf-batch-matmul-to-tf-einsum`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

            -Name ${endpoint_name} `
            -IPAddress ${pod_endpoint_gateway} `
            -Gateway "0.0.0.0" `
            -Verbose
        # TODO(pjh): find out: why is this always CompartmentId 1?
        Attach-HnsHostEndpoint `
            -EndpointID ${hns_endpoint}.Id `
            -CompartmentID 1 `
            -Verbose
        netsh interface ipv4 set interface "${vnic_name}" forwarding=enabled
      }
    
      Try {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	good &= good << 4
    	good &= good << 2
    	good &= good << 1
    	good = uint8(int8(good) >> 7)
    
    	// Zero the padding length on error. This ensures any unchecked bytes
    	// are included in the MAC. Otherwise, an attacker that could
    	// distinguish MAC failures from padding failures could mount an attack
    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrPolicyAlreadyAttached: {
    		Code:           "XMinioPolicyAlreadyAttached",
    		Description:    "The specified policy is already attached.",
    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrPolicyNotAttached: {
    		Code:           "XMinioPolicyNotAttached",
    		Description:    "The specified policy is not found.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    It means that you will be tempted to switch it off.
    
    So why should you bother?
    
    Dependency verification is about **trust** in what you get and what you ship.
    
    Without dependency verification it's easy for an attacker to compromise your supply chain.
    There are many real world examples of tools compromised by adding a malicious dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		capacities []*storagev1.CSIStorageCapacity
    
    		// Expected return values
    		reasons    ConflictReasons
    		shouldFail bool
    	}
    	scenarios := map[string]scenarioType{
    		"network-attached": {
    			pvcs: []*v1.PersistentVolumeClaim{provisionedPVC},
    			capacities: []*storagev1.CSIStorageCapacity{
    				makeCapacity("net", waitClassWithProvisioner, nil, "1Gi", ""),
    			},
    		},
    		"local-storage": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top