Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for popf (0.03 sec)

  1. src/cmd/vendor/rsc.io/markdown/entity.go

    	"𝔙":                             "\U0001d519",
    	"𝕍":                            "\U0001d54d",
    	"𝒱":                            "\U0001d4b1",
    	"⊪":                          "\u22aa",
    	"Ŵ":                           "\u0174",
    	"⋀":                           "\u22c0",
    	"𝔚":                             "\U0001d51a",
    	"𝕎":                            "\U0001d54e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	LODSB:     "lods",
    	LODSD:     "lods",
    	LODSQ:     "lods",
    	LODSW:     "lods",
    	MOVSD:     "movsl",
    	MOVSD_XMM: "movsd",
    	OUTSD:     "outsl",
    	POPA:      "popaw",
    	POPAD:     "popa",
    	POPF:      "popfw",
    	POPFD:     "popf",
    	PUSHA:     "pushaw",
    	PUSHAD:    "pusha",
    	PUSHF:     "pushfw",
    	PUSHFD:    "pushf",
    	SCASB:     "scas",
    	SCASD:     "scas",
    	SCASQ:     "scas",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  3. deps.xml

    			<param name="file.version" value="1.3.2" />
    		</antcall>
    		<!-- kopf -->
    		<get dest="${target.dir}/kopf.zip">
    			<url url="https://github.com/codelibs/elasticsearch-kopf/archive/${kopf.branch}.zip" />
    		</get>
    		<delete dir="${site.dir}/kopf" />
    		<unzip dest="${site.dir}/kopf" src="${target.dir}/kopf.zip">
    			<patternset>
    				<include name="elasticsearch-kopf-${kopf.branch}/_site/**" />
    			</patternset>
    			<cutdirsmapper dirs="2" />
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:59:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_386.s

    	ADDL	$(12+callbackArgs__size), SP
    
    	// restore registers as required for windows callback
    	POPL	BX
    	POPL	BP
    	POPL	SI
    	POPL	DI
    
    	// remove callback parameters before return (as per Windows spec)
    	POPL	DX
    	ADDL	CX, SP
    	PUSHL	DX
    
    	CLD
    
    	RET
    
    // void tstart(M *newm);
    TEXT tstart<>(SB),NOSPLIT,$8-4
    	MOVL	newm+0(FP), CX		// m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. hack/verify-vendor.sh

      hack/lint-dependencies.sh >&2
    popd > /dev/null 2>&1
    
    if [[ ${ret} -gt 0 ]]; then
      exit ${ret}
    fi
    
    # Ensure we can tidy every repo using only its recorded versions
    for repo in $(kube::util::list_staging_repos); do
      pushd "${_kubetmp}/staging/src/k8s.io/${repo}" >/dev/null 2>&1
        echo "Tidying k8s.io/${repo}..."
        GODEBUG=gocacheverify=1 go mod tidy
      popd >/dev/null 2>&1
    done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/runtime/asm_386.s

    	MOVL	$0x800000, 0(SP)                    // stacksize = 8192KB
    	MOVL	$_rt0_386_lib_go(SB), AX
    	MOVL	AX, 4(SP)                           // fn
    	CALL	runtime·newosproc0(SB)
    
    restore:
    	ADDL	$8, SP
    	POPL	DI
    	POPL	SI
    	POPL	BX
    	POPL	BP
    	RET
    
    // _rt0_386_lib_go initializes the Go runtime.
    // This is started in a separate thread by _rt0_386_lib.
    TEXT _rt0_386_lib_go(SB),NOSPLIT,$8
    	MOVL	_rt0_386_lib_argc<>(SB), AX
    	MOVL	AX, 0(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. bin/build_ztunnel.sh

      chmod +x "$2"
    
      # Make a copy named just "ztunnel" in the same directory (overwrite if necessary).
      echo "Copying $2 to $(dirname "$2")/${3}"
      cp -f "$2" "$(dirname "$2")/${3}"
      popd
    
      # Also copy it to out/$os_arch/ztunnel as that's whats used in the build
      echo "Copying '${2}' to ${TARGET_OUT_LINUX}/ztunnel"
      cp -f "${2}" "${TARGET_OUT_LINUX}/ztunnel"
    }
    
    function maybe_build_ztunnel() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/test/resources/before_script.sh

        echo "Fess is not available."
        cat ${temp_log_file} ./fess-*/logs/*.log
        exit 1
      fi
      sleep 1
    done
    
    pushd /tmp >/dev/null
    git clone https://github.com/codelibs/fess-testdata.git
    popd >/dev/null
    
    cat ${temp_log_file} ./fess-*/logs/*.log
    curl -s "http://localhost:9201/_cat/indices?v"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 863 bytes
    - Viewed (0)
  9. src/runtime/preempt_amd64.s

    	MOVQ 72(SP), R11
    	MOVQ 64(SP), R10
    	MOVQ 56(SP), R9
    	MOVQ 48(SP), R8
    	MOVQ 40(SP), DI
    	MOVQ 32(SP), SI
    	MOVQ 24(SP), BX
    	MOVQ 16(SP), DX
    	MOVQ 8(SP), CX
    	MOVQ 0(SP), AX
    	ADJSP $-368
    	POPFQ
    	POPQ BP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/setup.python.sh

    for f in $(ls | grep python); do
      # set up symlink for devtoolset-10
      rm -f /dt10/usr/include/aarch64-linux-gnu/$f
      ln -s /usr/include/aarch64-linux-gnu/$f /dt10/usr/include/aarch64-linux-gnu/$f
    done
    popd
    
    # Python 3.10 include headers fix:
    # sysconfig.get_path('include') incorrectly points to /usr/local/include/python
    # map /usr/include/python3.10 to /usr/local/include/python3.10
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top