Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 175 for aranes (0.27 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/AbstractPmdPluginVersionIntegrationTest.groovy

        }
    
        static String bracesRuleSetPath() {
            if (versionNumber < VersionNumber.version(5)) {
                "rulesets/braces.xml"
            } else if (versionNumber < VersionNumber.version(6)) {
                "rulesets/java/braces.xml"
            } else if (versionNumber < VersionNumber.version(6, 13)) {
                "category/java/codestyle.xml/IfStmtsMustUseBraces"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/debug/macho/file_test.go

    		t.Fatal(err)
    	}
    
    	if ff.Magic != MagicFat {
    		t.Errorf("OpenFat: got magic number %#x, want %#x", ff.Magic, MagicFat)
    	}
    	if len(ff.Arches) != 2 {
    		t.Errorf("OpenFat: got %d architectures, want 2", len(ff.Arches))
    	}
    
    	for i := range ff.Arches {
    		arch := &ff.Arches[i]
    		ftArch := &fileTests[i]
    
    		if arch.Cpu != ftArch.hdr.Cpu || arch.SubCpu != ftArch.hdr.SubCpu {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/list.go

    package riscv
    
    import (
    	"fmt"
    
    	"cmd/internal/obj"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBaseRISCV, REG_END, RegName)
    	obj.RegisterOpcode(obj.ABaseRISCV, Anames)
    	obj.RegisterOpSuffix("riscv64", opSuffixString)
    }
    
    func RegName(r int) string {
    	switch {
    	case r == 0:
    		return "NONE"
    	case r == REG_G:
    		return "g"
    	case r == REG_SP:
    		return "SP"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 959 bytes
    - Viewed (0)
  4. src/reflect/arena.go

    // Copyright 2022 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 goexperiment.arenas
    
    package reflect
    
    import "arena"
    
    // ArenaNew returns a [Value] representing a pointer to a new zero value for the
    // specified type, allocating storage for it in the provided arena. That is,
    // the returned Value's Type is [PointerTo](typ).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 574 bytes
    - Viewed (0)
  5. common/config/.yamllint.yml

    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    rules:
      braces: disable
      brackets: disable
      colons: enable
      commas: disable
      comments: disable
      comments-indentation: disable
      document-end: disable
      document-start: disable
      empty-lines: disable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 30 23:53:31 UTC 2020
    - 863 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testsanitizers/testdata/arena_fail.go

    // Copyright 2022 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 goexperiment.arenas
    
    package main
    
    import "arena"
    
    func main() {
    	a := arena.NewArena()
    	x := arena.New[[200]byte](a)
    	x[0] = 9
    	a.Free()
    	// Use after free.
    	//
    	// ASAN should detect this deterministically as Free
    	// should poison the arena memory.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 700 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_json_issue35169.txt

    ! go test -json .
    
    	# We should see only JSON output on stdout, no non-JSON.
    	# To simplify the check, we just look for non-curly-braces, since
    	# every JSON entry has them and they're unlikely to occur
    	# in other error messages.
    ! stdout '^[^{]'
    ! stdout '[^}]\n$'
    
    	# Since the only test we requested failed to build, we should
    	# not see any "pass" actions in the JSON stream.
    ! stdout '\{.*"Action":"pass".*\}'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:29:21 UTC 2023
    - 804 bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/TreeRangeSet.java

      }
    
      @LazyInit @CheckForNull private transient Set<Range<C>> asRanges;
      @LazyInit @CheckForNull private transient Set<Range<C>> asDescendingSetOfRanges;
    
      @Override
      public Set<Range<C>> asRanges() {
        Set<Range<C>> result = asRanges;
        return (result == null) ? asRanges = new AsRanges(rangesByLowerBound.values()) : result;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  9. src/runtime/arena.go

    // also allows us to elide clearing the heap bitmap for pointer-free Go values
    // allocated into arenas.
    //
    // Note that arenas are not safe to use concurrently.
    //
    // In summary, there are 2 resources: arenas, and arena chunks. They exist in the
    // following lifecycle:
    //
    // (1) A new arena is created via newArena.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. docs/fr/docs/advanced/index.md

    Et les sections suivantes supposent que vous l'avez lu et que vous en connaissez les idées principales.
    
    ## Cours TestDriven.io
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top