Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 280 for chrono (0.22 sec)

  1. cmd/kubeadm/app/cmd/cmd.go

    		`),
    		SilenceErrors: true,
    		SilenceUsage:  true,
    		PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
    			if rootfsPath != "" {
    				if err := kubeadmutil.Chroot(rootfsPath); err != nil {
    					return err
    				}
    			}
    			return nil
    		},
    	}
    
    	cmds.ResetFlags()
    
    	cmds.AddCommand(newCmdCertsUtility(out))
    	cmds.AddCommand(newCmdCompletion(out, ""))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  2. src/syscall/exec_freebsd_test.go

    	// and remove jails.
    	if os.Getuid() != 0 {
    		t.Skip("kernel prohibits jail system calls in unprivileged process")
    	}
    
    	jid, root := prepareJail(t)
    
    	// Since jail attach does an implicit chroot to the jail's path,
    	// we need the binary there, and it must be statically linked.
    	x := filepath.Join(root, "syscall.test")
    	cmd := exec.Command(testenv.GoToolPath(t), "test", "-c", "-o", x, "syscall")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 20:38:48 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create_test.go

    	tests := []struct {
    		manager   string
    		userAgent string
    		expected  string
    	}{
    		{
    			manager:   "",
    			userAgent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36",
    			expected:  "Mozilla",
    		},
    		{
    			manager:   "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:03:03 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/it/stopwords.txt

    sarai
    sarà
    saremo
    sarete
    saranno
    sarei
    saresti
    sarebbe
    saremmo
    sareste
    sarebbero
    ero
    eri
    era
    eravamo
    eravate
    erano
    fui
    fosti
    fu
    fummo
    foste
    furono
    fossi
    fosse
    fossimo
    fossero
    essendo
    faccio
    fai
    facciamo
    fanno
    faccia
    facciate
    facciano
    farò
    farai
    farà
    faremo
    farete
    faranno
    farei
    faresti
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/JobHelper.java

        public void register(final ScheduledJob scheduledJob) {
            final JobManager jobManager = ComponentUtil.getJobManager();
            jobManager.schedule(cron -> register(cron, scheduledJob));
        }
    
        public void register(final LaCron cron, final ScheduledJob scheduledJob) {
            if (scheduledJob == null) {
                throw new ScheduledJobException("No job.");
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.js

    	});
    
    	if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
    		window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari
    	else
    		window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
    }
    
    /**
     * Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/utils.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package cronjob
    
    import (
    	"fmt"
    	"time"
    
    	"github.com/robfig/cron/v3"
    
    	batchv1 "k8s.io/api/batch/v1"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. LICENSES/vendor/github.com/robfig/cron/v3/LICENSE

    = vendor/github.com/robfig/cron/v3 licensed under: =
    
    Copyright (C) 2012 Rob Figueiredo
    All Rights Reserved.
    
    MIT LICENSE
    
    Permission is hereby granted, free of charge, to any person obtaining a copy of
    this software and associated documentation files (the "Software"), to deal in
    the Software without restriction, including without limitation the rights to
    use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 23:03:03 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. .github/workflows/lock.yml

    name: 'Lock Threads'
    
    on:
      schedule:
        - cron: '0 0 * * *'
      workflow_dispatch:
    
    permissions:
      issues: write
    
    concurrency:
      group: lock
    
    jobs:
      action:
        runs-on: ubuntu-latest
        steps:
          - uses: dessant/lock-threads@v3
            with:
              github-token: ${{ github.token }}
              issue-inactive-days: '365'
              exclude-any-issue-labels: 'do-not-close'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 30 03:27:43 UTC 2022
    - 447 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    h1 {
    	font-size: 2em;
    	margin: 0.67em 0;
    }
    
    /** Address styling not present in IE 8/9, Safari 5, and Chrome. */
    abbr[title] {
    	border-bottom: 1px dotted;
    }
    
    /** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
    b,
    strong {
    	font-weight: bold;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top