Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,422 for setIws (0.13 sec)

  1. pkg/controller/deployment/util/deployment_util.go

    		}
    	}
    	// new ReplicaSet does not exist.
    	return nil
    }
    
    // FindOldReplicaSets returns the old replica sets targeted by the given Deployment, with the given slice of RSes.
    // Note that the first set of old replica sets doesn't include the ones with no pods, and the second set of old replica sets include all old replica sets.
    func FindOldReplicaSets(deployment *apps.Deployment, rsList []*apps.ReplicaSet) ([]*apps.ReplicaSet, []*apps.ReplicaSet) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. docs/hotfixes.md

    ## Creating a hotfix branch
    
    Customers in MinIO are allowed LTS on any release they choose to standardize. Production setups seldom change and require maintenance. Hotfix branches are such maintenance branches that allow customers to operate a production cluster without drastic changes to their deployment.
    
    ## Backporting a fix
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingSet.java

            reportAggregatingAccess();
            T[] result = delegate().toArray(array);
            for (int i = 0; i < result.length; ++i) {
                // The elements of result have to be of some subtype of E because of Set's invariant,
                // so the inner cast is safe. The outer cast might be problematic if T is a some subtype
                // of E and the factory function returns some other subtype. However, this is unlikely
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FreeListBlockStore.java

                if (index == entries.size()) {
                    // Largest free block is too small
                    return;
                }
    
                FreeListEntry entry = entries.remove(index);
                block.setPos(entry.pos);
                block.setSize(entry.size);
                freeListStore.write(this);
    
                if (entries.size() == 0 && prev != null) {
                    prev.nextBlock = nextBlock;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    		body.Append(ncase.Body...)
    		if fall, pos := endsInFallthrough(ncase.Body); !fall {
    			br := ir.NewBranchStmt(base.Pos, ir.OBREAK, nil)
    			br.SetPos(pos)
    			body.Append(br)
    		}
    	}
    	sw.Cases = nil
    
    	if defaultGoto == nil {
    		br := ir.NewBranchStmt(base.Pos, ir.OBREAK, nil)
    		br.SetPos(br.Pos().WithNotStmt())
    		defaultGoto = br
    	}
    
    	s.Emit(&sw.Compiled)
    	sw.Compiled.Append(defaultGoto)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. docs/kms/IAM.md

    it in plaintext (no KMS) or re-encrypts using the KMS.
    
    > Is this change backward compatible? Will it break my setup?
    
    This change is not backward compatible for all setups. In particular, the native
    Hashicorp Vault integration - which has been deprecated already - won't be
    supported anymore. KES is now mandatory if a third-party KMS should be used.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ForwardingSortedSet.java

     * invoke methods, they invoke methods on the {@code ForwardingSortedSet}.
     *
     * <p>Each of the {@code standard} methods, where appropriate, uses the set's comparator (or the
     * natural ordering of the elements, if there is no comparator) to test element equality. As a
     * result, if the comparator is not consistent with equals, some of the standard implementations may
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    			if err != nil {
    				return nil, err
    			}
    			if finalIP != nil {
    				klog.V(4).Infof("Found active IP %v ", finalIP)
    				return finalIP, nil
    			}
    			// In case of network setups where default routes are present, but network
    			// interfaces use only link-local addresses (e.g. as described in RFC5549).
    			// the global IP is assigned to the loopback interface, and we should use it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticinit/sched.go

    		return true // discard
    	}
    
    	// Only worry about simple "l = r" assignments. The OAS2*
    	// assignments mostly necessitate dynamic execution anyway.
    	if len(lhs) > 1 {
    		return false
    	}
    
    	lno := ir.SetPos(n)
    	defer func() { base.Pos = lno }()
    
    	nam := lhs[0].(*ir.Name)
    	return s.StaticAssign(nam, 0, rhs, nam.Type())
    }
    
    // like staticassign but we are copying an already
    // initialized value r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. cmd/routers.go

    	// Register peer REST router only if its a distributed setup.
    	registerPeerRESTHandlers(router, globalGrid.Load())
    
    	// Register bootstrap REST router for distributed setups.
    	registerBootstrapRESTHandlers(globalGrid.Load())
    
    	// Register distributed namespace lock routers.
    	registerLockRESTHandlers()
    
    	// Add grid to router
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top