Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 629 for passive (0.17 sec)

  1. src/runtime/cgo/libcgo_unix.h

    /*
     * Call pthread_create, retrying on EAGAIN.
     */
    extern int _cgo_try_pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*);
    
    /*
     * Same as _cgo_try_pthread_create, but passing on the pthread_create function.
     * Only defined on OpenBSD.
     */
    extern int _cgo_openbsd_try_pthread_create(int (*)(pthread_t*, const pthread_attr_t*, void *(*pfn)(void*), void*),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 684 bytes
    - Viewed (0)
  2. test/fixedbugs/issue26335.go

    // run
    
    // Copyright 2018 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.
    
    // gccgo mishandled passing a struct with an empty field through
    // reflect.Value.Call.
    
    package main
    
    import (
    	"reflect"
    )
    
    type Empty struct {
    	f1, f2 *byte
    	empty struct{}
    }
    
    func F(e Empty, s []string) {
    	if len(s) != 1 || s[0] != "hi" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 11 18:14:35 UTC 2018
    - 563 bytes
    - Viewed (0)
  3. cmd/erasure-sets_test.go

    			}
    		})
    	}
    }
    
    // TestSipHashMod - test sip hash.
    func TestSipHashMod(t *testing.T) {
    	testCases := []struct {
    		objectName string
    		sipHash    int
    	}{
    		// cases which should pass the test.
    		// passing in valid object name.
    		{"object", 37},
    		{"The Shining Script <v1>.pdf", 38},
    		{"Cost Benefit Analysis (2009-2010).pptx", 59},
    		{"117Gn8rfHL2ACARPAhaFd0AGzic9pUbIA/5OCn5A", 35},
    		{"SHØRT", 49},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:21:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue42944.go

    // license that can be found in the LICENSE file.
    
    // Issue 42944: address of callee args area should only be short-lived
    // and never across a call.
    
    package p
    
    type T [10]int // trigger DUFFCOPY when passing by value, so it uses the address
    
    func F() {
    	var x T
    	var i int
    	for {
    		x = G(i) // no autotmp live at this and next calls
    		H(i, x)
    	}
    }
    
    func G(int) T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 21:34:39 UTC 2020
    - 513 bytes
    - Viewed (0)
  5. docs/pt/docs/help-fastapi.md

        * Me dizer o motivo pelo o qual você está usando o FastAPI(Adoro ouvir esse tipo de comentário).
        * Saber quando eu soltar novos anúncios ou novas ferramentas.
        * Também é possivel <a href="https://twitter.com/fastapi" class="external-link" target="_blank">seguir o @fastapi no Twitter</a> (uma conta aparte).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue19182.go

    func main() {
    	runtime.GOMAXPROCS(2) // With just 1, infinite loop never yields
    
    	go func() {
    		for {
    			atomic.AddUint64(&a, uint64(1))
    		}
    	}()
    
    	time.Sleep(10 * time.Millisecond) // Short sleep is enough in passing case
    	i, val := 0, atomic.LoadUint64(&a)
    	for ; val == 0 && i < 100; val, i = atomic.LoadUint64(&a), i+1 {
    		time.Sleep(100 * time.Millisecond)
    	}
    	if val == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 737 bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/GeneratorTask.java

     * <ul>
     *
     * <li>loads the object from the input file, if it exists.</li>
     *
     * <li>Calls the beforeConfigured actions, passing the object to each action.</li>
     *
     * <li>Configures the object in some task-specific way.</li>
     *
     * <li>Calls the afterConfigured actions, passing the object to each action.</li>
     *
     * <li>writes the object to the output file.</li>
     *
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    `Double`, `Property<Double>`::
    Describes an option with a double value. +
    Passing the option on the command line also requires a value, e.g., `--factor=2.2` or `--factor 2.2`.
    
    `Integer`, `Property<Integer>`::
    Describes an option with an integer value. +
    Passing the option on the command line also requires a value, e.g., `--network-timeout=5000` or `--network-timeout 5000`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue28926.go

    	case E: // ERROR "undefined: E|undefined type .*E"
    		e.D() // ok: this error should be ignored because the case failed its typecheck
    	case Stringer:
    		// ok: this error should not be ignored to prove that passing legs aren't left out
    		_ = e.(T) // ERROR "undefined: T|undefined type .*T"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 721 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/EnvironmentChangeTracker.java

         * */
        void systemPropertyLoaded(Object key, @Nullable Object value, @Nullable Object oldValue);
    
        /**
         * System properties overridden by passing CLI argument
         * */
        void systemPropertyOverridden(Object key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top