Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 673 for impacted (0.1 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate.go

    			event = truncate(event)
    			size, err = b.calcSize(event)
    		}
    		if err != nil {
    			errors = append(errors, err)
    			impacted = append(impacted, event)
    			continue
    		}
    		if size > b.c.MaxEventSize {
    			errors = append(errors, fmt.Errorf("event is too large even after truncating"))
    			impacted = append(impacted, event)
    			continue
    		}
    
    		if len(batch) > 0 && batchSize+size > b.c.MaxBatchSize {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 00:03:53 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/audit/metrics.go

    func HandlePluginError(plugin string, err error, impacted ...*auditinternal.Event) {
    	// Count the error.
    	errorCounter.WithLabelValues(plugin).Add(float64(len(impacted)))
    
    	// Log the audit events to the debug log.
    	msg := fmt.Sprintf("Error in audit plugin '%s' affecting %d audit events: %v\nImpacted events:\n",
    		plugin, len(impacted), err)
    	for _, ev := range impacted {
    		msg = msg + EventString(ev) + "\n"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 13 00:46:24 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. releasenotes/notes/multicuster-secret-auth.yaml

        The two authentication methods output but `istioctl create-remote-secret` (`oidc` and `token`), are not impacted.
        As a result, only users that are creating custom kubeconfig files will be impacted.
    
        A new environment variable, `PILOT_INSECURE_MULTICLUSTER_KUBECONFIG_OPTIONS`, is added to Istiod to enable the methods that were removed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 22:23:58 UTC 2021
    - 1010 bytes
    - Viewed (0)
  4. tests/integration/security/testdata/reachability/global-dr.yaml.tmpl

    metadata:
      name: "default"
    spec:
      host: "*"
      trafficPolicy:
        tls:
          mode: {{ .TLSMode }}
    ---
    # Apply a local policy to the system namespace to turn this off
    # Otherwise, the eastwest gateway will be impacted
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "eastwest-opt-out"
    spec:
      exportTo: [.]
      host: "*"
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 474 bytes
    - Viewed (0)
  5. tests/integration/security/testdata/reachability/automtls-passthrough.yaml.tmpl

    metadata:
      name: passthrough
    spec:
      host: "*"
      trafficPolicy:
        loadBalancer:
          simple: PASSTHROUGH
    ---
    # Apply a local policy to the system namespace to turn this off
    # Otherwise, the eastwest gateway will be impacted
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "eastwest-opt-out"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      exportTo: [.]
      host: "*"
      trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 530 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/model.go

    	// determine if a namespace update could have impacted any Gateways. See namespaceEvent.
    	ReferencedNamespaceKeys sets.String
    
    	// ResourceReferences stores all resources referenced by gateway-api resources. This allows us to quickly
    	// determine if a resource update could have impacted any Gateways.
    	// key: referenced resources(e.g. secrets), value: gateway-api resources(e.g. gateways)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. releasenotes/notes/drop-default-tracing.yaml

          This default setting has been removed; users will need to explicitly configure where to send traces moving forward.
    
          `istioctl x precheck --from-version=1.21` can automatically detect if you may be impacted by this change.
    
          If you previously had tracing enabled implicitly, you can enable it by doing one of:
          * Installing with `--set compatibilityVersion=1.21`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  8. releasenotes/notes/gateway-api118.yaml

        Found managed gateway: default/gateway
        {{< /text >}}
    
        If you see "Found managed gateway", you may be impacted by this change.
    
        Prior to Istio 1.18, the managed gateway worked by creating a minimal Deployment configuration which
        was fully populated at runtime with Pod injection. To upgrade gateways, users would restart the Pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. testing/precondition-tester/build.gradle.kts

        testClassesDirs = sourceSets.test.get().output.classesDirs
        // All test should have this project's "test" source set on their classpath
        classpath += sourceSets.test.get().output
    
        // These tests should not be impacted by the predictive selection
        extensions.findByType<DevelocityTestConfiguration>()?.apply {
            predictiveTestSelection.enabled = false
        }
    
        // These tests should always run
        outputs.upToDateWhen { false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskQueue.kt

        val latch = CountDownLatch(1)
    
        override fun runOnce(): Long {
          latch.countDown()
          return -1L
        }
      }
    
      /** Adds [task] to run in [delayNanos]. Returns true if the coordinator is impacted. */
      internal fun scheduleAndDecide(
        task: Task,
        delayNanos: Long,
        recurrence: Boolean,
      ): Boolean {
        task.initQueue(this)
    
        val now = taskRunner.backend.nanoTime()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top