Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for babel (0.18 sec)

  1. common/scripts/metallb-native.yaml

                    items:
                      description: A label selector is a label query over a set of resources.
                        The result of matchLabels and matchExpressions are ANDed. An empty
                        label selector matches all objects. A null label selector matches
                        no objects.
                      properties:
                        matchExpressions:
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  2. configure.py

      return int(version_str)
    
    
    def retrieve_bazel_version():
      """Retrieve installed bazel version (or bazelisk).
    
      Returns:
        The bazel version detected.
      """
      bazel_executable = which('bazel')
      if bazel_executable is None:
        bazel_executable = which('bazelisk')
        if bazel_executable is None:
          print('Cannot find bazel. Please install bazel/bazelisk.')
          sys.exit(1)
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm.s

    	B	-5(PC) // JMP -5(PC)   // f9ffffea
    	B	jmp_label_0 // JMP     // 010000ea
    	B	jmp_label_0 // JMP     // 000000ea
    	B	jmp_label_0 // JMP     // ffffffea
    jmp_label_0:
    	ADD	$0, R0, R0
    	BEQ	jmp_label_0 // BEQ 519 // fdffff0a
    	BNE	jmp_label_0 // BNE 519 // fcffff1a
    	BCS	jmp_label_0 // BCS 519 // fbffff2a
    	BCC	jmp_label_0 // BCC 519 // faffff3a
    	BMI	jmp_label_0 // BMI 519 // f9ffff4a
    	BPL	jmp_label_0 // BPL 519 // f8ffff5a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  4. .bazelrc

    build --spawn_strategy=standalone
    build -c opt
    
    # Make Bazel print out all options from rc files.
    build --announce_rc
    
    # TODO(mihaimaruseac): Document this option or remove if no longer needed
    build --define=grpc_no_ares=true
    
    # See https://github.com/bazelbuild/bazel/issues/7362 for information on what
    # --incompatible_remove_legacy_whole_archive flag does.
    # This flag is set to true in Bazel 1.0 and newer versions. We tried to migrate
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  5. tensorflow/BUILD

    # Description:
    # TensorFlow is a computational framework, primarily for use in machine
    # learning applications.
    
    load("@bazel_skylib//lib:selects.bzl", "selects")
    load("@bazel_skylib//rules:common_settings.bzl", "bool_flag", "bool_setting")
    load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
    load(
        "//tensorflow:tensorflow.bzl",
        "VERSION",
        "VERSION_MAJOR",
        "check_deps",
        "if_google",
        "if_oss",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            buf.append(',');
                        } else {
                            first1 = false;
                        }
                        buf.append("{\"label\":");
                        buf.append(escapeJson(labelMap.get(Constants.ITEM_LABEL)));
                        buf.append(", \"value\":");
                        buf.append(escapeJson(labelMap.get(Constants.ITEM_VALUE)));
                        buf.append('}');
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string group = 1;
    
      optional string version = 2;
    
      optional string resource = 3;
    }
    
    // A label selector is a label query over a set of resources. The result of matchLabels and
    // matchExpressions are ANDed. An empty label selector matches all objects. A null
    // label selector matches no objects.
    // +structType=atomic
    message LabelSelector {
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setDefaultLabelValue(final String value) {
            setSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, value);
            propMap.remove(DEFAULT_LABEL_VALUES);
        }
    
        default String getDefaultLabelValue() {
            return getSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, StringUtil.EMPTY);
        }
    
        default void setVirtualHostValue(final String value) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    	// says "We recommend adding an explicit app label and version label to deployments."
    	if !labels.HasCanonicalServiceName(pod.Labels) {
    		fmt.Fprintf(writer, "Suggestion: add required service name label for Istio telemetry. "+
    			"See %s.\n", url.DeploymentRequirements)
    	}
    	if !labels.HasCanonicalServiceRevision(pod.Labels) {
    		fmt.Fprintf(writer, "Suggestion: add required service revision label for Istio telemetry. "+
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    gepicker', this);
    L1191:        },
    L1192:
    L1193:        clickRange: function(e) {
    L1194:            var label = e.target.getAttribute('data-range-key');
    L1195:            this.chosenLabel = label;
    L1196:            if (label == this.locale.customRangeLabel) {
    L1197:                this.showCalendars();
    L1198:            } else {
    L1199:                var dates = this.ranges[label];
    L1200:                this.startDate = dates[0];
    L1201:                this.endDate = dates[1];
    L1202:
    ...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
Back to top