Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for absDate (0.22 sec)

  1. src/runtime/time.go

    // Timer accesses are protected by the lock t.mu, with a snapshot of
    // t's state bits published in t.astate to enable certain fast paths to make
    // decisions about a timer without acquiring the lock.
    type timer struct {
    	// mu protects reads and writes to all fields, with exceptions noted below.
    	mu mutex
    
    	astate  atomic.Uint8 // atomic copy of state bits at last unlock
    	state   uint8        // state bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/it/stopwords.txt

    quante
    quello
    quelli
    quella
    quelle
    questo
    questi
    questa
    queste
    si
    tutto
    tutti
    a
    c
    e
    i
    l
    o
    ho
    hai
    ha
    abbiamo
    avete
    hanno
    abbia
    abbiate
    abbiano
    avrò
    avrai
    avrà
    avremo
    avrete
    avranno
    avrei
    avresti
    avrebbe
    avremmo
    avreste
    avrebbero
    avevo
    avevi
    aveva
    avevamo
    avevate
    avevano
    ebbi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/net/http/cgi/host_test.go

    }
    
    func TestCGIBasicGetAbsPath(t *testing.T) {
    	absPath, err := filepath.Abs(os.Args[0])
    	if err != nil {
    		t.Fatal(err)
    	}
    	testenv.MustHaveExec(t)
    	h := &Handler{
    		Path: absPath,
    		Root: "/test.cgi",
    	}
    	expectedMap := map[string]string{
    		"env-REQUEST_URI":     "/test.cgi?foo=bar&a=b",
    		"env-SCRIPT_FILENAME": absPath,
    		"env-SCRIPT_NAME":     "/test.cgi",
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelRegistryHelperExtension.java

     */
    public class ModelRegistryHelperExtension {
        // ModelRegistry methods
    
        public static MutableModelNode atState(DefaultModelRegistry modelRegistry, String path, ModelNode.State state) {
            return (MutableModelNode) modelRegistry.atState(ModelPath.path(path), state);
        }
    
        public static MutableModelNode atStateOrLater(ModelRegistry modelRegistry, String path, ModelNode.State state) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. cmd/update.go

    	// Convert to absolute path
    	absPath, err := filepath.Abs(path)
    	if err != nil {
    		return t, fmt.Errorf("Unable to get absolute path of %s. %w", path, err)
    	}
    
    	// Version is minio non-standard, we will use minio binary's
    	// ModTime as release time.
    	fi, err := Stat(absPath)
    	if err != nil {
    		return t, fmt.Errorf("Unable to get ModTime of %s. %w", absPath, err)
    	}
    
    	// Return the ModTime
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. hack/verify-flags-underscore.py

            l = list(new_excluded_flags)
            l.sort()
            print(("%s" % "\n".join(l)))
            sys.exit(1)
    
    def main():
        rootdir = os.path.dirname(__file__) + "/../"
        rootdir = os.path.abspath(rootdir)
    
        if len(args.filenames) > 0:
            files = args.filenames
        else:
            files = get_all_files(rootdir)
    
        check_underscore_in_flags(rootdir, files)
    
    if __name__ == "__main__":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. cmd/kube-scheduler/app/testing/testserver.go

    		select {
    		case err := <-errCh:
    			return false, err
    		default:
    		}
    
    		result := client.CoreV1().RESTClient().Get().AbsPath("/healthz").Do(ctx)
    		status := 0
    		result.StatusCode(&status)
    		if status == 200 {
    			return true, nil
    		}
    		return false, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 10:35:59 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. hack/verify-publishing-bot.py

        import yaml
        with open(rules_file) as f:
            data = yaml.safe_load(f)
        return data
    
    
    def main():
        rootdir = os.path.dirname(__file__) + "/../"
        rootdir = os.path.abspath(rootdir)
    
        components = []
        for component in os.listdir(rootdir + '/staging/src/k8s.io/'):
            components.append(component)
        components.sort()
    
        rules_file = "/staging/publishing/rules.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 16:07:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gccgo.go

    			args = append(args, "-ffile-prefix-map="+b.WorkDir+"=/tmp/go-build")
    		}
    		if fsys.OverlayFile != "" {
    			for _, name := range gofiles {
    				absPath := mkAbs(p.Dir, name)
    				overlayPath, ok := fsys.OverlayPath(absPath)
    				if !ok {
    					continue
    				}
    				toPath := absPath
    				// gccgo only applies the last matching rule, so also handle the case where
    				// BuildTrimpath is true and the path is relative to base.Cwd().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/testing/testserver.go

    		select {
    		case <-ctx.Done():
    			return false, ctx.Err()
    		case err := <-errCh:
    			return false, err
    		default:
    		}
    
    		result := client.CoreV1().RESTClient().Get().AbsPath("/healthz").Do(context.TODO())
    		status := 0
    		result.StatusCode(&status)
    		if status == 200 {
    			return true, nil
    		}
    		return false, nil
    	})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top