Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 302 for Critical (0.12 sec)

  1. test/fixedbugs/issue35518.go

    // license that can be found in the LICENSE file.
    
    // This test makes sure that -m=2's escape analysis diagnostics don't
    // go into an infinite loop when handling negative dereference
    // cycles. The critical thing being tested here is that compilation
    // succeeds ("errorcheck -0"), not any particular diagnostic output,
    // hence the very lax ERROR patterns below.
    
    package p
    
    type Node struct {
    	Orig *Node
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 12 21:02:24 UTC 2019
    - 847 bytes
    - Viewed (0)
  2. cluster/addons/device-plugins/nvidia-gpu/daemonset.yaml

    spec:
      selector:
        matchLabels:
          k8s-app: nvidia-gpu-device-plugin
      template:
        metadata:
          labels:
            k8s-app: nvidia-gpu-device-plugin
        spec:
          priorityClassName: system-node-critical
          affinity:
            nodeAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
                nodeSelectorTerms:
                - matchExpressions:
                  - key: cloud.google.com/gke-accelerator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. cluster/gce/manifests/konnectivity-server.yaml

      component: konnectivity-server
    spec:
      securityContext:
        {{ run_as_user }}
        {{ run_as_group }}
        {{ supplemental_groups }}
        seccompProfile:
          type: RuntimeDefault
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      containers:
      - name: konnectivity-server-container
        {{ container_security_context }}:
          {{ disallow_privilege_escalation}}
          {{ capabilities }}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. cluster/gce/manifests/kube-scheduler.manifest

      }
    },
    "spec":{
    "securityContext": {
      "seccompProfile": {
          "type": "RuntimeDefault"
      },
      "runAsUser": {{runAsUser}},
      "runAsGroup": {{runAsGroup}}
    },
    "priorityClassName": "system-node-critical",
    "priority": 2000001000,
    "hostNetwork": true,
    "containers":[
        {
        "name": "kube-scheduler",
        "securityContext": {
          "allowPrivilegeEscalation": false,
          "capabilities": {
            "drop": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 20:50:53 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. cluster/addons/calico-policy-controller/typha-deployment.yaml

    spec:
      revisionHistoryLimit: 2
      selector:
        matchLabels:
          k8s-app: calico-typha
      template:
        metadata:
          labels:
            k8s-app: calico-typha
        spec:
          priorityClassName: system-cluster-critical
          tolerations:
          - key: CriticalAddonsOnly
            operator: Exists
          hostNetwork: true
          serviceAccountName: calico
          containers:
          - image: gcr.io/projectcalico-org/typha:v3.19.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 28 02:29:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. cluster/gce/manifests/kube-addon-manager.yaml

      labels:
        component: kube-addon-manager
    spec:
      securityContext:
        seccompProfile:
          type: RuntimeDefault
        runAsUser: {{runAsUser}}
        runAsGroup: {{runAsGroup}}
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      containers:
      - name: kube-addon-manager
        securityContext:
          allowPrivilegeEscalation: false
          capabilities:
            drop:
            - all
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/util/Log4jBannedVersion.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.util;
    
    /**
     * This class contains references to log4j-core which had a critical vulnerability,
     * see <a url="https://nvd.nist.gov/vuln/detail/CVE-2021-44228">CVE-2021-44228</a>.
     */
    public class Log4jBannedVersion {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/groovy/build.gradle

            if (details.requested.group == 'org.software' && details.requested.name == 'some-library' && details.requested.version == '1.2') {
                details.useVersion '1.2.1'
                details.because 'fixes critical bug in 1.2'
            }
        }
    }
    // end::denying_version[]
    
    // tag::module_substitution[]
    configurations.all {
        resolutionStrategy.eachDependency { DependencyResolveDetails details ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

          extensionValue,
          decompose = {
            listOf(
              it.id,
              it.critical,
              it.value,
            )
          },
          construct = {
            Extension(
              id = it[0] as String,
              critical = it[1] as Boolean,
              value = it[2],
            )
          },
        )
    
      /**
       * ```
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. cluster/addons/ip-masq-agent/ip-masq-agent.yaml

    spec:
      selector:
        matchLabels:
          k8s-app: ip-masq-agent
      template:
        metadata:
          labels:
            k8s-app: ip-masq-agent
        spec:
          priorityClassName: system-node-critical
          serviceAccountName: ip-masq-agent
          hostNetwork: true
          containers:
          - name: ip-masq-agent
            image: registry.k8s.io/networking/ip-masq-agent-amd64:v2.6.1
            args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top