Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for touchMem (0.25 sec)

  1. src/database/sql/fakedb_test.go

    	line int64
    
    	// closeErr is returned when rowsCursor.Close
    	closeErr error
    }
    
    func (rc *rowsCursor) touchMem() {
    	rc.parentMem.touchMem()
    	rc.line++
    }
    
    func (rc *rowsCursor) Close() error {
    	rc.touchMem()
    	rc.parentMem.touchMem()
    	rc.closed = true
    	return rc.closeErr
    }
    
    func (rc *rowsCursor) Columns() []string {
    	return rc.cols[rc.posSet]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

          if (t == null) return;
          if (e.touches.length != 1) {
            setMode(IDLE);
            return;
          }
          panMove(t.clientX, t.clientY);
          e.preventDefault();
        } else if (mode == TOUCHZOOM) {
          // Get two touches; new gap; rescale to ratio.
          const t1 = findTouch(e.touches, touchid);
          const t2 = findTouch(e.touches, touchid2);
          if (t1 == null || t2 == null) return;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. pkg/wasm/cache.go

    	defer c.mux.Unlock()
    	needChecksumUpdate := c.updateChecksum(key)
    
    	// Check if the module has already been added. If so, avoid writing the file again.
    	if ce, ok := c.modules[key.moduleKey]; ok {
    		// Update last touched time.
    		ce.last = time.Now()
    		if needChecksumUpdate {
    			ce.referencingURLs.Insert(key.downloadURL)
    		}
    		return ce, nil
    	}
    
    	modulePath, err := getModulePath(c.dir, key.moduleKey)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. .teamcity/mvnw

    # For Cygwin, ensure paths are in UNIX format before anything is touched
    if $cygwin ; then
      [ -n "$M2_HOME" ] &&
        M2_HOME=`cygpath --unix "$M2_HOME"`
      [ -n "$JAVA_HOME" ] &&
        JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
      [ -n "$CLASSPATH" ] &&
        CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
    fi
    
    # For Mingw, ensure paths are in UNIX format before anything is touched
    if $mingw ; then
      [ -n "$M2_HOME" ] &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  5. src/encoding/json/bench_test.go

    	Username string    `json:"username"`
    }
    
    type codeNode struct {
    	Name     string      `json:"name"`
    	Kids     []*codeNode `json:"kids"`
    	CLWeight float64     `json:"cl_weight"`
    	Touches  int         `json:"touches"`
    	MinT     int64       `json:"min_t"`
    	MaxT     int64       `json:"max_t"`
    	MeanT    int64       `json:"mean_t"`
    }
    
    var codeJSON []byte
    var codeStruct codeResponse
    
    func codeInit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. mvnw

      fi
    fi
    
    # For Cygwin, ensure paths are in UNIX format before anything is touched
    if $cygwin ; then
      [ -n "$JAVA_HOME" ] &&
        JAVA_HOME=$(cygpath --unix "$JAVA_HOME")
      [ -n "$CLASSPATH" ] &&
        CLASSPATH=$(cygpath --path --unix "$CLASSPATH")
    fi
    
    # For Mingw, ensure paths are in UNIX format before anything is touched
    if $mingw ; then
      [ -n "$JAVA_HOME" ] && [ -d "$JAVA_HOME" ] &&
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	// REST API operations return like list use the RV of etcd, but the storage cacher's reflector's list
    	// can get a different RV because etcd can be touched in between the initial list operation (if that's what you're doing first)
    	// and the storage cache reflector starting.
    	// Later, you can issue a watch with the REST apis list.RV and end up earlier than the storage cacher.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  8. src/net/http/cgi/host.go

    	}
    
    	if statusCode == 0 {
    		statusCode = http.StatusOK
    	}
    
    	// Copy headers to rw's headers, after we've decided not to
    	// go into handleInternalRedirect, which won't want its rw
    	// headers to have been touched.
    	for k, vv := range headers {
    		for _, v := range vv {
    			rw.Header().Add(k, v)
    		}
    	}
    
    	rw.WriteHeader(statusCode)
    
    	_, err = io.Copy(rw, linebody)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent_test.go

    		})
    		sds := a.Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    
    		// Ensure we output the certs
    		checkCertsWritten(t, dir)
    
    		// The provisioning certificates should not be touched
    		go sds[security.WorkloadKeyCertResourceName].DrainResponses()
    		expectFileChanged(t, filepath.Join(dir, "cert-chain.pem"), filepath.Join(dir, "key.pem"))
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

        @Test
        @UnsupportedWithConfigurationCache(because = "test rely on configuration phase output")
        fun `avoids buildscript recompilation when jar that can not be used for compile avoidance initially on buildsript classpath is touched`() {
            val (className, jarPath) = buildKotlinJarForBuildScriptClasspath(
                """
                inline fun foo() {
                    val sum: (Int, Int) -> Int = { x, y -> x + y }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top