Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 562 for refStore (0.13 sec)

  1. src/runtime/testdata/testprogcgo/sigstack.go

    		// Darwin libsystem has a bug where it checks ss_size
    		// even if SS_DISABLE is set. (The kernel gets it right.)
    		ost.ss_size = CSIGSTKSZ;
    	}
    	if (sigaltstack(&ost, NULL) < 0) {
    		perror("sigaltstack restore failed");
    		abort();
    	}
    	mprotect(base, CSIGSTKSZ, PROT_NONE);
    	return NULL;
    }
    
    static void* WithoutSigStack(void* arg __attribute__((unused))) {
    	SigStackCallback();
    	return NULL;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. src/runtime/cgo/abi_loong64.h

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Macros for transitioning from the host ABI to Go ABI0.
    //
    // These macros save and restore the callee-saved registers
    // from the stack, but they don't adjust stack pointer, so
    // the user should prepare stack space in advance.
    // SAVE_R22_TO_R31(offset) saves R22 ~ R31 to the stack space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 02:34:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtSymbolPointer.kt

    /**
     * [KaSymbol] is valid only during read action it was created in
     * To pass the symbol from one read action to another the KtSymbolPointer should be used
     *
     * We can restore the symbol
     *  * for symbol which came from Kotlin source it will be restored based on [com.intellij.psi.SmartPsiElementPointer]
     *  * restoring symbols which came from Java source is not supported yet
     *  * for library symbols:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (1)
  4. src/math/cbrt.go

    	// one step newton iteration to 53 bits with error less than 0.667ulps
    	s = t * t // t*t is exact
    	r = x / s
    	w := t + t
    	r = (r - t) / (w + r) // r-s is exact
    	t = t + t*r
    
    	// restore the sign bit
    	if sign {
    		t = -t
    	}
    	return t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

      let summary = "Restore variable tensors";
      let description = [{
        This Op is similar to a combination of RestoreV2 and AssignVariable Op, but
        this Op's execution is asynchronous.
    
        This Op is specific to TFRT + IFRT runtime and is not a stable interface for
        serialization.
    
        This Op will restore the tensors asynchronously. There are N restored tensors
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

            synchronized (lock) {
                // Currently only snapshot the console output listener. Should snapshot all output listeners, and cleanup in restore()
                return new SnapshotImpl(logLevel.get(), console);
            }
        }
    
        @Override
        public void restore(Snapshot state) {
            synchronized (lock) {
                SnapshotImpl snapshot = (SnapshotImpl) state;
                if (snapshot.logLevel != logLevel.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. cni/pkg/plugin/testdata/tproxy.txt.golden

    -A OUTPUT ! -d 127.0.0.1/32 -p tcp -o lo -m owner --uid-owner 1337 -j MARK --set-mark 1338
    -A OUTPUT ! -d 127.0.0.1/32 -p tcp -o lo -m owner --gid-owner 1337 -j MARK --set-mark 1338
    -A OUTPUT -p tcp -m connmark --mark 1337 -j CONNMARK --restore-mark
    -I ISTIO_INBOUND 1 -p tcp -m mark --mark 1337 -j RETURN
    -I ISTIO_INBOUND 2 -p tcp -s 127.0.0.6/32 -i lo -j RETURN
    -I ISTIO_INBOUND 3 -p tcp -i lo -m mark ! --mark 1338 -j RETURN
    COMMIT
    * nat
    -N ISTIO_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 22:54:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/FeatureSpec.java

         * capability that is added by
         * {@link JavaPluginExtension#registerFeature(String, org.gradle.api.Action)}.
         * If you want to keep the default capability and add a new one you need to
         * restore the default capability:
         *
         * <pre>
         * registerFeature("myFeature") {
         *     capability("${project.group}", "${project.name}-my-feature", "${project.version}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/runtime/cgo/asm_ppc64x.s

    nil_fn:
    #endif
    	MOVD	R3, FIXED_FRAME+0(R1)	// fn unsafe.Pointer
    	MOVD	R4, FIXED_FRAME+8(R1)	// a unsafe.Pointer
    	// Skip R5 = n uint32
    	MOVD	R6, FIXED_FRAME+16(R1)	// ctxt uintptr
    	BL	runtime·cgocallback(SB)
    
    	// Restore the old frame, and R2.
    	MOVD	24(R1), R2
    	UNSTACK_AND_RESTORE_GO_TO_HOST_ABI(32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. pkg/registry/core/service/allocator/storage/storage.go

    			if len(existing.ResourceVersion) == 0 {
    				return nil, fmt.Errorf("cannot allocate resources of type %s at this time", e.resource.String())
    			}
    			if existing.ResourceVersion != e.last {
    				if err := e.alloc.Restore(existing.Range, existing.Data); err != nil {
    					return nil, err
    				}
    			}
    			if err := fn(); err != nil {
    				return nil, err
    			}
    			e.last = existing.ResourceVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top