Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for myname (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/authorization/metrics/metrics_test.go

        # TYPE apiserver_authorization_decisions_total counter`
    	metrics := []string{
    		namespace + "_" + subsystem + "_decisions_total",
    	}
    
    	authorizationDecisionsTotal.Reset()
    	RegisterMetrics()
    
    	dummyAuthorizer := &dummyAuthorizer{}
    	a := InstrumentedAuthorizer("mytype", "myname", dummyAuthorizer)
    
    	// allow
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 13:20:59 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/JobLog.java

            setLastUpdated(ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
            setJobStatus(Constants.RUNNING);
            final String myName = ComponentUtil.getFessConfig().getSchedulerTargetName();
            setTarget(StringUtil.isNotBlank(myName) ? myName : Constants.DEFAULT_JOB_TARGET);
        }
    
        public ScheduledJob getScheduledJob() {
            return scheduledJob;
        }
    
        public String getId() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

            scheduledJobService.start(cron);
    
            final String myName = fessConfig.getSchedulerTargetName();
            if (StringUtil.isNotBlank(myName)) {
                ComponentUtil.getComponent(JobLogBhv.class).queryDelete(cb -> {
                    cb.query().setJobStatus_Equal(Constants.RUNNING);
                    cb.query().setTarget_Equal(myName);
                });
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vendormod.txt

    package m
    
    import _ "appengine"
    import _ "appengine/datastore"
    -- go.mod --
    module m
    
    require (
    	a v1.0.0
    	mysite/myname/mypkg v1.0.0
    	w v1.0.0 // indirect
    	x v1.0.0
    	y v1.0.0
    	z v1.0.0
    )
    
    replace (
    	a v1.0.0 => ./a
    	mysite/myname/mypkg v1.0.0 => ./mypkg
    	w v1.0.0 => ./w
    	x v1.0.0 => ./x
    	y v1.0.0 => ./y
    	z v1.0.0 => ./z
    )
    -- mypkg/go.mod --
    module me
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. .idea/copyright/apache.xml

    <component name="CopyrightManager">
      <copyright>
        <option name="allowReplaceRegexp" value="JetBrains" />
        <option name="notice" value="Copyright 2010-&amp;#36;today.year JetBrains s.r.o. and Kotlin Programming Language contributors.&#10;Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file." />
        <option name="myName" value="apache" />
      </copyright>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue May 28 10:08:07 UTC 2019
    - 432 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor.txt

    module m
    
    go 1.13
    
    require (
    	a v1.0.0
    	diamondroot v0.0.0
    	mysite/myname/mypkg v1.0.0
    	w v1.0.0 // indirect
    	x v1.0.0
    	y v1.0.0
    	z v1.0.0
    )
    
    replace (
    	a v1.0.0 => ./a
    	diamondleft => ./diamondleft
    	diamondpoint => ./diamondpoint
    	diamondright => ./diamondright
    	diamondroot => ./diamondroot
    	mysite/myname/mypkg v1.0.0 => ./mypkg
    	w v1.0.0 => ./w
    	x v1.0.0 => ./x
    	y v1.0.0 => ./y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. tests/integration/GKE.md

    ```bash
    gcloud container clusters get-credentials ${CLUSTER_NAME} \
       --zone ${ZONE} --project ${PROJECT_ID}
    ```
    
    ### Grant admin permission
    
    ```bash
    kubectl create clusterrolebinding myname-cluster-admin-binding \
       --clusterrole=cluster-admin \
       --user=$(gcloud config get-value core/account)
    ```
    
    ## Step 3: Set up Istio environment variables
    
    ### Option 1: Build your own images
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/IvyUtilTest.groovy

    class IvyUtilTest extends Specification {
        def "create module revision ID"() {
            when:
            List l = ['myorg', 'myname', 'myrev']
            ModuleRevisionId moduleRevisionId = IvyUtil.createModuleRevisionId(*l)
    
            then:
            l[0] == moduleRevisionId.organisation
            l[1] == moduleRevisionId.name
            l[2] == moduleRevisionId.revision
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/model/ReportNodeTest.groovy

    import spock.lang.Specification
    
    class ReportNodeTest extends Specification {
    
        def "should create a report node with a child"() {
            setup:
            ReportNode reportNode = new ReportNode('myName')
            def child = new ReportNode('child')
            reportNode.append(child)
    
            expect:
            reportNode.children().size() == 1
        }
    
        def "should find the first matching child node"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 02 09:25:11 UTC 2015
    - 1.3K bytes
    - Viewed (0)
  10. pkg/util/strcase/camelcase.go

    func CamelCaseWithSeparator(n string, sep string) string {
    	p := strings.Split(n, sep)
    	for i := 0; i < len(p); i++ {
    		p[i] = CamelCase(p[i])
    	}
    	return strings.Join(p, "")
    }
    
    // CamelCaseToKebabCase converts "MyName" to "my-name"
    func CamelCaseToKebabCase(s string) string {
    	switch s {
    	case "HTTPAPISpec":
    		return "http-api-spec"
    	case "HTTPRoute":
    		return "http-route"
    	case "HTTPAPISpecBinding":
    		return "http-api-spec-binding"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
Back to top