Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for sysconf (0.55 sec)

  1. src/net/lookup_windows.go

    		if err != nil {
    			return nil, newDNSError(err, name, "")
    		}
    
    		dnsConf := getSystemDNSConfig()
    		start := time.Now()
    
    		var e error
    		for i := 0; i < dnsConf.attempts; i++ {
    			e = syscall.GetAddrInfoW(name16p, nil, &hints, &result)
    			if e == nil || e != _WSATRY_AGAIN || time.Since(start) > dnsConf.timeout {
    				break
    			}
    		}
    		if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/runtime/mklockrank.go

    // not actually define a rank.
    //
    // TODO: It's often hard to correlate rank names to locks. Change
    // these to be more consistent with the locks they label.
    const ranks = `
    # Sysmon
    NONE
    < sysmon
    < scavenge, forcegc;
    
    # Defer
    NONE < defer;
    
    # GC
    NONE <
      sweepWaiters,
      assistQueue,
      sweep;
    
    # Test only
    NONE < testR, testW;
    
    NONE < timerSend;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    	{AMULW, ydivl, Pe, opBytes{0xf7, 04}},
    	{ANEGB, yscond, Pb, opBytes{0xf6, 03}},
    	{ANEGL, yscond, Px, opBytes{0xf7, 03}},
    	{ANEGQ, yscond, Pw, opBytes{0xf7, 03}},
    	{ANEGW, yscond, Pe, opBytes{0xf7, 03}},
    	{obj.ANOP, ynop, Px, opBytes{0, 0}},
    	{ANOTB, yscond, Pb, opBytes{0xf6, 02}},
    	{ANOTL, yscond, Px, opBytes{0xf7, 02}}, // TODO(rsc): yscond is wrong here.
    	{ANOTQ, yscond, Pw, opBytes{0xf7, 02}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    		defer cfgCtlr.configQueue.Done(obj)
    		specificDelay, err := cfgCtlr.syncOne()
    		switch {
    		case err != nil:
    			klog.Error(err)
    			cfgCtlr.configQueue.AddRateLimited(obj)
    		case specificDelay > 0:
    			cfgCtlr.configQueue.AddAfter(obj, specificDelay)
    		default:
    			cfgCtlr.configQueue.Forget(obj)
    		}
    	}(obj)
    
    	return true
    }
    
    // syncOne does one full synchronization.  It reads all the API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  5. src/runtime/traceback_system_test.go

    	)
    	for i := 0; i < len(lines); i++ {
    		line := lines[i]
    
    		// Read sentinel value.
    		if parentSentinel == 0 && strings.HasPrefix(line, "sentinel ") {
    			_, err := fmt.Sscanf(line, "sentinel %x", &parentSentinel)
    			if err != nil {
    				return nil, fmt.Errorf("can't read sentinel line")
    			}
    			continue
    		}
    
    		// Search for "goroutine GID [STATUS]"
    		if !on {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	)
    	for i := 0; i < len(lines); i++ {
    		line := lines[i]
    
    		// Read sentinel value.
    		if parentSentinel == 0 && strings.HasPrefix(line, "sentinel ") {
    			_, err := fmt.Sscanf(line, "sentinel %x", &parentSentinel)
    			if err != nil {
    				return nil, fmt.Errorf("can't read sentinel line")
    			}
    			continue
    		}
    
    		// Search for "goroutine GID [STATUS]"
    		if !on {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            buildFile << """
                $common
    
                project(":impl") {
                    configurations {
                        subConf
                        conf.extendsFrom subConf
                    }
    
                    dependencies {
                        subConf group: "org.utils", name: "api", version: "1.5"
                    }
    
                    configurations.conf.resolutionStrategy.dependencySubstitution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v1.go

    		return err
    	}
    	sum, err := hex.DecodeString(info.Hash)
    	if err != nil {
    		return err
    	}
    	c.Algorithm = BitrotAlgorithmFromString(info.Algorithm)
    	c.Hash = sum
    	if _, err = fmt.Sscanf(info.Name, "part.%d", &c.PartNumber); err != nil {
    		return err
    	}
    
    	if !c.Algorithm.Available() {
    		internalLogIf(GlobalContext, errBitrotHashAlgoInvalid)
    		return errBitrotHashAlgoInvalid
    	}
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/net/dnsclient_unix.go

    		var mtime time.Time
    		if fi, err := os.Stat(name); err == nil {
    			mtime = fi.ModTime()
    		}
    		if mtime.Equal(conf.dnsConfig.Load().mtime) {
    			return
    		}
    	}
    
    	dnsConf := dnsReadConfig(name)
    	conf.dnsConfig.Store(dnsConf)
    }
    
    func (conf *resolverConfig) tryAcquireSema() bool {
    	select {
    	case conf.ch <- struct{}{}:
    		return true
    	default:
    		return false
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    	madminServerProperties = grid.NewJSONPool[madmin.ServerProperties]()
    	madminStorageInfo      = grid.NewJSONPool[madmin.StorageInfo]()
    	madminSysConfig        = grid.NewJSONPool[madmin.SysConfig]()
    	madminSysErrors        = grid.NewJSONPool[madmin.SysErrors]()
    	madminSysServices      = grid.NewJSONPool[madmin.SysServices]()
    
    	// Request -> Response RPC calls
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top