Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for pcount (0.13 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "azureFile": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFileVolumeSource"
                  }
                ],
                "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod."
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	if elem.Alignment() == 1 && (size == 0 || size == 1 || count == nil) {
    		return
    	}
    	if count == nil {
    		count = s.constInt(types.Types[types.TUINTPTR], 1)
    	}
    	if count.Type.Size() != s.config.PtrSize {
    		s.Fatalf("expected count fit to a uintptr size, have: %d, want: %d", count.Type.Size(), s.config.PtrSize)
    	}
    	var rtype *ssa.Value
    	if rtypeExpr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    `kube-controller-manager`: The `LegacyServiceAccountTokenCleanUp` feature gate is now `beta` and enabled by default. When enabled, legacy auto-generated service account token secrets are auto-labeled with a `kubernetes.io/legacy-token-invalid-since` label if the credentials have not been used in the time specified by `--legacy-service-account-token-clean-up-period` (defaulting to one year), **and** are referenced from the `.secrets` list of a ServiceAccount object, **and**  are not referenced from pods....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Fix: Mount point may become local without calling NodePublishVolume after node rebooting. ([#119923](https://github.com/kubernetes/kubernetes/pull/119923), [@cvvz](https://github.com/cvvz)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    - Node information is now embedded into Pod-bound service account tokens as additional metadata. The 'JTI' field is set in issued service account tokens, and this information is embedded as `authentication.kubernetes.io/credential-id` in the user's ExtraInfo. ([#123135](https://github.com/kubernetes/kubernetes/pull/123135), [@munnerz](https://github.com/munnerz))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                                                   op.getStrides(), op.getPadding(),
                                                   &rewriter);
    
        // Count the 1's in each window, using the same padding as for the input,
        // which gives us the window counts by which `pooled` needs to be divided.
        auto divisor = rewriter.create<ReduceWindowOp>(
            loc, pooled_type,
            /*operand=*/all_ones_tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - `kube-controller-manager`: The `LegacyServiceAccountTokenCleanUp` feature gate
      is now available as alpha (off by default). When enabled, the `legacy-service-account-token-cleaner`
      controller loop removes service account token secrets that have not been used
      in the time specified by `--legacy-service-account-token-clean-up-period` (defaulting
      to one year), **and are** referenced from the `.secrets` list of a ServiceAccount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    }
    
    type DmTargetSpec struct {
    	Sector_start uint64
    	Length       uint64
    	Status       int32
    	Next         uint32
    	Target_type  [16]byte
    }
    
    type DmTargetDeps struct {
    	Count uint32
    	_     uint32
    }
    
    type DmTargetVersions struct {
    	Next    uint32
    	Version [3]uint32
    }
    
    type DmTargetMsg struct {
    	Sector uint64
    }
    
    const (
    	SizeofDmIoctl      = 0x138
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	// write as much data from B as possible, but this is suboptimal because A
    	// is a higher-priority stream. With throttling enabled, we write a small
    	// amount of data from B to minimize the amount of bandwidth that B can
    	// steal from A.
    	ThrottleOutOfOrderWrites bool
    }
    
    // NewPriorityWriteScheduler constructs a WriteScheduler that schedules
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. doc/go_spec.html

    </p>
    
    <pre>
    [...]Point{{1.5, -3.5}, {0, 0}}     // same as [...]Point{Point{1.5, -3.5}, Point{0, 0}}
    [][]int{{1, 2, 3}, {4, 5}}          // same as [][]int{[]int{1, 2, 3}, []int{4, 5}}
    [][]Point{{{0, 1}, {1, 2}}}         // same as [][]Point{[]Point{Point{0, 1}, Point{1, 2}}}
    map[string]Point{"orig": {0, 0}}    // same as map[string]Point{"orig": Point{0, 0}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top