Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 98 for sysconf (0.15 sec)

  1. 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)
  2. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

            coordinates2.module.set("")
            coordinates2.revision.set("")
            def artifact2 = new FileBasedIvyArtifact(new File("foo"), coordinates2, DefaultTaskDependencyFactory.withNoAssociatedProject())
            artifact2.setConf("runtime")
            descriptor.getArtifacts().set([artifact1, artifact2])
    
            then:
            includesMavenNamespace()
            and:
            with (ivyXml) {
                publications.artifact.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            def artifact = new FileBasedIvyArtifact(new File("foo.txt"), projectIdentity, TestFiles.taskDependencyFactory())
            artifact.setConf("unknown")
            def descriptor = ivyDescriptor()
            descriptor.artifacts.set([artifact])
            def ivyFile = ivyFile(descriptor)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___CLOGL_B                       = 0xA01 // 2561
    	SYS___CLOGL_H                       = 0xA02 // 2562
    	SYS_CONJ                            = 0xA03 // 2563
    	SYS___CONJ_B                        = 0xA04 // 2564
    	SYS___CONJ_H                        = 0xA05 // 2565
    	SYS_CONJF                           = 0xA06 // 2566
    	SYS___CONJF_B                       = 0xA07 // 2567
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  9. src/fmt/example_test.go

    		}
    		fmt.Printf("%d: %s, %d, %f\n", n, a, b, c)
    	}
    	// Output:
    	// 3: dmr, 1771, 1.618034
    	// 3: ken, 271828, 3.141590
    }
    
    func ExampleSscanf() {
    	var name string
    	var age int
    	n, err := fmt.Sscanf("Kim is 22 years old", "%s is %d years old", &name, &age)
    	if err != nil {
    		panic(err)
    	}
    	fmt.Printf("%d: %s, %d\n", n, name, age)
    
    	// Output:
    	// 2: Kim, 22
    }
    
    func ExamplePrint() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    			anonymizeAddr(&localSysConfig)
    			healthInfo.Sys.SysConfig = append(healthInfo.Sys.SysConfig, localSysConfig)
    			partialWrite(healthInfo)
    
    			peerSysConfig := globalNotificationSys.GetSysConfig(healthCtx)
    			for _, sc := range peerSysConfig {
    				anonymizeAddr(&sc)
    				healthInfo.Sys.SysConfig = append(healthInfo.Sys.SysConfig, sc)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top