Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 643 for dialing (0.52 sec)

  1. src/path/filepath/path_windows_test.go

    	vol := string(output)
    
    	dirlink := filepath.Join(tmpdir, "dirlink")
    	output, err := testenv.Command(t, "cmd", "/c", "mklink", "/J", dirlink, vol).CombinedOutput()
    	if err != nil {
    		t.Fatalf("failed to run mklink %v %v: %v %q", dirlink, vol, err, output)
    	}
    	got, err := filepath.EvalSymlinks(dirlink)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if got != dirlink {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/term/term.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package term provides support functions for dealing with terminals, as
    // commonly found on UNIX systems.
    //
    // Putting a terminal into raw mode is the most common requirement:
    //
    //	oldState, err := term.MakeRaw(int(os.Stdin.Fd()))
    //	if err != nil {
    //	        panic(err)
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

                        LOGGER.warn("More progress was logged than there should be ({} > {})", current, total);
                    }
                });
            }
            this.failing = this.failing || failing;
            formatted = null;
        }
    
        public List<StyledTextOutputEvent.Span> formatProgress(boolean timerEnabled, long elapsedTime) {
            String elapsedTimeStr = elapsedTimeFormatter.format(elapsedTime);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. internal/rest/rpc-stats.go

    func setupReqStatsUpdate(req *http.Request) (*http.Request, func()) {
    	var dialStart, dialEnd int64
    
    	trace := &httptrace.ClientTrace{
    		ConnectStart: func(network, addr string) {
    			atomic.StoreInt64(&dialStart, time.Now().UnixNano())
    		},
    		ConnectDone: func(network, addr string, err error) {
    			if err == nil {
    				atomic.StoreInt64(&dialEnd, time.Now().UnixNano())
    			}
    		},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 16:27:58 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/TestTaskPropertiesService.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Provides access to the configuration of {@link Test} tasks and allows
     * disabling storing their outputs in the build cache.
     */
    @ServiceScope(Scope.Project.class)
    public interface TestTaskPropertiesService {
    
        /**
         * Collect the configuration of the given task.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/SortedIterables.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Comparator;
    import java.util.SortedSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Utilities for dealing with sorted collections of all types.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class SortedIterables {
      private SortedIterables() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 30 10:33:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. licenses/github.com/shopspring/decimal/LICENSE

    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.
    
    - Based on https://github.com/oguzbilgic/fpd, which has the following license:
    """
    The MIT License (MIT)
    
    Copyright (c) 2013 Oguz Bilgic
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 22:59:30 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForDependency/groovy/settings.gradle

    rootProject.name = 'disabling-transitive-dependency-resolution'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 64 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    [[sub:disabling-gmm-publication]]
    == Disabling Gradle Module Metadata publication
    
    There are situations where you might want to disable publication of Gradle Module Metadata:
    
    - the repository you are uploading to rejects the metadata file (unknown format)
    - you are using Maven or Ivy specific concepts which are not properly mapped to Gradle Module Metadata
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/runtime/netpoll_solaris.go

    // also re-associate the events that were not part of this current
    // notification with the file descriptor. Failing to do this would
    // mean each notification will prevent concurrent code using the
    // same file descriptor in parallel.
    //
    // The logic dealing with re-associations is encapsulated in
    // runtime·netpollupdate. This function takes care to associate the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top