Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for sysconf (0.14 sec)

  1. src/runtime/runtime2.go

    	link        puintptr
    	schedtick   uint32     // incremented on every scheduler call
    	syscalltick uint32     // incremented on every system call
    	sysmontick  sysmontick // last tick observed by sysmon
    	m           muintptr   // back-link to associated m (nil if idle)
    	mcache      *mcache
    	pcache      pageCache
    	raceprocctx uintptr
    
    	deferpool    []*_defer // pool of available defer structs (see panic.go)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. src/runtime/traceruntime.go

    	// context of just emitting this event alone. There are two cases. Either we're trying to steal
    	// the P just to get its attention (e.g. STW or sysmon retake) or we're trying to steal a P for
    	// ourselves specifically to keep running. The two contexts look different, but can be summarized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. src/net/dnsclient_unix_test.go

    		return err
    	}
    	return conf.forceUpdate(conf.path, lastChecked)
    }
    
    func (conf *resolvConfTest) forceUpdate(name string, lastChecked time.Time) error {
    	dnsConf := dnsReadConfig(name)
    	if !conf.forceUpdateConf(dnsConf, lastChecked) {
    		return fmt.Errorf("tryAcquireSema for %s failed", name)
    	}
    	return nil
    }
    
    func (conf *resolvConfTest) forceUpdateConf(c *dnsConfig, lastChecked time.Time) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	testAutomaticHTTP2_Serve(t, &tls.Config{NextProtos: []string{"h2"}}, true)
    }
    
    func testAutomaticHTTP2_Serve(t *testing.T, tlsConf *tls.Config, wantH2 bool) {
    	setParallel(t)
    	defer afterTest(t)
    	ln := newLocalListener(t)
    	ln.Close() // immediately (not a defer!)
    	var s Server
    	s.TLSConfig = tlsConf
    	if err := s.Serve(ln); err == nil {
    		t.Fatal("expected an error")
    	}
    	gotH2 := s.TLSNextProto["h2"] != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	lock mutex
    
    	// g is the goroutine the scavenger is bound to.
    	g *g
    
    	// timer is the timer used for the scavenger to sleep.
    	timer *timer
    
    	// sysmonWake signals to sysmon that it should wake the scavenger.
    	sysmonWake atomic.Uint32
    
    	// parked is whether or not the scavenger is parked.
    	parked bool
    
    	// printControllerReset instructs printScavTrace to signal that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. pom.xml

    								<source>
    									<location>${project.basedir}/plugins</location>
    								</source>
    							</sources>
    						</mapping>
    						<!-- Add environment vars file -->
    						<mapping>
    							<directory>/etc/sysconfig</directory>
    							<directoryIncluded>false</directoryIncluded>
    							<username>root</username>
    							<groupname>root</groupname>
    							<configuration>noreplace</configuration>
    							<sources>
    								<source>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  7. configure.py

        ],
                                  stderr=stderr).split('\n')
      except subprocess.CalledProcessError:
        library_paths = [
            run_shell([
                python_bin_path, '-c',
                'from distutils.sysconfig import get_python_lib;'
                'print(get_python_lib())'
            ])
        ]
    
      all_paths = set(python_paths + library_paths)
      # Sort set so order is deterministic
      all_paths = sorted(all_paths)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/runtime/time.go

    			return
    		}
    	}
    }
    
    // timeSleepUntil returns the time when the next timer should fire. Returns
    // maxWhen if there are no timers.
    // This is only called by sysmon and checkdead.
    func timeSleepUntil() int64 {
    	next := int64(maxWhen)
    
    	// Prevent allp slice changes. This is like retake.
    	lock(&allpLock)
    	for _, pp := range allp {
    		if pp == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    This looks something like:
    ```
    configurations {
      // This silently creates a configuration called "runtime"
      myConf extendsFrom runtime
    }
    ```
    
    The result of dependency resolution for your custom configuration may not be the same as Gradle 6.x or before.
    You may notice missing dependencies or artifacts.
    --
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. CREDITS

    ================================================================
    
    github.com/tklauser/go-sysconf
    https://github.com/tklauser/go-sysconf
    ----------------------------------------------------------------
    BSD 3-Clause License
    
    Copyright (c) 2018-2022, Tobias Klauser
    All rights reserved.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top