Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,362 for providerID (0.28 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowProviders.java

    @ServiceScope(Scope.Build.class)
    public interface FlowProviders {
    
        /**
         * Returns a {@link Provider provider} for the summary result of the execution of the work scheduled
         * for the current build.
         * <p>
         * The returned {@link Provider#get() provider's value} becomes available after the scheduled work
         * has completed - successfully or otherwise - or after a configuration phase failure prevents execution.
         * </p>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. cluster/gce/addons/loadbalancing/cloud-provider-role.yaml

      name: gce:cloud-provider
      namespace: kube-system
    rules:
    - apiGroups:
      - ""
      resources:
      - configmaps
      verbs:
      - create
      - get
      - patch
      - update
      - list
      - watch
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: gce:cloud-provider
    rules:
    - apiGroups:
      - ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 23:02:19 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

            """
        }
    
        private static final String ERROR_MESSAGE_PROVIDER = "Providers of type 'java.lang.String' are not supported. Only Provider<Dependency> and Provider<DependencyConstraint> are supported. Try using the Provider#map method to convert to a supported type.";
    
        def "cannot add non-Dependency providers to the dependency collector (fails at runtime)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/valid-configs/aes/aes-cbc-multiple-providers.json

    {
      "kind": "EncryptionConfiguration",
      "apiVersion": "apiserver.config.k8s.io/v1",
      "resources": [
        {
          "resources": [
            "ignored"
          ],
          "providers": [
            {
              "aescbc": {
                "keys": [
                  {
                    "name": "1",
                    "secret": "Owq7A4JrJpSjrvH8kXkvl4JmOLzvZ6j9BcGRkR8OPQ4="
                  }
                ]
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 21:59:25 UTC 2019
    - 645 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/telemetry-invalid-provider.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
          - name: envoy
        - filter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 04 14:56:01 UTC 2022
    - 230 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/telemetry-disable-provider.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
            - name: envoy
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: foo
    spec:
      accessLogging:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 15 02:29:39 UTC 2023
    - 327 bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverSpec.groovy

        }
    
        def "normalizes Provider value"() {
            def baseDir = tmpDir.testDirectory.file("base")
            def file = tmpDir.testDirectory.file("test")
            def provider1 = Stub(Provider)
            provider1.get() >> file
            def provider2 = Stub(Provider)
            provider2.get() >> "value"
    
            expect:
            normalize(provider1, baseDir) == file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    	// WARNING: in.PodCIDR requires manual conversion: does not exist in peer-type
    	out.PodCIDRs = *(*[]string)(unsafe.Pointer(&in.PodCIDRs))
    	out.ProviderID = in.ProviderID
    	out.Unschedulable = in.Unschedulable
    	out.Taints = *(*[]core.Taint)(unsafe.Pointer(&in.Taints))
    	out.ConfigSource = (*core.NodeConfigSource)(unsafe.Pointer(in.ConfigSource))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/provider.go

    	containerStatsProvider containerStatsProvider,
    ) *Provider {
    	return &Provider{
    		cadvisor:               cadvisor,
    		podManager:             podManager,
    		runtimeCache:           runtimeCache,
    		containerStatsProvider: containerStatsProvider,
    	}
    }
    
    // Provider provides the stats of the node and the pod-managed containers.
    type Provider struct {
    	cadvisor     cadvisor.Interface
    	podManager   PodManager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.19.md

    - The Kubelet's `--cloud-provider` and `--cloud-config` options are now marked as deprecated. ([#90408](https://github.com/kubernetes/kubernetes/pull/90408), [@knabben](https://github.com/knabben)) [SIG Cloud Provider and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top