Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for makeTitle (0.22 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/cases.go

    }
    
    // Title returns a Caser for language-specific title casing. It uses an
    // approximation of the default Unicode Word Break algorithm.
    func Title(t language.Tag, opts ...Option) Caser {
    	return Caser{makeTitle(t, getOpts(opts...))}
    }
    
    // Fold returns a Caser that implements Unicode case folding. The returned Caser
    // is stateless and safe to use concurrently by multiple goroutines.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    		}
    		return undLower
    	}
    	if o.ignoreFinalSigma {
    		return &simpleCaser{f: f, span: isLower}
    	}
    	return &lowerCaser{
    		first:   f,
    		midWord: finalSigma(f),
    	}
    }
    
    func makeTitle(t language.Tag, o options) transform.SpanningTransformer {
    	_, i, _ := matcher.Match(t)
    	x := &titleInfos[i]
    	lower := x.lower
    	if o.noLower {
    		lower = (*context).copy
    	} else if !o.ignoreFinalSigma {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. Makefile

    export BUILD_WITH_CONTAINER ?= 0
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    
    # An export free of arguments in a Makefile places all variables in the Makefile into the
    # environment. This is needed to allow overrides from Makefile.overrides.mk.
    export
    
    RUN = ./common/scripts/run.sh
    
    MAKE_DOCKER = $(RUN) make --no-print-directory -e -f Makefile.core.mk
    
    %:
    	@$(MAKE_DOCKER) $@
    
    default:
    	@$(MAKE_DOCKER)
    
    shell:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. Makefile

    build/root/Makefile...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 22:53:54 UTC 2017
    - 19 bytes
    - Viewed (0)
  5. cluster/addons/dns/coredns/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Makefile for the kubedns underscore templates to Salt/Pillar and other formats.
    
    # If you update the *.base templates, please run this Makefile before pushing.
    #
    # Usage:
    #    make
    
    all: transform
    
    # .base -> .in pattern rule
    %.in: %.base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 29 15:52:57 UTC 2018
    - 1K bytes
    - Viewed (0)
  6. cluster/addons/dns/kube-dns/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Makefile for the kubedns underscore templates to Salt/Pillar and other formats.
    
    # If you update the *.base templates, please run this Makefile before pushing.
    #
    # Usage:
    #    make
    
    all: transform
    
    # .base -> .in pattern rule
    %.in: %.base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 29 15:52:57 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. cluster/images/kubemark/Makefile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # build Kubemark image from currently built binaries containing both 'real' master and Hollow Node.
    # This makefile assumes that the kubemark binary is present in this directory.
    
    # Allow the caller to override this.  Beware make's precedence. This:
    #   REGISTRY=$VAR make
    # .. is not the same as:
    #   make REGISTRY=$VAR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 27 13:57:53 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  8. build/root/Makefile

    # limitations under the License.
    
    DBG_MAKEFILE ?=
    ifeq ($(DBG_MAKEFILE),1)
        $(warning ***** starting Makefile for goal(s) "$(MAKECMDGOALS)")
        $(warning ***** $(shell date))
    else
        # If we're not debugging the Makefile, don't echo recipes.
        MAKEFLAGS += -s
    endif
    
    
    # Old-skool build tools.
    #
    # Commonly used targets (see each target for more information):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. Makefile

    all: build
    
    checks: ## check dependencies
    	@echo "Checking dependencies"
    	@(env bash $(PWD)/buildscripts/checkdeps.sh)
    
    help: ## print this help
    	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'
    
    getdeps: ## fetch necessary dependencies
    	@mkdir -p ${GOPATH}/bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. Makefile.overrides.mk

    export COMMONFILES_POSTPROCESS = tools/commonfiles-postprocess.sh
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    # create phony targets for the top-level items in the repo
    PHONYS := $(shell ls | grep -v Makefile)
    .PHONY: $(PHONYS)
    $(PHONYS):
    	@$(MAKE_DOCKER) $@
    endif
    
    # istioctl-install builds then installs istioctl into $GOPATH/BIN
    # Used for debugging istioctl during dev work
    .PHONY: istioctl-install
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 17:29:39 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top