Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for absDate (0.12 sec)

  1. src/go/internal/srcimporter/srcimporter.go

    	return parser.ParseFile(p.fset, filepath.Join(tmpdir, "_cgo_gotypes.go"), nil, parser.SkipObjectResolution)
    }
    
    // context-controlled file system operations
    
    func (p *Importer) absPath(path string) (string, error) {
    	// TODO(gri) This should be using p.ctxt.AbsPath which doesn't
    	// exist but probably should. See also issue #14282.
    	return filepath.Abs(path)
    }
    
    func (p *Importer) isAbsPath(path string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 18:54:32 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/test/fixtures/BaseInstanceFixtureSupport.groovy

                .descriptor(new SimpleModelRuleDescriptor("<create $name>"))
            modelRegistry.register(registration.build())
    
            return modelRegistry.atState(name, ModelNode.State.Initialized)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top