Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 560 for impacted (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/scheduler/framework/cycle_state.go

    type StateData interface {
    	// Clone is an interface to make a copy of StateData. For performance reasons,
    	// clone should make shallow copies for members (e.g., slices or maps) that are not
    	// impacted by PreFilter's optional AddPod/RemovePod methods.
    	Clone() StateData
    }
    
    // StateKey is the type of keys stored in CycleState.
    type StateKey string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. architecture/networking/pilot.md

    Next, for an individual proxy we will check if it could possibly be impacted by the change. For example, we know a sidecar never is impacted by a `Gateway` update, and we can also look at scoping (from `Sidecar.egress.hosts`) to further restrict update scopes.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            result.getLockedDependencies() == [newId(DefaultModuleIdentifier.newId('com', 'foo'), '1.0')] as Set
    
            where:
            unique << [true, false]
        }
    
        def 'can filter lock entries impacted by dependency substitutions (Unique: #unique)'() {
            given:
            dependencySubstitutionRules.rulesMayAddProjectDependency() >> true
            Action< DependencySubstitution> substitutionAction = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    )
    
    type preFilterState []*v1.ContainerPort
    
    // Clone the prefilter state.
    func (s preFilterState) Clone() framework.StateData {
    	// The state is not impacted by adding/removing existing pods, hence we don't need to make a deep copy.
    	return s
    }
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (pl *NodePorts) Name() string {
    	return Name
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. tests/integration/security/egress_sidecar_tls_origination_test.go

    					},
    				},
    				// Mutual TLS origination from an authorized sidecar to https endpoint with a CRL with a dummy revoked certificate.
    				// Since the certificate in action is not revoked, the communication should not be impacted.
    				{
    					name:             "dummy crl",
    					credentialToUse:  credWithDummyCRL,
    					from:             apps.Ns2.B,
    					drSelector:       "b",
    					authorizeSidecar: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top