Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for Signals (0.18 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    		prologue.Spadj = int32(stacksize)
    
    		prologue = ctxt.EndUnsafePoint(prologue, newprog, -1)
    
    		// On Linux, in a cgo binary we may get a SIGSETXID signal early on
    		// before the signal stack is set, as glibc doesn't allow us to block
    		// SIGSETXID. So a signal may land on the current stack and clobber
    		// the content below the SP. We store the LR again after the SP is
    		// decremented.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller_test.go

    	})
    	return httptest.NewServer(mux), &fakeEndpointsHandler
    }
    
    // makeBlockingEndpointDeleteTestServer will signal the blockNextAction channel on endpoint "POST" & "DELETE" requests. All
    // block endpoint "DELETE" requestsi will wait on a blockDelete signal to delete endpoint. If controller is nil, a error will
    // be sent in the response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    	podsSynced bool
    
    	// Tracks all running per-pod goroutines - per-pod goroutine will be
    	// processing updates received through its corresponding channel. Sending
    	// a message on this channel will signal the corresponding goroutine to
    	// consume podSyncStatuses[uid].pendingUpdate if set.
    	podUpdates map[types.UID]chan struct{}
    	// Tracks by UID the termination status of a pod - syncing, terminating,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.uplanet.list",
    				"application/vnd.uplanet.list-wbxml",
    				"application/vnd.uplanet.listcmd",
    				"application/vnd.uplanet.listcmd-wbxml",
    				"application/vnd.uplanet.signal",
    				"application/vnd.vcx",
    				"application/vnd.vd-study",
    				"application/vnd.vectorworks",
    				"application/vnd.vidsoft.vidconference",
    				"application/vnd.visio",
    				"application/vnd.visionary",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    				config.StaticPodURLHeader[k] = []string{"<masked>"}
    			}
    			// log the kubelet's config for inspection
    			klog.V(5).InfoS("KubeletConfiguration", "configuration", klog.Format(config))
    
    			// set up signal context for kubelet shutdown
    			ctx := genericapiserver.SetupSignalContext()
    
    			utilfeature.DefaultMutableFeatureGate.AddMetrics()
    			// run the kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    // It may return both valid metricDesiredReplicas and an error,
    // when some metrics still work and HPA should perform scaling based on them.
    // If HPA cannot do anything due to error, it returns -1 in metricDesiredReplicas as a failure signal.
    func (a *HorizontalController) computeReplicasForMetrics(ctx context.Context, hpa *autoscalingv2.HorizontalPodAutoscaler, scale *autoscalingv1.Scale,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

    var libc_issetugid_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_issetugid issetugid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Kill(pid int, signum syscall.Signal) (err error) {
    	_, _, e1 := syscall_syscall(libc_kill_trampoline_addr, uintptr(pid), uintptr(signum), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_kill_trampoline_addr uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go

    var libc_issetugid_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_issetugid issetugid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Kill(pid int, signum syscall.Signal) (err error) {
    	_, _, e1 := syscall_syscall(libc_kill_trampoline_addr, uintptr(pid), uintptr(signum), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_kill_trampoline_addr uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    	assistBytesPerWork := gcController.assistBytesPerWork.Load()
    	gp.gcAssistBytes += 1 + int64(assistBytesPerWork*float64(workDone))
    
    	// If this is the last worker and we ran out of work,
    	// signal a completion point.
    	incnwait := atomic.Xadd(&work.nwait, +1)
    	if incnwait > work.nproc {
    		println("runtime: work.nwait=", incnwait,
    			"work.nproc=", work.nproc)
    		throw("work.nwait > work.nproc")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    var libc_issetugid_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_issetugid issetugid "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Kill(pid int, signum syscall.Signal) (err error) {
    	_, _, e1 := syscall_syscall(libc_kill_trampoline_addr, uintptr(pid), uintptr(signum), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_kill_trampoline_addr uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top