Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 339 for Words (0.04 sec)

  1. android/guava/src/com/google/common/base/Suppliers.java

    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Suppliers {
      private Suppliers() {}
    
      /**
       * Returns a new supplier which is the composition of the provided function and supplier. In other
       * words, the new supplier's value will be computed by retrieving the value from {@code supplier},
       * and then applying {@code function} to that value. Note that the resulting supplier will not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     *     For example, when the value is a {@code File} object, the state of that file in the file system may change. This mutable state is the "content" of the value.</li>
     * </ul>
     *
     * <p>In other words, a provider does not provide a value, it provides a value whose content is in a particular state. This is discussed in more detail below.</p>
     *
     * <h1>The provider value</h1>
     *
     * <p>The value of a provider may be:</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    	// as the size. I don't know why the +2 is here, but the
    	// kernel uses +2 for its own implementation of this function.
    	// I am scared that if we don't include the +2 here, the kernel
    	// will silently write 2 words farther than we specify
    	// and we'll get memory corruption.
    	var buf [CTL_MAXNAME + 2]_C_int
    	n := uintptr(CTL_MAXNAME) * siz
    
    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return FormatType.LABEL;
            }
            if ("popular-words".equals(type)) {
                return FormatType.POPULARWORD;
            }
            if ("favorites".equals(type)) {
                return FormatType.FAVORITES;
            }
            if ("health".equals(type)) {
                return FormatType.PING;
            }
            if ("suggest-words".equals(type)) {
                return FormatType.SUGGEST;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  5. src/unsafe/unsafe.go

    // or struct type with elements of variable size).
    func Sizeof(x ArbitraryType) uintptr
    
    // Offsetof returns the offset within the struct of the field represented by x,
    // which must be of the form structValue.field. In other words, it returns the
    // number of bytes between the start of the struct and the start of the field.
    // The return value of Offsetof is a Go constant if the type of the argument x
    // does not have variable size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Here, we _manipulate the requested versions_ in order to select a different version when we find a rejected one.
    In other words, this is a _solution_ to rejected versions, while rich version constraints allow declaring the _intent_ (you should not use this version).
    ====
    
    [[sec:module_replacement]]
    == Using module replacement rules
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    }
    
    // parseCPU parses a profilez legacy profile and returns a newly
    // populated Profile.
    //
    // The general format for profilez samples is a sequence of words in
    // binary format. The first words are a header with the following data:
    //
    //	1st word -- 0
    //	2nd word -- 3
    //	3rd word -- 0 if a c++ application, 1 if a java application.
    //	4th word -- Sampling period (in microseconds).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    for example `foo-bar` as an alias is converted to `foo.bar` automatically.
    
    --
    Some keywords are reserved, so they cannot be used as an alias. Next words cannot be used as an alias:
    
    - extensions
    - class
    - convention
    
    Additional to that next words cannot be used as a first subgroup of an alias for dependencies (for bundles, versions and plugins this restriction doesn't apply):
    
    - bundles
    - versions
    - plugins
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            parameters.add(parameter);
        }
    
        /**
         * @return the list parameters as a Map (keyed by {@link Parameter#getName()}) that is built from
         * {@link #parameters} list on each call. In other words, the map returned is built on fly and is a copy.
         * Any change to this map is NOT reflected on list and other way around!
         */
        public Map<String, Parameter> getParameterMap() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. pkg/controller/history/controller_history.go

    }
    
    // HashControllerRevision hashes the contents of revision's Data using FNV hashing. If probe is not nil, the byte value
    // of probe is added written to the hash as well. The returned hash will be a safe encoded string to avoid bad words.
    func HashControllerRevision(revision *apps.ControllerRevision, probe *int32) string {
    	hf := fnv.New32()
    	if len(revision.Data.Raw) > 0 {
    		hf.Write(revision.Data.Raw)
    	}
    	if revision.Data.Object != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
Back to top