Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 424 for loadOps (0.17 sec)

  1. src/cmd/go/testdata/script/list_find_nodeps.txt

    # Issue #46092
    # go list -find should always return a package with an empty Deps list
    
    # The linker loads implicit dependencies
    go list -find -f {{.Deps}} ./cmd
    stdout '\[\]'
    
    # Cgo translation may add imports of "unsafe", "runtime/cgo" and "syscall"
    go list -find -f {{.Deps}} ./cgo
    stdout '\[\]'
    
    # SWIG adds imports of some standard packages
    go list -find -f {{.Deps}} ./swig
    stdout '\[\]'
    
    -- go.mod --
    module listfind
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 12 14:43:27 UTC 2021
    - 737 bytes
    - Viewed (0)
  2. test/fixedbugs/issue4396a.go

    // Issue 4396. Arrays of bytes are not required to be
    // word aligned. 5g should use MOVB to load the address
    // of s.g[0] for its nil check.
    //
    // This test _may_ fail on arm, but requires the host to 
    // trap unaligned loads. This is generally done with
    //
    // echo "4" > /proc/cpu/alignment
    
    package main
    
    var s = struct {
    	// based on lzw.decoder
    	a, b, c, d, e uint16
    	f             [4096]uint8
    	g             [4096]uint8
    }{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 627 bytes
    - Viewed (0)
  3. src/runtime/debug.go

    func NumCgoCall() int64 {
    	var n = int64(atomic.Load64(&ncgocall))
    	for mp := (*m)(atomic.Loadp(unsafe.Pointer(&allm))); mp != nil; mp = mp.alllink {
    		n += int64(mp.ncgocall)
    	}
    	return n
    }
    
    func totalMutexWaitTimeNanos() int64 {
    	total := sched.totalMutexWaitTime.Load()
    
    	total += sched.totalRuntimeLockWaitTime.Load()
    	for mp := (*m)(atomic.Loadp(unsafe.Pointer(&allm))); mp != nil; mp = mp.alllink {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. cmd/metrics-v3-api.go

    	}
    	for name, value := range httpStats.TotalS3Canceled.APIStats {
    		m.Set(apiRequestsCanceledTotal, float64(value), "name", name, "type", "s3")
    	}
    	return nil
    }
    
    // loadAPIRequestsTTFBMetrics - loads S3 TTFB metrics.
    //
    // This is a `MetricsLoaderFn`.
    func loadAPIRequestsTTFBMetrics(ctx context.Context, m MetricValues, _ *metricsCache) error {
    	renameLabels := map[string]string{"api": "name"}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DeserializeMap.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.serialization;
    
    public interface DeserializeMap {
        /**
         * Loads a serialized Class.
         */
        Class<?> resolveClass(ClassLoaderDetails classLoaderDetails, String className) throws ClassNotFoundException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 877 bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

    import java.lang.reflect.InvocationTargetException;
    import java.lang.reflect.Method;
    
    /**
     * Provides methods to interact with the Java agent shipped with Gradle. Because of the different class loaders, it is hard to query the Agent class directly.
     * <p>
     * The agent class must follow a special protocol to be recognized properly: the class should have a method:
     * <pre>
     *     public static boolean isApplied()
     * </pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/StaticLockingMavenPublisher.java

    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    /**
     * A MavenPublisher that restricts publishing to a single thread per Classloader that loads this class.
     * This is required to prevent concurrent access to the Maven Ant Tasks, which hold static state.
     */
    public class StaticLockingMavenPublisher implements MavenPublisher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/internal/bytealg/equal_ppc64x.s

    	MOVD	$0, R3		// Assume no-match in case BGELR CR6 returns
    	CMP	R5, $32		// Use overlapping VSX loads for len <= 32
    	BLE	check17_32	// Do a pair of overlapping VSR compares
    	CMP	R5, $64
    	BLE	check33_64	// Hybrid check + overlap compare.
    
    setup64:
    	SRD	$6, R5, R6	// number of 64 byte chunks to compare
    	MOVD	R6, CTR
    	MOVD	$16, R14	// index for VSX loads and stores
    	MOVD	$32, R15
    	MOVD	$48, R16
    	ANDCC	$0x3F, R5, R5	// len%64==0?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/loader/ToolingImplementationLoader.java

    import org.gradle.tooling.internal.consumer.Distribution;
    import org.gradle.tooling.internal.consumer.connection.ConsumerConnection;
    import org.gradle.tooling.internal.protocol.InternalBuildProgressListener;
    
    /**
     * Loads the Tooling API implementation classes from the given Gradle distribution and adapts them to the current Tooling API interfaces.
     */
    public interface ToolingImplementationLoader {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_wasm.go

    // See https://github.com/WebAssembly/design/issues/1073
    
    // Export some functions via linkname to assembly in sync/atomic.
    //
    //go:linkname Load
    //go:linkname Loadp
    //go:linkname Load64
    //go:linkname Loadint32
    //go:linkname Loadint64
    //go:linkname Loaduintptr
    //go:linkname LoadAcquintptr
    //go:linkname Xadd
    //go:linkname Xaddint32
    //go:linkname Xaddint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top