Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for danger (0.11 sec)

  1. docs/en/docs/img/sponsors/doist-banner.svg

    doist-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 01 08:58:40 UTC 2022
    - 52.2K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    		// All this means is that we'll sleep longer than we otherwise would have.
    		worked = minScavWorkTime
    	}
    
    	// Multiply the critical time by 1 + the ratio of the costs of using
    	// scavenged memory vs. scavenging memory. This forces us to pay down
    	// the cost of reusing this memory eagerly by sleeping for a longer period
    	// of time and scavenging less frequently. More concretely, we avoid situations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    		install(defaulttarg())
    	}
    
    	for _, arg := range flag.Args() {
    		install(arg)
    	}
    }
    
    // Clean deletes temporary objects.
    func cmdclean() {
    	xflagparse(0)
    	clean()
    }
    
    // Banner prints the 'now you've installed Go' banner.
    func cmdbanner() {
    	xflagparse(0)
    	banner()
    }
    
    func banner() {
    	if vflag > 0 {
    		xprintf("\n")
    	}
    	xprintf("---\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    	flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
    	flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them")
    	flag.StringVar(&t.banner, "banner", "##### ", "banner prefix; blank means no section banners")
    	flag.StringVar(&t.runRxStr, "run", "",
    		"run only those tests matching the regular expression; empty means to run all. "+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * domain names, and even `localhost` when connecting from the server itself. Each of a web server's
     * names is a distinct URL and they are not interchangeable. For example, even if
     * `http://square.github.io/dagger` and `http://google.github.io/dagger` are served by the same IP
     * address, the two URLs identify different resources.
     *
     * ### Port
     *
     * The port used to connect to the web server. By default this is 80 for HTTP and 443 for HTTPS.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

     * find it easier to use a framework. Frameworks automate the process, often adding features like
     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Futures.java

     * find it easier to use a framework. Frameworks automate the process, often adding features like
     * monitoring, debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <p>If you do chain your operations manually, you may want to use {@link FluentFuture}.
     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission_test.go

    	}
    	mergePodResourceRequirements(&pod, &defaultRequirements)
    	for i := range pod.Spec.Containers {
    		actual := pod.Spec.Containers[i].Resources
    		if !apiequality.Semantic.DeepEqual(expected, actual) {
    			t.Errorf("pod %v, expected != actual; %v != %v", pod.Name, expected, actual)
    		}
    	}
    	for i := range pod.Spec.InitContainers {
    		actual := pod.Spec.InitContainers[i].Resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	expectedErr := "tls: server sent certificate containing RSA key larger than 8192 bits"
    	err := c.verifyServerCertificate([][]byte{testCert.Bytes})
    	if err == nil || err.Error() != expectedErr {
    		t.Errorf("Conn.verifyServerCertificate unexpected error: want %q, got %q", expectedErr, err)
    	}
    
    	expectedErr = "tls: client sent certificate containing RSA key larger than 8192 bits"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top