Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 437 for locations (0.26 sec)

  1. cmd/kubeadm/app/cmd/options/constant.go

    	KubeconfigDir = "kubeconfig-dir"
    
    	// KubeconfigPath flag sets the kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations are searched for an existing KubeConfig file.
    	KubeconfigPath = "kubeconfig"
    
    	// KubernetesVersion flag sets the Kubernetes version for the control plane.
    	KubernetesVersion = "kubernetes-version"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    	}
    	return b, locs, nil
    }
    
    // parseJavaLocations parses the location information in a java
    // profile and populates the Locations in a profile. It uses the
    // location addresses from the profile as both the ID of each
    // location.
    func parseJavaLocations(b []byte, locs map[uint64]*Location, p *Profile) error {
    	r := bytes.NewBuffer(b)
    	fns := make(map[string]*Function)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/runtime/histogram.go

    	// the range counts represents.
    	overflow atomic.Uint64
    }
    
    // record adds the given duration to the distribution.
    //
    // Disallow preemptions and stack growths because this function
    // may run in sensitive locations.
    //
    //go:nosplit
    func (h *timeHistogram) record(duration int64) {
    	// If the duration is negative, capture that in underflow.
    	if duration < 0 {
    		h.underflow.Add(1)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. README.md

    ## Migration from another search provider
    
    Please see [MIGRATION.md](MIGRATION.md).
    
    ## Data Store
    
    Currently, Fess supports crawling the following [storage locations and APIs](https://fess.codelibs.org/14.12/admin/dataconfig-guide.html):
    
     - [Confluence/Jira](https://github.com/codelibs/fess-ds-atlassian)
     - [Box](https://github.com/codelibs/fess-ds-box)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/syscall/dll_windows.go

    	Name   string
    	Handle Handle
    }
    
    // LoadDLL loads the named DLL file into memory.
    //
    // If name is not an absolute path and is not a known system DLL used by
    // Go, Windows will search for the named DLL in many locations, causing
    // potential DLL preloading attacks.
    //
    // Use [LazyDLL] in golang.org/x/sys/windows for a secure way to
    // load system DLLs.
    func LoadDLL(name string) (*DLL, error) {
    	namep, err := UTF16PtrFromString(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    As with any cache, the impact should therefore be measured over time.
    
    In a setup where a team uses a shared cache backend, there are two locations worth measuring cache impact at: on CI and on developer machines.
    
    == Cache impact on CI builds
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api.services.xml;
    
    public interface Location {
    
        /**
         * Return the line number where the current event ends,
         * returns -1 if none is available.
         * @return the current line number
         */
        int getLineNumber();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/problems/Location.java

     */
    
    package org.gradle.problems;
    
    import org.gradle.internal.DisplayName;
    
    /**
     * A source file location.
     */
    public class Location {
        private final int lineNumber;
        private final DisplayName sourceLongDisplayName;
        private final DisplayName sourceShortDisplayName;
    
        public Location(DisplayName sourceLongDisplayName, DisplayName sourceShortDisplayName, int lineNumber) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:02:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/plugin-notations.toml

    Valentin Kulesh <******@****.***> 1701265257 +0300
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 668 bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/CachingJvmMetadataDetectorTest.groovy

        def "invalidation takes predicate into account"() {
            def location1 = testLocation("jdk1")
            def location2 = testLocation("jdk2")
            def metadata1 = Mock(JvmInstallationMetadata)
            def metadata2 = Mock(JvmInstallationMetadata)
            def delegate = Mock(JvmMetadataDetector) {
                getMetadata(location1) >> metadata1
                getMetadata(location2) >> metadata2
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top