Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for globAbs (0.74 sec)

  1. cmd/globals.go

    Harshavardhana <******@****.***> 1717070292 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

                        projectFile.withXml { xml ->
                            Node globals = xml.asNode().PropertyGroup.find({it.'@Label' == 'Globals'}) as Node
                            globals.appendNode("ExtraInfo", "Some extra info")
                            globals.appendNode("ProjectName", project.name)
                        }
            """
            run "visualStudio"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. src/testing/fstest/testfs.go

    }
    
    // checkGlob checks that various glob patterns work if the file system implements GlobFS.
    func (t *fsTester) checkGlob(dir string, list []fs.DirEntry) {
    	if _, ok := t.fsys.(fs.GlobFS); !ok {
    		return
    	}
    
    	// Make a complex glob pattern prefix that only matches dir.
    	var glob string
    	if dir != "." {
    		elem := strings.Split(dir, "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/module/module.go

    		var glob string
    		if i := strings.Index(globs, ","); i >= 0 {
    			glob, globs = globs[:i], globs[i+1:]
    		} else {
    			glob, globs = globs, ""
    		}
    		glob = strings.TrimSuffix(glob, "/")
    		if glob == "" {
    			continue
    		}
    
    		// A glob with N+1 path elements (N slashes) needs to be matched
    		// against the first N+1 path elements of target,
    		// which end just before the N+1'th slash.
    		n := strings.Count(glob, "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/runtime/mbarrier.go

    //
    // Global writes:
    //
    // The Go garbage collector requires write barriers when heap pointers
    // are stored in globals. Many garbage collectors ignore writes to
    // globals and instead pick up global -> heap pointers during
    // termination. This increases pause time, so we instead rely on write
    // barriers for writes to globals so that we don't have to rescan
    // global during mark termination.
    //
    //
    // Publication ordering:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. pkg/volume/iscsi/iscsi_util_test.go

    }
    
    func fakeOsStat(devicePath string) (fi os.FileInfo, err error) {
    	var cmd os.FileInfo
    	return cmd, nil
    }
    
    func fakeFilepathGlob(devicePath string) (globs []string, err error) {
    	return []string{devicePath}, nil
    }
    
    func fakeFilepathGlob2(devicePath string) (globs []string, err error) {
    	return []string{
    		"/dev/disk/by-path/pci-0000:00:00.0-ip-127.0.0.1:3260-iqn.2014-12.com.example:test.tgt00-lun-0",
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  7. src/runtime/sys_darwin.go

    // the once lock is held by the parent process and then calls
    // _os_once_gate_corruption_abort. The allocation is setting up the
    // globals for the notification subsystem. See the source code at [1].
    // To work around this, we can allocate the globals earlier in the Go
    // program's lifetime, before any execs are involved, by calling any
    // notify routine that is exported, calls _notify_globals, and doesn't do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. src/runtime/extern.go

    	the explanation below is also the relevant runtime/metrics metric for each field.
    	Currently, it is:
    		gc # @#s #%: #+#+# ms clock, #+#/#/#+# ms cpu, #->#-># MB, # MB goal, # MB stacks, #MB globals, # P
    	where the fields are as follows:
    		gc #         the GC number, incremented at each GC
    		@#s          time in seconds since program start
    		#%           percentage of time spent in GC since program start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/go/parser/parser_test.go

    }
    
    func TestColonEqualsScope(t *testing.T) {
    	f, err := ParseFile(token.NewFileSet(), "", `package p; func f() { x, y, z := x, y, z }`, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// RHS refers to undefined globals; LHS does not.
    	as := f.Decls[0].(*ast.FuncDecl).Body.List[0].(*ast.AssignStmt)
    	for _, v := range as.Rhs {
    		id := v.(*ast.Ident)
    		if id.Obj != nil {
    			t.Errorf("rhs %s has Obj, should not", id.Name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. src/net/http/roundtrip_js.go

    // Reference: https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters
    const jsFetchRedirect = "js.fetch:redirect"
    
    // jsFetchMissing will be true if the Fetch API is not present in
    // the browser globals.
    var jsFetchMissing = js.Global().Get("fetch").IsUndefined()
    
    // jsFetchDisabled controls whether the use of Fetch API is disabled.
    // It's set to true when we detect we're running in Node.js, so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top