Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 491 for upfn (0.04 sec)

  1. src/runtime/cgo/gcc_libinit_windows.c

    	 return status;
    }
    
    uintptr_t
    _cgo_wait_runtime_init_done(void) {
    	void (*pfn)(struct context_arg*);
    
    	 _cgo_maybe_run_preinit();
    	while (!_cgo_is_runtime_initialized()) {
    			WaitForSingleObject(runtime_init_wait, INFINITE);
    	}
    	pfn = _cgo_get_context_function();
    	if (pfn != nil) {
    		struct context_arg arg;
    
    		arg.Context = 0;
    		(*pfn)(&arg);
    		return arg.Context;
    	}
    	return 0;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Kapt produces deprecation warnings
    flags: "--warning-mode=all"
    expected-output-file: sanityCheck.out
    allow-additional-output: true
    
    # Note, upon upgrading Kapt to a version that does not emit a warning,
    # this test will fail. Simply delete this sanityCheck test, as it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 374 bytes
    - Viewed (0)
  3. test/fixedbugs/issue6703c.go

    // Check for cycles in a method expression.
    
    package methexpr
    
    type T int
    
    func (T) m() int {
    	_ = x
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 353 bytes
    - Viewed (0)
  4. test/fixedbugs/issue6703x.go

    // Check for cycles in a pointer value's method call.
    
    package ptrmethcall
    
    type T int
    
    func (*T) pm() int {
    	_ = x
    	return 0
    }
    
    var (
    	p *T
    	x = p.pm() // ERROR "initialization cycle|depends upon itself"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 382 bytes
    - Viewed (0)
  5. test/fixedbugs/issue6703v.go

    // Check for cycles in a pointer literal's method call.
    
    package ptrlitmethcall
    
    type T int
    
    func (*T) pm() int {
    	_ = x
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 384 bytes
    - Viewed (0)
  6. test/fixedbugs/issue6703z.go

    // from a function call.
    
    package funcptrmethcall
    
    type T int
    
    func (*T) pm() int {
    	_ = x
    	return 0
    }
    
    func pf() *T {
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 447 bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    washing it from all its grosser Particles, and laying a little of this upon the Pitch, I ground it upon the Pitch with the concave Copper, till it had done making a Noise; and then upon the Pitch I ground the Object-Metal with a brisk motion, for about two or three Minutes of time, leaning hard upon it. Then I put fresh Putty upon the Pitch, and ground it again till it had done making a noise, and afterwards ground the Object-Metal upon it as before. And this Work I repeated till the Metal was polished,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue23093.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 297 bytes
    - Viewed (0)
  9. test/fixedbugs/issue6703n.go

    package funcmethcall
    
    type T int
    
    func (T) m() int {
    	_ = x
    	return 0
    }
    
    func f() T {
    	return T(0)
    }
    
    var (
    	t T
    	x = f().m() // ERROR "initialization cycle|depends upon itself"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 437 bytes
    - Viewed (0)
  10. test/fixedbugs/issue6703r.go

    type T int
    
    func (T) m() int {
    	_ = x
    	return 0
    }
    
    func g() E {
    	return E{0}
    }
    
    type E struct{ T }
    
    var (
    	e E
    	x = g().m() // ERROR "initialization cycle|depends upon itself" 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 20:27:09 UTC 2022
    - 477 bytes
    - Viewed (0)
Back to top