Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 752 for dropg (0.06 sec)

  1. src/runtime/debugcall.go

    			// transition anymore.
    			trace.GoPark(traceBlockDebugCall, 1)
    		}
    		casGToWaiting(gp, _Grunning, waitReasonDebugCall)
    		if trace.ok() {
    			traceRelease(trace)
    		}
    		dropg()
    
    		// Directly execute the new goroutine. The debug
    		// protocol will continue on the new goroutine, so
    		// it's important we not just let the scheduler do
    		// this or it may resume a different goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	}
    
    	execute(gp, inheritTime)
    }
    
    // dropg removes the association between m and the current goroutine m->curg (gp for short).
    // Typically a caller sets gp's status away from Grunning and then
    // immediately calls dropg to finish the job. The caller is also responsible
    // for arranging that gp will be restarted using ready at an
    // appropriate time. After calling dropg and arranging for gp to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/drop-invalid.golden

    iptables -t nat -N ISTIO_INBOUND
    iptables -t nat -N ISTIO_REDIRECT
    iptables -t nat -N ISTIO_IN_REDIRECT
    iptables -t nat -N ISTIO_OUTPUT
    iptables -t mangle -A PREROUTING -m conntrack --ctstate INVALID -j DROP
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. releasenotes/notes/drop-headless.yaml

    John Howard <******@****.***> 1708755516 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 164 bytes
    - Viewed (0)
  5. releasenotes/notes/drop-iop.yaml

    John Howard <******@****.***> 1700260866 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 769 bytes
    - Viewed (0)
  6. releasenotes/notes/drop-default-tracing.yaml

    John Howard <******@****.***> 1709830758 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  7. releasenotes/notes/cni-drop-psp.yaml

    John Howard <******@****.***> 1701309685 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 02:01:25 UTC 2023
    - 301 bytes
    - Viewed (0)
  8. releasenotes/notes/drop-telemetry-envoyfilter.yaml

    John Howard <******@****.***> 1702437816 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 03:23:36 UTC 2023
    - 436 bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceErrorHandlingIntegrationTest.groovy

                    mustRunAfter(customTask)
                    outputFile = file('build/outputFile2.bin')
                }
            """.stripIndent()
        }
    
        def "build does not fail if connection drops during store and server dies"() {
            // Drop the connection and stop the server after reading 1024 bytes
            httpBuildCacheServer.addResponder { req, res ->
                if (req.method == "PUT") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/runtime/os_wasm.go

    }
    
    // Called to initialize a new m (including the bootstrap m).
    // Called on the new thread, cannot allocate memory.
    func minit() {
    }
    
    // Called from dropm to undo the effect of an minit.
    func unminit() {
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    func mdestroy(mp *m) {
    }
    
    // wasm has no signals
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top