Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 572 for updateIPs (1.73 sec)

  1. pilot/pkg/xds/sds_test.go

    					CaCert: string(genericMtlsCertCrl.Data[credentials.GenericScrtCaCert]),
    					CaCrl:  string(genericMtlsCertCrl.Data[credentials.GenericScrtCRL]),
    				},
    			},
    		},
    		{
    			name:      "full push with updates",
    			proxy:     &model.Proxy{VerifiedIdentity: &spiffe.Identity{Namespace: "istio-system"}, Type: model.Router},
    			resources: []string{"kubernetes://generic", "kubernetes://generic-mtls", "kubernetes://generic-mtls-cacert"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

            succeeds 'dependencies', '--configuration', 'lockedConf', '--write-locks'
    
            then:
            lockfileFixture.verifyLockfile('lockedConf', ['org:foo:1.0', 'org:bar:1.0'])
        }
    
        def 'updates part of the lockfile (initial unique: #unique)'() {
            mavenRepo.module('org', 'foo', '1.0').publish()
            mavenRepo.module('org', 'foo', '1.1').publish()
            mavenRepo.module('org', 'bar', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

    // This resource should be replaced by 'value'.
    // Output params:
    // - work_list: Is updated with new regions to process that is called
    //   by 'user_op';
    // - arguments_to_erase: Captures updates to the graph - which arguments
    //   to remove from the op;
    void PropagateUsage(
        Operation* user_op, int argument_index, ElementsAttr value,
        llvm::SmallVector<std::pair<Region*, int>, 4>* work_list,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/proxy/node.go

    			"node", klog.KObj(node), "newPodCIDRs", podCIDRs, "oldPodCIDRs", n.podCIDRs)
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    }
    
    // OnNodeUpdate is a handler for Node updates.
    func (n *NodePodCIDRHandler) OnNodeUpdate(_, node *v1.Node) {
    	n.mu.Lock()
    	defer n.mu.Unlock()
    	podCIDRs := node.Spec.PodCIDRs
    	// initialize podCIDRs
    	if len(n.podCIDRs) == 0 && len(podCIDRs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/controller/resourcequota/resource_quota_controller.go

    				// We are only interested in observing updates to quota.spec to drive updates to quota.status.
    				// We ignore all updates to quota.Status because they are all driven by this controller.
    				// IMPORTANT:
    				// We do not use this function to queue up a full quota recalculation.  To do so, would require
    				// us to enqueue all quota.Status updates, and since quota.Status updates involve additional queries
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. pkg/registry/batch/cronjob/strategy_test.go

    		},
    	}
    
    	StatusStrategy.PrepareForUpdate(ctx, newCronJob, oldCronJob)
    	if newCronJob.Status.LastScheduleTime == nil {
    		t.Errorf("CronJob status updates must allow changes to cronJob status")
    	}
    	if newCronJob.Spec.Schedule != oldSchedule {
    		t.Errorf("CronJob status updates must now allow changes to cronJob spec")
    	}
    	errs := StatusStrategy.ValidateUpdate(ctx, newCronJob, oldCronJob)
    	if len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    //  2. If no running quota was changed, return now since no updates are needed.
    //  3. for each quota that has changed, attempt an update.  If all updates succeeded, update all unset waiters to success status and return.  If the some
    //     updates failed on conflict errors and we have retries left, re-get the failed quota from our cache for the latest version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster.go

    	}
    	return resources, model.XdsLogDetails{AdditionalInfo: fmt.Sprintf("cached:%v/%v", cacheStats.hits, cacheStats.hits+cacheStats.miss)}
    }
    
    func shouldUseDelta(updates *model.PushRequest) bool {
    	return updates != nil && deltaAwareConfigTypes(updates.ConfigsUpdated) && len(updates.ConfigsUpdated) > 0
    }
    
    // deltaAwareConfigTypes returns true if all updated configs are delta enabled.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. .github/dependabot.yml

    #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #  See the License for the specific language governing permissions and
    #  limitations under the License.
    #
    version: 2
    updates:
    
      - package-ecosystem: maven
        directory: "/"
        schedule:
          interval: daily
    
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 12:45:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       * value.
       */
      @CanIgnoreReturnValue
      public long getAndAdd(K key, long delta) {
        return getAndAccumulate(key, delta, Long::sum);
      }
    
      /**
       * Updates the value currently associated with {@code key} with the specified function, and
       * returns the new value. If there is not currently a value associated with {@code key}, the
       * function is applied to {@code 0L}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top