Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for addOne (0.19 sec)

  1. cluster/gce/gci/configure-helper.sh

        else
          setup-addon-manifests "addons" "istio/noauth"
        fi
      fi
      if [[ -n "${EXTRA_ADDONS_URL:-}" ]]; then
        download-extra-addons
        setup-addon-manifests "addons" "gce-extras"
      fi
    
    
      # Place addon manager pod manifest.
      src_file="${src_dir}/kube-addon-manager.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.4.md

    * Bump GCE ContainerVM to container-vm-v20170201 to address CVE-2016-9962. ([#40828](https://github.com/kubernetes/kubernetes/pull/40828), [@zmerlynn](https://github.com/zmerlynn))
    * Adding vmdk file extension for vmDiskPath in vsphere DeleteVolume ([#40538](https://github.com/kubernetes/kubernetes/pull/40538), [@divyenpatel](https://github.com/divyenpatel))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

    * Migrates addons from RCs to Deployments ([#36008](https://github.com/kubernetes/kubernetes/pull/36008), [@MrHohn](https://github.com/MrHohn))
    * Avoid setting S_ISGID on files in volumes ([#36386](https://github.com/kubernetes/kubernetes/pull/36386), [@sjenning](https://github.com/sjenning))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	UZP2
    	WFE
    	WFI
    	XTN
    	XTN2
    	YIELD
    	ZIP1
    	ZIP2
    )
    
    var opstr = [...]string{
    	ABS:       "ABS",
    	ADC:       "ADC",
    	ADCS:      "ADCS",
    	ADD:       "ADD",
    	ADDHN:     "ADDHN",
    	ADDHN2:    "ADDHN2",
    	ADDP:      "ADDP",
    	ADDS:      "ADDS",
    	ADDV:      "ADDV",
    	ADR:       "ADR",
    	ADRP:      "ADRP",
    	AESD:      "AESD",
    	AESE:      "AESE",
    	AESIMC:    "AESIMC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    // ExtrelocViaOuterSym creates an external relocation from r targeting the
    // outer symbol and folding the subsymbol's offset into the addend.
    func ExtrelocViaOuterSym(ldr *loader.Loader, r loader.Reloc, s loader.Sym) loader.ExtReloc {
    	// set up addend for eventual relocation via outer symbol.
    	var rr loader.ExtReloc
    	rs := r.Sym()
    	rs, off := FoldSubSymbolOffset(ldr, rs)
    	rr.Xadd = r.Add() + off
    	rst := ldr.SymType(rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    // ELF32 Relocations that don't need an addend field.
    type Rel32 struct {
    	Off  uint32 /* Location to be relocated. */
    	Info uint32 /* Relocation type and symbol index. */
    }
    
    // ELF32 Relocations that need an addend field.
    type Rela32 struct {
    	Off    uint32 /* Location to be relocated. */
    	Info   uint32 /* Relocation type and symbol index. */
    	Addend int32  /* Addend. */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.cc

                                   TF_Status* status, TF_Output* dy) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "Adding gradients is not supported on mobile. File a bug at "
          "https://github.com/tensorflow/tensorflow/issues if this feature is "
          "important to you");
    #else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        performs in-function propagation, as well as cross-function propagation from
        callers to callees.
    
        This pass changes the module by adding "tf.device" attribute to function
        arguments and adding "device" attribute to TF ops.
    
        For example, given the function
    
        ```mlir
          !tf_res = type tensor<*x!tf_type.resource<tensor<32xf32>>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// define file config source
    	if kubeCfg.StaticPodPath != "" {
    		klog.InfoS("Adding static pod path", "path", kubeCfg.StaticPodPath)
    		config.NewSourceFile(kubeCfg.StaticPodPath, nodeName, kubeCfg.FileCheckFrequency.Duration, cfg.Channel(ctx, kubetypes.FileSource))
    	}
    
    	// define url config source
    	if kubeCfg.StaticPodURL != "" {
    		klog.InfoS("Adding pod URL with HTTP header", "URL", kubeCfg.StaticPodURL, "header", manifestURLHeader)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: [[ADD_N:%.*]] = "tf.AddN"(%arg0, [[ZERO]], [[ONE]])
      // CHECK: return %arg0, %arg0, [[ZERO]], [[ADD_N]]
      %2 = "tf.AddN"(%arg0, %1, %1) : (tensor<2xf32>, tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      %3 = "tf.AddN"(%1, %arg0, %1) : (tensor<2xf32>, tensor<2xf32> , tensor<2xf32>) -> tensor<2xf32>
      %4 = "tf.AddN"(%1, %1) : (tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
Back to top