Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for callstatx (0.37 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

                        @Override
                        public Object callOriginal() throws Throwable {
                            return DecoratingCallSite.super.callStatic(receiver, args);
                        }
                    }, callSiteOwnerClassName());
                }
                return super.callStatic(receiver, args);
            }
    
            @Override
            public Object callConstructor(Object receiver, Object[] args) throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    		Short:  fmt.Sprintf("long description for %s ...", name),
    		Phases: phases,
    		Run:    runBuilder(name),
    		RunIf:  runIf,
    	}
    }
    
    var callstack []string
    
    func runBuilder(name string) func(data RunData) error {
    	return func(data RunData) error {
    		callstack = append(callstack, name)
    		return nil
    	}
    }
    
    func runConditionTrue(data RunData) (bool, error) {
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        timeout.enter()
        callStart()
        try {
          client.dispatcher.executed(this)
          return getResponseWithInterceptorChain()
        } finally {
          client.dispatcher.finished(this)
        }
      }
    
      override fun enqueue(responseCallback: Callback) {
        check(executed.compareAndSet(false, true)) { "Already Executed" }
    
        callStart()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/DuplexTest.kt

    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"tagroot": helpText(
    		"Adds pseudo stack frames for labels key/value pairs at the callstack root.",
    		"A comma-separated list of label keys.",
    		"The first key creates frames at the new root."),
    	"tagleaf": helpText(
    		"Adds pseudo stack frames for labels key/value pairs at the callstack leaf.",
    		"A comma-separated list of label keys.",
    		"The last key creates frames at the new leaf."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

        client.newCall(request).execute().use { response ->
          assertEquals(200, response.code)
        }
    
        assertEquals(
          listOf(
            "CallStart", "ProxySelectStart", "ProxySelectEnd", "DnsStart", "DnsEnd",
            "ConnectStart", "SecureConnectStart", "SecureConnectEnd", "ConnectEnd",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. tensorflow/c/eager/tape.h

          new GradientTape<Gradient, BackwardFunction, TapeTensor>(false));
      AccumulatorCallState& call_state = call_state_.top();
      call_state.backward_tape = tape.get();
      auto pop_backward_tape =
          gtl::MakeCleanup([&call_state] { call_state.backward_tape = nullptr; });
      std::vector<Gradient*> forwardprop_aids;
      std::vector<int64_t> sources;
      std::unordered_set<int64_t> sources_set;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb_test.go

    }
    `
    
    // TestGdbInfCallstack tests that gdb can unwind the callstack of cgo programs
    // on arm64 platforms without endless frames of function 'crossfunc1'.
    // https://golang.org/issue/37238
    func TestGdbInfCallstack(t *testing.T) {
    	checkGdbEnvironment(t)
    
    	testenv.MustHaveCGO(t)
    	if runtime.GOARCH != "arm64" {
    		t.Skip("skipping infinite callstack test on non-arm64 arches")
    	}
    
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/rangefunc/rewrite.go

    	f(func() {
    		runtime.deferprocat(func() { print("A") }, #defers)
    	})
    
    For this rewriting phase, we insert the explicit initialization of
    #defers and then attach the #defers variable to the CallStmt
    representing the defer. That variable will be propagated to the
    backend and will cause the backend to compile the defer using
    deferprocat instead of an ordinary deferproc.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		{name: "MOVFD", argLength: 1, reg: fp11, asm: "MOVFD"},     // float32 -> float64
    		{name: "MOVDF", argLength: 1, reg: fp11, asm: "MOVDF"},     // float64 -> float32
    
    		// function calls
    		{name: "CALLstatic", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", clobberFlags: true, call: true},                                               // call static function aux.(*obj.LSym).  arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top