Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 371 for unusual (0.15 sec)

  1. doc/asm.html

    <!--{
    	"Title": "A Quick Guide to Go's Assembler",
    	"Path":  "/doc/asm"
    }-->
    
    <h2 id="introduction">A Quick Guide to Go's Assembler</h2>
    
    <p>
    This document is a quick outline of the unusual form of assembly language used by the <code>gc</code> Go compiler.
    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  2. src/runtime/runtime2.go

    //go:nowritebarrier
    func setMNoWB(mp **m, new *m) {
    	(*muintptr)(unsafe.Pointer(mp)).set(new)
    }
    
    type gobuf struct {
    	// The offsets of sp, pc, and g are known to (hard-coded in) libmach.
    	//
    	// ctxt is unusual with respect to GC: it may be a
    	// heap-allocated funcval, so GC needs to track it, but it
    	// needs to be set and cleared from assembly, where it's
    	// difficult to have write barriers. However, ctxt is really a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

      static int hashCodeImpl(Set<?> s) {
        int hashCode = 0;
        for (Object o : s) {
          hashCode += o != null ? o.hashCode() : 0;
    
          hashCode = ~~hashCode;
          // Needed to deal with unusual integer overflow in GWT.
        }
        return hashCode;
      }
    
      /** An implementation for {@link Set#equals(Object)}. */
      static boolean equalsImpl(Set<?> s, @CheckForNull Object object) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /* MNG-3944*/
        @Test
        void testInterpolationOfBasedirInPomWithUnusualName() throws Exception {
            PomTestWrapper pom = buildPom("basedir-interpolation/pom-with-unusual-name.xml");
            assertEquals(pom.getBasedir(), new File(pom.getValue("properties/prop0").toString()));
            assertEquals(pom.getBasedir(), new File(pom.getValue("properties/prop1").toString()));
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Sets.java

      static int hashCodeImpl(Set<?> s) {
        int hashCode = 0;
        for (Object o : s) {
          hashCode += o != null ? o.hashCode() : 0;
    
          hashCode = ~~hashCode;
          // Needed to deal with unusual integer overflow in GWT.
        }
        return hashCode;
      }
    
      /** An implementation for {@link Set#equals(Object)}. */
      static boolean equalsImpl(Set<?> s, @CheckForNull Object object) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			}`,
    			wantErr: `oidc: could not expand distributed claims: jwt returned by distributed claim endpoint "{{.URL}}/groups" did not contain claim: groups`,
    		},
    		{
    			name: "groups-distributed-unusual-name",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "{{.URL}}",
    						Audiences: []string{"my-client"},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. src/testing/testing.go

    		_, err := os.Stat(c.tempDir)
    		nonExistent = os.IsNotExist(err)
    		if err != nil && !nonExistent {
    			c.Fatalf("TempDir: %v", err)
    		}
    	}
    
    	if nonExistent {
    		c.Helper()
    
    		// Drop unusual characters (such as path separators or
    		// characters interacting with globs) from the directory name to
    		// avoid surprising os.MkdirTemp behavior.
    		mapper := func(r rune) rune {
    			if r < utf8.RuneSelf {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Instead, use the TEST or TEST_F macro.
      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    
      // Deletes self.  We deliberately pick an unusual name for this
      // internal method to avoid clashing with names used in user TESTs.
      void DeleteSelf_() { delete this; }
    
      // Uses a GTestFlagSaver to save and restore all Google Test flags.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Instead, use the TEST or TEST_F macro.
      virtual void TestBody() = 0;
    
      // Sets up, executes, and tears down the test.
      void Run();
    
      // Deletes self.  We deliberately pick an unusual name for this
      // internal method to avoid clashing with names used in user TESTs.
      void DeleteSelf_() { delete this; }
    
      // Uses a GTestFlagSaver to save and restore all Google Test flags.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    		// This indicates a user requested -linkmode=external.
    		// The startup code uses an import of runtime/cgo to decide
    		// whether to initialize the TLS.  So give it one. This could
    		// be handled differently but it's an unusual case.
    		if lib := loadinternal(ctxt, "runtime/cgo"); lib != nil && lib.Shlib == "" {
    			if ctxt.BuildMode == BuildModeShared || ctxt.linkShared {
    				Exitf("cannot implicitly include runtime/cgo in a shared library")
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top