Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for currentCA (0.13 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    		if err := a.updateStatusIfNeeded(ctx, hpaStatusOriginal, hpa); err != nil {
    			utilruntime.HandleError(err)
    		}
    		return fmt.Errorf("failed to query scale subresource for %s: %v", reference, err)
    	}
    	setCondition(hpa, autoscalingv2.AbleToScale, v1.ConditionTrue, "SucceededGetScale", "the HPA controller was able to get the target's current scale")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	initSignal.Wait()
    }
    
    // RunOptionalTestProgressNotify tests ProgressNotify feature of ListOptions.
    // Given this feature is currently not explicitly used by higher layers of Kubernetes
    // (it rather is used by wrappers of storage.Interface to implement its functionalities)
    // this test is currently considered optional.
    func RunOptionalTestProgressNotify(ctx context.Context, t *testing.T, store storage.Interface) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    	// policy.UpdateServiceAccountAdminAction permission can update any service
    	// account.
    	//
    	// 2. We would like to let a user update their own access keys, however it
    	// is currently blocked pending a re-design. Users are still able to delete
    	// and re-create them.
    	if !globalIAMSys.IsAllowed(policy.Args{
    		AccountName:     cred.AccessKey,
    		Groups:          cred.Groups,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

          Iterator<T> iterator, Predicate<? super T> predicate) {
        checkNotNull(predicate, "predicate");
        for (int i = 0; iterator.hasNext(); i++) {
          T current = iterator.next();
          if (predicate.apply(current)) {
            return i;
          }
        }
        return -1;
      }
    
      /**
       * Returns a view containing the result of applying {@code function} to each element of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

          Iterator<T> iterator, Predicate<? super T> predicate) {
        checkNotNull(predicate, "predicate");
        for (int i = 0; iterator.hasNext(); i++) {
          T current = iterator.next();
          if (predicate.apply(current)) {
            return i;
          }
        }
        return -1;
      }
    
      /**
       * Returns a view containing the result of applying {@code function} to each element of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # kernel registration - REGISTER_OP, REGISTER_KERNEL_BUILDER, etc.
    #
    # This setting is currently experimental. The 'v2' implementation does _not_
    # correspond to a particular, finalized design; rather, it relates to
    # developing one.
    #
    # The current aim of the 'v2' implementation is to allow 'unused' ops and
    # kernels to be discarded by the linker (to the benefit of binary size).
    bool_flag(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    func (ps *PushContext) getSidecarScope(proxy *Proxy, workloadLabels labels.Instance) *SidecarScope {
    	// TODO: logic to merge multiple sidecar resources
    	// Currently we assume that there will be only one sidecar config for a namespace.
    	sidecars, hasSidecar := ps.sidecarIndex.sidecarsByNamespace[proxy.ConfigNamespace]
    	switch proxy.Type {
    	case Router, Waypoint:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    	nospill regMask
    
    	// mask of registers currently in use
    	used regMask
    
    	// mask of registers used since the start of the current block
    	usedSinceBlockStart regMask
    
    	// mask of registers used in the current instruction
    	tmpused regMask
    
    	// current block we're working on
    	curBlock *Block
    
    	// cache of use records
    	freeUseRecords *use
    
    	// endRegs[blockid] is the register state at the end of each block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

        }
    
        @ToBeImplemented("When we support symlinks in the VFS, we should implement this as well")
        @Requires(UnitTestPreconditions.Symlinks)
        def "a task that writes into a symlink that overlaps with output of currently running task is not started"() {
            given:
            def taskOutput = file("outputDir").createDir()
            def symlink = file("symlink")
            symlink.createLink(taskOutput)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    md.addDependency(dependencyDescriptor);
                }
            }
    
            private void mergeDescription(String description) {
                String current = getMd().getDescription();
                if (current == null || current.trim().length() == 0) {
                    getMd().setDescription(description);
                }
            }
    
            private ModuleDescriptor parseOtherIvyFileOnFileSystem(String location)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top