Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for sysconf (0.24 sec)

  1. src/fmt/doc.go

    [Fscanf] and [Fscanln] read from a specified [io.Reader]; [Sscan],
    [Sscanf] and [Sscanln] read from an argument string.
    
    [Scan], [Fscan], [Sscan] treat newlines in the input as spaces.
    
    [Scanln], [Fscanln] and [Sscanln] stop scanning at a newline and
    require that the items be followed by a newline or EOF.
    
    [Scanf], [Fscanf], and [Sscanf] parse the arguments according to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/encoding/gob/gobencdec_test.go

    }
    
    func (g *Gobber) GobDecode(data []byte) error {
    	_, err := fmt.Sscanf(string(data), "VALUE=%d", (*int)(g))
    	return err
    }
    
    func (g *BinaryGobber) MarshalBinary() ([]byte, error) {
    	return []byte(fmt.Sprintf("VALUE=%d", *g)), nil
    }
    
    func (g *BinaryGobber) UnmarshalBinary(data []byte) error {
    	_, err := fmt.Sscanf(string(data), "VALUE=%d", (*int)(g))
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractLockingIntegrationTest.groovy

        }
    }
    configurations {
        lockedConf
        subConf
    }
    
    dependencies {
        lockedConf 'org:bar:${version}'
        subConf 'org:bar:1.1'
    }
    """
    
            when:
            succeeds'dependencies', '--write-locks'
    
            then:
            lockfileFixture.verifyLockfile(['lockedConf': ["org:bar:${resolved}"], 'subConf': ['org:bar:1.1']])
    
            where:
            version     | resolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

                        ivyArtifact = ivyArtifactParser.parseNotation(publishArtifact);
                        ivyArtifact.setConf(conf);
                        seenArtifacts.put(key, ivyArtifact);
                        artifacts.add(ivyArtifact);
                    } else {
                        ivyArtifact.setConf(ivyArtifact.getConf() + "," + conf);
                    }
                }
            }
    
            return artifacts;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublicationTest.groovy

            def artifact = Mock(PublishArtifact)
            def ivyArtifact = createArtifact()
    
            when:
            notationParser.parseNotation(artifact) >> ivyArtifact
            1 * ivyArtifact.setConf("runtime")
    
            and:
            publication.from(componentWithArtifact(artifact))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

                          publication="20041101110000">
                    </info>
                    <configurations>
                        <conf name="myconf" />
                    </configurations>
                    <publications/>
                    <dependencies defaultconfmapping="myconf->default">
                        <dependency name="mymodule2" rev="1.2"/>
                    </dependencies>
                </ivy-module>
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top