Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 953 for Managed (0.33 sec)

  1. src/runtime/debug/garbage.go

    //
    // The input limit is provided as bytes, and includes all memory
    // mapped, managed, and not released by the Go runtime. Notably, it
    // does not account for space used by the Go binary and memory
    // external to Go, such as memory managed by the underlying system
    // on behalf of the process, or memory managed by non-Go code inside
    // the same process. Examples of excluded memory sources include: OS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         */
        UPDATE,
    
        /**
         * The [KtModule] is being removed. Because this event is published before the removal, the [KtModule] can still be accessed to clear
         * caches. It should be removed from any caches managed by the subscriber to avoid stale or broken keys/values.
         */
        REMOVAL,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. manifests/charts/gateway/templates/_helpers.tpl

    helm.sh/chart: {{ include "gateway.chart" . }}
    {{ include "gateway.selectorLabels" . }}
    app.kubernetes.io/name: {{ include "gateway.name" . }}
    app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
    app.kubernetes.io/managed-by: {{ .Release.Service }}
    {{- range $key, $val := .Values.labels }}
    {{- if and (ne $key "app") (ne $key "istio") }}
    {{ $key | quote }}: {{ $val | quote }}
    {{- end }}
    {{- end }}
    {{- end }}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    }
    
    // NamedResourcesInstance represents one individual hardware instance that can be selected based
    // on its attributes.
    type NamedResourcesInstance struct {
    	// Name is unique identifier among all resource instances managed by
    	// the driver on the node. It must be a DNS subdomain.
    	Name string `json:"name" protobuf:"bytes,1,name=name"`
    
    	// Attributes defines the attributes of this resource instance.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		return true, ""
    	}
    	obj := store.Get(name, namespace)
    	if obj == nil {
    		// no object, we can manage it
    		return true, ""
    	}
    	_, managed := obj.GetLabels()[constants.ManagedGatewayLabel]
    	// If object already exists, we can only manage it if it has the label
    	return managed, obj.GetResourceVersion()
    }
    
    // setGatewayNameLabel sets either the new or deprecated gateway name label
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

    import org.gradle.api.provider.Property
    import org.gradle.api.provider.ValueSource
    import org.gradle.api.provider.ValueSourceParameters
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.internal.state.Managed
    import org.gradle.process.ExecOperations
    import org.gradle.process.ExecResult
    
    import javax.inject.Inject
    
    import static org.gradle.api.internal.provider.ValueSourceProviderFactory.ValueListener.ObtainedValue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/certs.go

    		SkipCRIDetect: true,
    	})
    }
    
    // fetchCertificateExpirationInfo returns the certificate expiration info for the given renewal manager
    func fetchCertificateExpirationInfo(rm *renewal.Manager) (*outputapiv1alpha3.CertificateExpirationInfo, error) {
    	info := &outputapiv1alpha3.CertificateExpirationInfo{}
    
    	for _, handler := range rm.Certificates() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    	}
    
    	if !r.DryRun() {
    		klog.V(1).Info("[reset] Removing Kubernetes-managed containers")
    		if err := removeContainers(r.CRISocketPath()); err != nil {
    			klog.Warningf("[reset] Failed to remove containers: %v\n", err)
    		}
    	} else {
    		fmt.Println("[reset] Would remove Kubernetes-managed containers")
    	}
    
    	// Remove contents from the config and pki directories
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

    import org.gradle.model.*
    import org.gradle.model.internal.core.*
    import org.gradle.model.internal.fixture.ProjectRegistrySpec
    import org.gradle.model.internal.manage.schema.extract.InvalidManagedModelElementTypeException
    import org.gradle.model.internal.manage.schema.extract.ModelStoreTestUtils
    import org.gradle.model.internal.registry.DefaultModelRegistry
    import org.gradle.model.internal.registry.ModelRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
            "gateway.networking.k8s.io/gateway-name" .Name
            "istio.io/gateway-name" .Name
            "gateway.istio.io/managed" "istio.io-mesh-controller"
          ) | nindent 4 }}
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: "{{.Name}}"
        uid: "{{.UID}}"
    spec:
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top