Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,471 for wads (0.08 sec)

  1. src/internal/cpu/cpu_arm64.go

    		{Name: "crc32", Feature: &ARM64.HasCRC32},
    		{Name: "atomics", Feature: &ARM64.HasATOMICS},
    		{Name: "cpuid", Feature: &ARM64.HasCPUID},
    		{Name: "isNeoverse", Feature: &ARM64.IsNeoverse},
    	}
    
    	// arm64 uses different ways to detect CPU features at runtime depending on the operating system.
    	osInit()
    }
    
    func getisar0() uint64
    
    func getMIDR() uint64
    
    func extractBits(data uint64, start, end uint) uint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 25 14:08:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/settings.md

        // You could create an env var MY_NAME with
        $ export MY_NAME="Wade Wilson"
    
        // Then you could use it with other programs, like
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        // Create an env var MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Use it with other programs, like
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/README.md

    Use of GOEXPERIMENT=boringcrypto outside Google is _unsupported_.
    This mode is not part of the [Go 1 compatibility rules](https://go.dev/doc/go1compat),
    and it may change incompatibly or break in other ways at any time.
    
    To be clear, we are not making any statements or representations about
    the suitability of this code in relation to the FIPS 140 standard.
    Interested users will have to evaluate for themselves whether the code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/sort/example_interface_test.go

    func Example() {
    	people := []Person{
    		{"Bob", 31},
    		{"John", 42},
    		{"Michael", 17},
    		{"Jenny", 26},
    	}
    
    	fmt.Println(people)
    	// There are two ways to sort a slice. First, one can define
    	// a set of methods for the slice type, as with ByAge, and
    	// call sort.Sort. In this first example we use that technique.
    	sort.Sort(ByAge(people))
    	fmt.Println(people)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 24 14:40:37 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  5. fastapi/security/open_id_connect_url.py

                    This is useful when you want to have optional authentication.
    
                    It is also useful when you want to have authentication that can be
                    provided in one of multiple optional ways (for example, with OpenID
                    Connect or in a cookie).
                    """
                ),
            ] = True,
        ):
            self.model = OpenIdConnectModel(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemReporter.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Defines different ways to report problems.
     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemReporter {
    
        /**
         * Configures and reports a new problem.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 10:28:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                contextualLabel == 'Additional action of task \':customTask\' was loaded with an unknown classloader (class \'CustomTask_Decorated\').'
                details == 'Gradle cannot track the implementation for classes loaded with an unknown classloader.'
                solutions == [ 'Load your class by using one of Gradle\'s built-in ways.' ]
                additionalData.asMap == [
                    'typeName' : 'CustomTask'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.caliper.Benchmark;
    import com.google.caliper.Param;
    import java.util.List;
    
    /**
     * Benchmark for various ways to create an {@code ImmutableList}.
     *
     * @author Louis Wasserman
     */
    public class ImmutableListCreationBenchmark {
    
      @Param({"10", "1000", "1000000"})
      int size;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue15329.go

    //
    // However, that means autotmp_1 is the only reference to the int
    // variable containing the value "1", but it's not a pointer type,
    // so it was at risk of being garbage collected by the evaluation of
    // testMeth(2).Pointer(), even though package unsafe's documentation
    // says the original code was allowed.
    //
    // Now cmd/compile rewrites it to
    //
    //     var autotmp_1 unsafe.Pointer = unsafe.Pointer(testMeth(1).Pointer())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 18 14:01:22 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/UnknownImplementationSnapshot.java

        public enum UnknownReason {
            UNKNOWN_CLASSLOADER(
                "was loaded with an unknown classloader (class '%s').",
                "Gradle cannot track the implementation for classes loaded with an unknown classloader.",
                "Load your class by using one of Gradle's built-in ways."
            ),
            UNTRACKED_LAMBDA(
                "was implemented by the Java lambda '%s'.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top