Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 363 for revs (0.03 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go

    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    }
    
    // PtraceSetRegs386 sets the registers used by 386 binaries.
    func PtraceSetRegs386(pid int, regs *PtraceRegs386) error {
    	return ptracePtr(PTRACE_SETREGS, pid, 0, unsafe.Pointer(regs))
    }
    
    // PtraceRegsAmd64 is the registers used by amd64 binaries.
    type PtraceRegsAmd64 struct {
    	R15      uint64
    	R14      uint64
    	R13      uint64
    	R12      uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java

      }
    
      @Benchmark
      public int countIn(int reps) {
        int result = 0;
        CharMatcher matcher = this.matcher;
        String teststring = this.teststring;
        for (int i = 0; i < reps; i++) {
          result += matcher.countIn(teststring);
        }
        return result;
      }
    
      @Benchmark
      public int collapseFrom(int reps) {
        int result = 0;
        CharMatcher matcher = this.matcher;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 16 22:49:59 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java

      }
    
      @Benchmark
      public int countIn(int reps) {
        int result = 0;
        CharMatcher matcher = this.matcher;
        String teststring = this.teststring;
        for (int i = 0; i < reps; i++) {
          result += matcher.countIn(teststring);
        }
        return result;
      }
    
      @Benchmark
      public int collapseFrom(int reps) {
        int result = 0;
        CharMatcher matcher = this.matcher;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 16 22:49:59 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  4. src/crypto/tls/cache_test.go

    	}
    
    	if entry, ok := cc.Load(string(p.Bytes)); !ok {
    		t.Fatal("cache does not contain expected entry")
    	} else {
    		if refs := entry.(*cacheEntry).refs.Load(); refs != 2 {
    			t.Fatalf("unexpected number of references: got %d, want 2", refs)
    		}
    	}
    
    	timeoutRefCheck := func(t *testing.T, key string, count int64) {
    		t.Helper()
    		c := time.After(4 * time.Second)
    		for {
    			select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    		if e.ID != vid {
    			continue
    		}
    		if e.regs[0] == r {
    			// Already known and highest priority
    			return
    		}
    		for j := 1; j < len(e.regs); j++ {
    			if e.regs[j] == r {
    				// Move from lower priority to top priority
    				copy(e.regs[1:], e.regs[:j])
    				e.regs[0] = r
    				return
    			}
    		}
    		copy(e.regs[1:], e.regs[:])
    		e.regs[0] = r
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. .github/workflows/build.yml

            uses: mikepenz/action-junit-report@v4
            with:
              report_paths: '**/build/test-results/*/TEST-*.xml'
              check_name: OpenJDK 11 Test Report
    
          - name: Publish Test Results
            uses: EnricoMi/publish-unit-test-result-action@v2
            if: github.repository == 'square/okhttp' && github.ref == 'refs/heads/master'
            with:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

    }
    
    
    private
    class EnvironmentEncoder : ClassEncoder {
    
        private
        val refs = IdentityHashMap<Class<*>, Int>()
    
        override fun WriteContext.encodeClass(type: Class<*>) {
            writeSmallInt(refs.computeIfAbsent(type) { refs.size })
        }
    
        fun getResultingEnvironment(): Map<Int, Any> =
            refs.invert()
    }
    
    
    private
    class EnvironmentDecoder(
        val environment: Map<Int, Any>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/expand_calls.go

    	}
    	regs := "<none>"
    	if c.regValues != nil {
    		regs = ""
    		for i, x := range *c.regValues {
    			if i > 0 {
    				regs = regs + "; "
    			}
    			regs = regs + x.LongString()
    		}
    	}
    
    	// not printing the config because that has not been useful
    	return fmt.Sprintf("RCSR{storeDest=%v, regsLen=%d, nextSlice=%d, regValues=[%s]}", dest, len(c.regs), c.nextSlice, regs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/get_issue53955.txt

    module github.com/golang/issue53955
    
    go 1.18
    -- $WORK/repo/issue53955.go --
    package issue53955
    -- $WORK/repo/extra.go --
    package issue53955
    -- $WORK/.git-refs-1 --
    2cb3d49f8874b9362ed0ddd2a6512e4108bbf6b1 refs/heads/main
    050526ebf5883191e990529eb3cc9345abaf838c refs/tags/v1.0.9
    -- $WORK/m/go.mod --
    module m
    
    go 1.18
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_utils_test.go

    		return fmt.Sprintf("%s-%s-%s", ref.APIVersion, ref.Kind, ref.Name)
    	}
    	refs := map[string]bool{}
    	for i := range originalRefs {
    		refs[key(&originalRefs[i])] = true
    	}
    	for i := range newRefs {
    		k := key(&newRefs[i])
    		if val, found := refs[k]; !found || !val {
    			return true
    		}
    		refs[k] = false
    	}
    	return false
    }
    
    func TestOwnerRefsChanged(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
Back to top