Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 823 for existed (0.23 sec)

  1. guava/src/com/google/common/collect/ForwardingConcurrentMap.java

     *
     * <p><b>{@code default} method warning:</b> This class forwards calls to <i>only some</i> {@code
     * default} methods. Specifically, it forwards calls only for methods that existed <a
     * href="https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ConcurrentMap.html">before
     * {@code default} methods were introduced</a>. For newer methods, like {@code forEach}, it inherits
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingConcurrentMap.java

     *
     * <p><b>{@code default} method warning:</b> This class forwards calls to <i>only some</i> {@code
     * default} methods. Specifically, it forwards calls only for methods that existed <a
     * href="https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ConcurrentMap.html">before
     * {@code default} methods were introduced</a>. For newer methods, like {@code forEach}, it inherits
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 19:42:21 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

        /**
         * Deletes a single file or an empty directory.
         *
         * Does not follow symlinks.
         *
         * @return {@code true} if the target existed, {@code false} if it didn't exist.
         *
         * @throws IOException if the file cannot be deleted.
         */
        boolean delete(File target) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingProvider.java

         */
        ListProperty<String> getIgnoredDependencies();
    
        /**
         * Confirms that the given lock is not locked.
         * This allows the lock state for the lock to be dropped if it existed before.
         *
         * @param lockId the ID of the lock to confirm is not locked
         */
        void confirmNotLocked(String lockId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/certs.go

    		%s and %s files.
    		
    		If both files already exist, kubeadm skips the generation step and existing files will be used.
    		`), kubeadmconstants.ServiceAccountPrivateKeyName, kubeadmconstants.ServiceAccountPublicKeyName)
    
    	genericLongDesc = cmdutil.LongDesc(`
    		Generate the %[1]s, and save them into %[2]s.crt and %[2]s.key files.%[3]s
    
    		If both files already exist, kubeadm skips the generation step and existing files will be used.
    		`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Table.java

       * @param columnKey column key that the value should be associated with
       * @param value value to be associated with the specified keys
       * @return the value previously associated with the keys, or {@code null} if no mapping existed
       *     for the keys
       */
      @CanIgnoreReturnValue
      @CheckForNull
      V put(@ParametricNullness R rowKey, @ParametricNullness C columnKey, @ParametricNullness V value);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. pkg/controller/deployment/recreate.go

    func (dc *DeploymentController) rolloutRecreate(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet, podMap map[types.UID][]*v1.Pod) error {
    	// Don't create a new RS if not already existed, so that we avoid scaling up before scaling down.
    	newRS, oldRSs, err := dc.getAllReplicaSetsAndSyncRevision(ctx, d, rsList, false)
    	if err != nil {
    		return err
    	}
    	allRSs := append(oldRSs, newRS)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/mvs.go

    type mvsReqs struct {
    	roots []module.Version
    }
    
    func (r *mvsReqs) Required(mod module.Version) ([]module.Version, error) {
    	if mod.Version == "" && MainModules.Contains(mod.Path) {
    		// Use the build list as it existed when r was constructed, not the current
    		// global build list.
    		return r.roots, nil
    	}
    
    	if mod.Version == "none" {
    		return nil, nil
    	}
    
    	summary, err := goModSummary(mod)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Table.java

       * @param columnKey column key that the value should be associated with
       * @param value value to be associated with the specified keys
       * @return the value previously associated with the keys, or {@code null} if no mapping existed
       *     for the keys
       */
      @CanIgnoreReturnValue
      @CheckForNull
      V put(@ParametricNullness R rowKey, @ParametricNullness C columnKey, @ParametricNullness V value);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/validtype.go

    //
    //   P₂
    //         nest = A[A[string]]->B[P]
    //         path = A[A[string]]->B[P]
    //
    // The type argument for P of B is the type parameter P of A (P₁).
    // It must be evaluated in the type nest that existed when B was
    // instantiated:
    //
    //   P₁
    //         nest = A[A[string]]        <== type nest at B's instantiation time
    //         path = A[A[string]]->B[P]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top