Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for Sall (0.32 sec)

  1. .github/workflows/maven_build_itself.yml

    # KIND, either express or implied.  See the License for the
    # specific language governing permissions and limitations
    # under the License.
    
    name: Can Maven build itself
    
    on: [push, pull_request]
    
    # clear all permissions for GITHUB_TOKEN
    permissions: {}
    
    jobs:
      build:
    
        # execute on any push or pull request from forked repo
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. .github/workflows/scorecard.yml

      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained
      schedule:
        - cron: '45 9 * * 0'
      push:
        branches: [ "master" ]
    
    # Declare default permissions as read only.
    permissions: read-all
    
    jobs:
      analysis:
        name: Scorecard analysis
        runs-on: ubuntu-latest
        permissions:
          # Needed to upload the results to code-scanning dashboard.
          security-events: write
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 04 17:53:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/crypto/md5/md5block_arm.s

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    //
    // ARM version of md5block.go
    
    //go:build !purego
    
    #include "textflag.h"
    
    // Register definitions
    #define Rtable	R0	// Pointer to MD5 constants table
    #define Rdata	R1	// Pointer to data to hash
    #define Ra	R2	// MD5 accumulator
    #define Rb	R3	// MD5 accumulator
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                <la:option value="DEBUG">DEBUG</la:option>
                                                <la:option value="TRACE">TRACE</la:option>
                                                <la:option value="ALL">ALL</la:option>
                                            </la:select>
                                        </div>
                                    </div>
                                        <%-- Suggest --%>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  5. src/cmd/internal/notsha256/sha256block_386.s

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    // SHA256 block routine. See sha256block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    //
    // Wt = Mt; for 0 <= t <= 15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. src/crypto/sha512/sha512block_riscv64.s

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // SHA512 block routine. See sha512block.go for Go equivalent.
    //
    // The algorithm is detailed in FIPS 180-4:
    //
    //  https://csrc.nist.gov/publications/fips/fips180-4/fips-180-4.pdf
    //
    // Wt = Mt; for 0 <= t <= 15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512block_ppc64x.s

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Based on CRYPTOGAMS code with the following comment:
    // # ====================================================================
    // # Written by Andy Polyakov <******@****.***> for the OpenSSL
    // # project. The module is, however, dual licensed under OpenSSL and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. doap_Maven.rdf

    management and comprehension tool. Maven is a project development management and comprehension tool. Based on the concept of a project object model: builds, dependency management, documentation creation, site publication, and distribution publication are all controlled from the declarative file. Maven can be extended by plugins to utilise a number of other development tools for reporting or the build process. https://issues.apache.org/jira/browse/MNG https://maven.apache.org/mailing-lists.html https://...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 01 11:47:44 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/testdata/stackcheck/main.s

    	CALL ·chain0(SB)
    	CALL ·chain1(SB)
    	CALL ·chain2(SB)
    	RET
    TEXT ·chain0(SB),NOSPLIT,$32-0
    	CALL ·chainEnd(SB)
    	RET
    TEXT ·chain1(SB),NOSPLIT,$48-0 // Doesn't go over
    	RET
    TEXT ·chain2(SB),NOSPLIT,$64-0
    	CALL ·chainEnd(SB)
    	RET
    TEXT ·chainEnd(SB),NOSPLIT,$1000-0 // Should be reported twice
    	RET
    
    // Test reporting of rootless recursion
    TEXT ·startRec(SB),NOSPLIT|NOFRAME,$0-0
    	CALL ·startRec0(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 21:35:26 UTC 2023
    - 950 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_386.s

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gc
    
    #include "textflag.h"
    
    //
    // System calls for 386, Linux
    //
    
    // See ../runtime/sys_linux_386.s for the reason why we always use int 0x80
    // instead of the glibc-specific "CALL 0x10(GS)".
    #define INVOKE_SYSCALL	INT	$0x80
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top