Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 131 for avoiding (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    // 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.
    
    [[task_configuration_avoidance]]
    = Avoiding Unnecessary Task Configuration
    
    As of Gradle 5.1, we recommend that the configuration avoidance APIs be used whenever tasks are created.
    
    image::writing-tasks-4.png[]
    
    [[sec:how_does_it_work_config_api]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

          // without waiting for the user's executor to run our submitted Runnable. However, this can
          // interact poorly with the reentrancy-avoiding behavior of this executor - when the operation
          // before the cancelled future completes, it will synchronously complete both the newFuture
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    [[publishing_maven:relocation_duplicate_dependencies]]
    === Avoiding duplicate dependencies
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. src/log/slog/handler.go

    	s.appendString(fmt.Sprintf("!ERROR:%v", err))
    }
    
    func (s *handleState) appendKey(key string) {
    	s.buf.WriteString(s.sep)
    	if s.prefix != nil && len(*s.prefix) > 0 {
    		// TODO: optimize by avoiding allocation.
    		s.appendString(string(*s.prefix) + key)
    	} else {
    		s.appendString(key)
    	}
    	if s.h.json {
    		s.buf.WriteByte(':')
    	} else {
    		s.buf.WriteByte('=')
    	}
    	s.sep = s.h.attrSep()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. src/strconv/ftoaryu.go

    		return true
    	}
    	for i := 0; i < k; i++ {
    		if m%5 != 0 {
    			return false
    		}
    		m /= 5
    	}
    	return true
    }
    
    // divmod1e9 computes quotient and remainder of division by 1e9,
    // avoiding runtime uint64 division on 32-bit platforms.
    func divmod1e9(x uint64) (uint32, uint32) {
    	if !host32bit {
    		return uint32(x / 1e9), uint32(x % 1e9)
    	}
    	// Use the same sequence of operations as the amd64 compiler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    // limitations under the License.
    
    = Debugging and diagnosing cache misses
    
    To make the most of task output caching, it is important that any necessary inputs to your tasks are specified correctly, while at the same time avoiding unneeded inputs.
    Failing to specify an input that affects the task's outputs can result in incorrect builds, while needlessly specifying inputs that do not affect the task's output can cause cache misses.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

        @VisibleForTesting @Nullable ValueEntry<K, V>[] hashTable;
        private int size = 0;
        private int modCount = 0;
    
        // We use the set object itself as the end of the linked list, avoiding an unnecessary
        // entry object per key.
        private ValueSetLink<K, V> firstEntry;
        private ValueSetLink<K, V> lastEntry;
    
        ValueSet(@ParametricNullness K key, int expectedValues) {
          this.key = key;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableCollection.java

     * with {@link Collection} itself). Prefer subtypes such as {@link ImmutableSet} or {@link
     * ImmutableList}, which have well-defined {@link #equals} semantics, thus avoiding a common source
     * of bugs and confusion.
     *
     * <h3>About <i>all</i> {@code Immutable-} collections</h3>
     *
     * <p>The remainder of this documentation applies to every public {@code Immutable-} type in this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/LinkedHashMultimap.java

        @VisibleForTesting @Nullable ValueEntry<K, V>[] hashTable;
        private int size = 0;
        private int modCount = 0;
    
        // We use the set object itself as the end of the linked list, avoiding an unnecessary
        // entry object per key.
        private ValueSetLink<K, V> firstEntry;
        private ValueSetLink<K, V> lastEntry;
    
        ValueSet(@ParametricNullness K key, int expectedValues) {
          this.key = key;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/etcd/etcd.go

    	}
    	klog.V(1).Infof("etcd endpoints read from etcd: %s", strings.Join(cli.Endpoints(), ","))
    
    	c.Endpoints = cli.Endpoints()
    	return nil
    }
    
    // Member struct defines an etcd member; it is used for avoiding to spread github.com/coreos/etcd dependency
    // across kubeadm codebase
    type Member struct {
    	Name    string
    	PeerURL string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top