Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for sesame (0.18 sec)

  1. src/testing/benchmark.go

    	// Extra metrics collected by ReportMetric.
    	extra map[string]float64
    }
    
    // StartTimer starts timing a test. This function is called automatically
    // before a benchmark starts, but it can also be used to resume timing after
    // a call to [B.StopTimer].
    func (b *B) StartTimer() {
    	if !b.timerOn {
    		runtime.ReadMemStats(&memStats)
    		b.startAllocs = memStats.Mallocs
    		b.startBytes = memStats.TotalAlloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	})
    
    	if gcMarkDoneFlushed != 0 {
    		// More grey objects were discovered since the
    		// previous termination check, so there may be more
    		// work to do. Keep going. It's possible the
    		// transition condition became true again during the
    		// ragged barrier, so re-check it.
    		semrelease(&worldsema)
    		goto top
    	}
    
    	// There was no global work, no local work, and no Ps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/asm_ppc64x.s

    // 5. Write the desired argument frame size at SP-32
    // 6. Save all machine registers (including flags and floating point registers)
    //    so they can be restored later by the debugger.
    // 7. Set the PC to debugCallV2 and resume execution.
    //
    // If the goroutine is in state _Grunnable, then it's not generally
    // safe to inject a call because it may return out via other runtime
    // operations. Instead, the debugger should unwind the stack to find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/infer.go

    	// parameters we are solving for via unification because they may be the
    	// same in self-recursive calls:
    	//
    	//   func f[P constraint](x P) {
    	//           f(x)
    	//   }
    	//
    	// In this example, without type parameter renaming, the P used in the
    	// instantiation f[P] has the same pointer identity as the P we are trying
    	// to solve for through type inference. This causes problems for type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    			l.SetSymPkg(s, libpath)
    
    			// The decodetype_* functions in decodetype.go need access to
    			// the type data.
    			sname := l.SymName(s)
    			if strings.HasPrefix(sname, "type:") && !strings.HasPrefix(sname, "type:.") {
    				su.SetData(readelfsymboldata(ctxt, f, &elfsym))
    			}
    		}
    
    		if symname != elfsym.Name {
    			l.SetSymExtname(s, elfsym.Name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                    classpath = files('${dependencies.join("', '")}')
                }
            """
        }
    
        @Requires(UnitTestPreconditions.Linux)
        def "can compile after package case-rename"() {
            buildFile << """
                plugins {
                    id("java")
                }
    
                ${mavenCentralRepository()}
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  7. src/go/types/resolver.go

    					check.declarePkgObj(name, obj, d)
    				}
    
    			case varDecl:
    				lhs := make([]*Var, len(d.spec.Names))
    				// If there's exactly one rhs initializer, use
    				// the same declInfo d1 for all lhs variables
    				// so that each lhs variable depends on the same
    				// rhs initializer (n:1 var declaration).
    				var d1 *declInfo
    				if len(d.spec.Values) == 1 {
    					// The lhs elements are only set up after the for loop below,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy.go

    	for k, v := range p.xdsHeaders {
    		ctx = metadata.AppendToOutgoingContext(ctx, k, v)
    	}
    	// We must propagate upstream termination to Envoy. This ensures that we resume the full XDS sequence on new connection
    	return p.handleUpstream(ctx, con, xds)
    }
    
    func (p *XdsProxy) buildUpstreamConn(ctx context.Context) (*grpc.ClientConn, error) {
    	p.optsMutex.RLock()
    	opts := p.dialOptions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

        long toWaitMillis = 3500 - TimeUnit.NANOSECONDS.toMillis(System.nanoTime() - thread.startTime);
        Thread.sleep(toWaitMillis);
        thread.setPriority(Thread.MAX_PRIORITY);
        thread.resume();
        thread.join();
        // It's possible to race and suspend the thread just before the park call actually takes effect,
        // causing the thread to be suspended for 3.5 seconds, and then park itself for 2 seconds after
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  10. src/go/types/infer.go

    	// parameters we are solving for via unification because they may be the
    	// same in self-recursive calls:
    	//
    	//   func f[P constraint](x P) {
    	//           f(x)
    	//   }
    	//
    	// In this example, without type parameter renaming, the P used in the
    	// instantiation f[P] has the same pointer identity as the P we are trying
    	// to solve for through type inference. This causes problems for type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top