Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 828 for bghelper (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cluster/gce/gci/configure-helper.sh

      echo -n "${out}" | xxd -r -p | base64 -w 0
    }
    
    # Helper for configuring iptables rules for metadata server.
    #
    # $1 is the command flag (-I or -D).
    # $2 is the firewall action (LOG or REJECT).
    # $3 is the prefix for log output.
    # $4 is "!" to optionally invert the uid range.
    function gce-metadata-fw-helper {
      local -r command="$1"
      local action="$2"
      local -r prefix="$3"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/diag/helper.go

    Xiaopeng Han <******@****.***> 1712046726 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_race_issue26995.txt

    stdout 'testing_test.go:28: interfaceCall'
    
    -- go.mod --
    module 26995-TBHelper-line-number
    
    go 1.21
    -- testing_test.go --
    package testing_test
    
    import "testing"
    
    type TestingT interface {
    	Helper()
    	Log(args ...interface{})
    }
    
    func directCall(t *testing.T) {
    	t.Helper()
    	t.Log("directCall")
    }
    
    func interfaceTBCall(t testing.TB) {
    	t.Helper()
    	t.Log("interfaceTBCall")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 17:19:18 UTC 2024
    - 662 bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	}
    
    	wasUntolerated := true
    	if originalNode != nil {
    		_, wasUntolerated = v1helper.FindMatchingUntoleratedTaint(originalNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    	}
    
    	_, isUntolerated := v1helper.FindMatchingUntoleratedTaint(modifiedNode.Spec.Taints, pod.Spec.Tolerations, helper.DoNotScheduleTaintsFilterFunc())
    
    	if wasUntolerated && !isUntolerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    import (
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	v1helper "k8s.io/component-helpers/scheduling/corev1"
    	"k8s.io/component-helpers/scheduling/corev1/nodeaffinity"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    	"k8s.io/utils/ptr"
    )
    
    type topologyPair struct {
    	key   string
    	value string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

    import org.slf4j.LoggerFactory;
    
    /**
     * @author shinsuke
     *
     */
    public class LogHelperImpl implements LogHelper {
    
        private static final Logger logger = LoggerFactory.getLogger(LogHelperImpl.class);
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.helper.LogHelper#log(org.codelibs.fess.crawler.log.LogType,
         * java.lang.Object)
         */
        @Override
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.3K bytes
    - Viewed (1)
Back to top