Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,385 for bghelper (0.73 sec)

  1. src/cmd/dist/util.go

    var (
    	bgwork = make(chan func(), 1e5)
    
    	bghelpers sync.WaitGroup
    
    	dieOnce sync.Once // guards close of dying
    	dying   = make(chan struct{})
    )
    
    func bginit() {
    	bghelpers.Add(maxbg)
    	for i := 0; i < maxbg; i++ {
    		go bghelper()
    	}
    }
    
    func bghelper() {
    	defer bghelpers.Done()
    	for {
    		select {
    		case <-dying:
    			return
    		case w := <-bgwork:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/LogHelper.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.helper;
    
    import org.codelibs.fess.crawler.log.LogType;
    
    /**
     * @author shinsuke
     *
     */
    public interface LogHelper {
    
        void log(LogType key, Object... objs);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 818 bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    func (m *Helper) WithFieldValidation(validationDirective string) *Helper {
    	m.FieldValidation = validationDirective
    	return m
    }
    
    // Subresource sets the helper to access (<resource>/[ns/<namespace>/]<name>/<subresource>)
    func (m *Helper) WithSubresource(subresource string) *Helper {
    	m.Subresource = subresource
    	return m
    }
    
    func (m *Helper) Get(namespace, name string) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/kotlin/shared/src/main/java/org/gradle/sample/shared/Helper.java

    package org.gradle.sample.shared;
    
    public class Helper {
        public static String prettyPrint(String text) {
           return "*** " + text + " ***";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 156 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/kotlin/shared/src/main/java/org/gradle/sample/shared/Helper.java

    package org.gradle.sample.shared;
    
    public class Helper {
        public static String prettyPrint(String text) {
           return "*** " + text + " ***";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156 bytes
    - Viewed (0)
  6. src/text/template/helper.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Helper functions to make constructing templates easier.
    
    package template
    
    import (
    	"fmt"
    	"io/fs"
    	"os"
    	"path"
    	"path/filepath"
    )
    
    // Functions and methods to parse templates.
    
    // Must is a helper that wraps a call to a function returning ([*Template], error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/shared/src/main/java/org/gradle/sample/shared/Helper.java

    package org.gradle.sample.shared;
    
    public class Helper {
        public static String prettyPrint(String text) {
           return "*** " + text + " ***";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 156 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/groovy/shared/src/main/java/org/gradle/sample/shared/Helper.java

    package org.gradle.sample.shared;
    
    public class Helper {
        public static String prettyPrint(String text) {
           return "*** " + text + " ***";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 156 bytes
    - Viewed (0)
  9. cluster/gce/gci/helper.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A library of helper functions and constant for GCI distro
    
    # Creates the GCI specific metadata files if they do not exit.
    # Assumed var
    #   KUBE_TEMP
    function ensure-gci-metadata-files {
      if [[ ! -f "${KUBE_TEMP}/gci-update.txt" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 919 bytes
    - Viewed (0)
  10. cluster/gce/gci/node-helper.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A library of helper functions and constant for GCI distro
    source "${KUBE_ROOT}/cluster/gce/gci/helper.sh"
    
    # shellcheck disable=SC2120
    function get-node-instance-metadata-from-file {
      local kube_env=${1:-node-kube-env} # optional
      local metadata=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top