Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,455 for Tconstants (0.25 sec)

  1. tests/integration/ambient/main_test.go

    			Subsets: []echo.SubsetConfig{
    				{
    					Replicas: 1,
    					Version:  "v1",
    					Labels:   map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeNone},
    				},
    				{
    					Replicas: 1,
    					Version:  "v2",
    					Labels:   map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeNone},
    				},
    			},
    		})
    
    	_, whErr := t.Clusters().Default().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/healthServer.go

    	"sync/atomic"
    
    	"istio.io/istio/cni/pkg/constants"
    )
    
    // StartHealthServer initializes and starts a web server that exposes liveness and readiness endpoints at port 8000.
    func StartHealthServer() (installReady *atomic.Value, watchReady *atomic.Value) {
    	router := http.NewServeMux()
    	installReady, watchReady = initRouter(router)
    
    	go func() {
    		_ = http.ListenAndServe(":"+constants.ReadinessPort, router)
    	}()
    
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java

                        .prefixLength(fessConfig.getQueryFuzzyPrefixLengthAsInteger())
                        .transpositions(Constants.TRUE.equalsIgnoreCase(fessConfig.getQueryFuzzyTranspositions()));
            }
    
            final String origQuery = term.toString();
            context.addFieldLog(Constants.DEFAULT_FIELD, origQuery);
            context.addHighlightedQuery(origQuery);
            return buildDefaultQueryBuilder(fessConfig, context,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    			Duration: constants.ControlPlaneComponentHealthCheckTimeout,
    		}
    	}
    	if obj.KubeletHealthCheck == nil {
    		obj.KubeletHealthCheck = &metav1.Duration{
    			Duration: constants.KubeletHealthCheckTimeout,
    		}
    	}
    	if obj.KubernetesAPICall == nil {
    		obj.KubernetesAPICall = &metav1.Duration{
    			Duration: constants.KubernetesAPICallTimeout,
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/etcd/etcd.go

    	// Creates an etcd client
    	etcdClient, err := New(
    		endpoints,
    		filepath.Join(certificatesDir, constants.EtcdCACertName),
    		filepath.Join(certificatesDir, constants.EtcdHealthcheckClientCertName),
    		filepath.Join(certificatesDir, constants.EtcdHealthcheckClientKeyName),
    	)
    	if err != nil {
    		return nil, errors.Wrapf(err, "error creating etcd client for %v endpoints", endpoints)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation.go

    	ExistingRules bool
    }
    
    func (v IptablesVersion) CmdToString(cmd constants.IptablesCmd) string {
    	switch cmd {
    	case constants.IPTables:
    		return v.DetectedBinary
    	case constants.IPTablesSave:
    		return v.DetectedSaveBinary
    	case constants.IPTablesRestore:
    		return v.DetectedRestoreBinary
    	default:
    		return ""
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/BUILD

    exports_files([
        "loader.h",
        "testdata/chunked_saved_model/chunked_model/saved_model.cpb",
        "testdata/chunked_saved_model/chunked_model/saved_model.pbtxt",
    ])
    
    cc_library(
        name = "constants",
        hdrs = ["constants.h"],
        deps = ["@com_google_absl//absl/strings"],
    )
    
    cc_library(
        name = "signature_constants",
        hdrs = ["signature_constants.h"],
    )
    
    cc_library(
        name = "tag_constants",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 05:43:44 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                jobHelper.setJobRuntime(null);
            }
        }
    
        protected void process(final LaJobRuntime runtime) {
            if (!runtime.getParameterMap().containsKey(Constants.SCHEDULED_JOB)) {
                logger.warn("{} is empty.", Constants.SCHEDULED_JOB);
                return;
            }
            runtime.stopIfNeeds();
    
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

      return true;
    }
    
    // Checks if the value is a constant and its splat value is equal to x.
    template <typename T>
    bool IsSplatValueEqual(Value value, const T x) {
      T splat_value;
      if (!GetSplatValue(value, splat_value)) return false;
    
      return splat_value == x;
    }
    
    // Checks if two values are constants and their splat values are equal.
    template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/SystemUtil.java

     */
    package org.codelibs.fess.util;
    
    import org.codelibs.fess.Constants;
    
    public class SystemUtil extends org.codelibs.core.lang.SystemUtil {
        private SystemUtil() {
        }
    
        @SuppressWarnings("deprecation")
        public static String getSearchEngineHttpAddress() {
            final String value = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
            if (value != null) {
                return value;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top