Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for findRef (0.48 sec)

  1. src/cmd/go/internal/modfetch/codehost/git.go

    	info.Origin.Hash = refs["HEAD"]
    
    	return info, nil
    }
    
    // findRef finds some ref name for the given hash,
    // for use when the server requires giving a ref instead of a hash.
    // There may be multiple ref names for a given hash,
    // in which case this returns some name - it doesn't matter which.
    func (r *gitRepo) findRef(ctx context.Context, hash string) (ref string, ok bool) {
    	refs, err := r.loadRefs(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

      private val finder = FastFallbackExchangeFinder(routePlanner, taskRunner)
    
      @AfterEach
      fun tearDown() {
        taskFaker.close()
        routePlanner.close()
      }
    
      @Test
      fun takeConnectedConnection() {
        val plan0 = routePlanner.addPlan()
        plan0.connectState = TLS_CONNECTED
    
        taskRunner.newQueue().execute("connect") {
          val result0 = finder.find()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -				      __uint32_t, __uint32_t, size_t);
    +# ifndef _FORCE_INLINES
    +#  if _STRING_ARCH_unaligned
     __STRING_INLINE char *
     __stpcpy_small (char *__dest,
     		__uint16_t __src0_2, __uint16_t __src4_2,
    @@ -665,43 +375,7 @@ __stpcpy_small (char *__dest,
         }
       return &__u->__c;
     }
    -#   else
    -#    ifndef _FORCE_INLINES
    -#     define __stpcpy_args(src) \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    /* Global type Definitions to be used for boolean operators. */
    #ifndef CU_BOOL
      /** Boolean type for CUnit use. */
      #define CU_BOOL int
    #endif
    
    #ifndef CU_TRUE
      /** Boolean TRUE for CUnit use. */
      #define CU_TRUE 1
    #endif
    
    #ifndef CU_FALSE
      /** Boolean FALSE for CUnit use. */
      #define CU_FALSE 0
    #endif
    
    #ifndef CU_UNREFERENCED_PARAMETER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. docs/de/docs/alternatives.md

    !!! check "Inspirierte **FastAPI**"
        Wege zu finden, eine großartige Performanz zu erzielen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. src/strings/replace.go

    // one string to replace (and that string has more than one byte).
    type singleStringReplacer struct {
    	finder *stringFinder
    	// value is the new string that replaces that pattern when it's found.
    	value string
    }
    
    func makeSingleStringReplacer(pattern string, value string) *singleStringReplacer {
    	return &singleStringReplacer{finder: makeStringFinder(pattern), value: value}
    }
    
    func (r *singleStringReplacer) Replace(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. docs/de/docs/advanced/settings.md

    Hello Wade Wilson from Python
    
    // Die Umgebungsvariable existiert danach nicht mehr
    $ python main.py
    
    Hello World from Python
    ```
    
    </div>
    
    !!! tip "Tipp"
        Weitere Informationen dazu finden Sie unter <a href="https://12factor.net/config" class="external-link" target="_blank">The Twelve-Factor App: Config</a>.
    
    ### Typen und Validierung
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/syscall/mkerrors.sh

    #include <linux/serial.h>
    #include <linux/wait.h>
    #include <linux/icmpv6.h>
    #include <net/route.h>
    #include <termios.h>
    
    #ifndef MSG_FASTOPEN
    #define MSG_FASTOPEN    0x20000000
    #endif
    
    #ifndef PTRACE_GETREGS
    #define PTRACE_GETREGS	0xc
    #endif
    
    #ifndef PTRACE_SETREGS
    #define PTRACE_SETREGS	0xd
    #endif
    '
    
    includes_NetBSD='
    #include <sys/types.h>
    #include <sys/param.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  9. src/runtime/mkpreempt.go

    	for i := 0; i < 8; i++ {
    		lSSE.add("MOVUPS", fmt.Sprintf("X%d", i), 16)
    	}
    
    	p("ADJSP $%d", lSSE.stack)
    	p("NOP SP")
    	l.save()
    	p("#ifndef %s", softfloat)
    	lSSE.save()
    	p("#endif")
    	p("CALL ·asyncPreempt2(SB)")
    	p("#ifndef %s", softfloat)
    	lSSE.restore()
    	p("#endif")
    	l.restore()
    	p("ADJSP $%d", -lSSE.stack)
    
    	p("POPFL")
    	p("RET")
    }
    
    func genAMD64() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/lex/input.go

    		switch in.Stack.Text() {
    		case "else", "endif", "ifdef", "ifndef", "line":
    			// Press on.
    		default:
    			return false
    		}
    	}
    	switch in.Stack.Text() {
    	case "define":
    		in.define()
    	case "else":
    		in.else_()
    	case "endif":
    		in.endif()
    	case "ifdef":
    		in.ifdef(true)
    	case "ifndef":
    		in.ifdef(false)
    	case "include":
    		in.include()
    	case "line":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top