Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for sysconf (0.19 sec)

  1. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    package io_error
    
    import (
    	"fmt"
    	"os"
    	"testing"
    )
    
    func sendGarbageToCoordinator(tb testing.TB) {
    	v := os.Getenv("GO_TEST_FUZZ_WORKER_HANDLES")
    	var fuzzInFD, fuzzOutFD uintptr
    	if _, err := fmt.Sscanf(v, "%x,%x", &fuzzInFD, &fuzzOutFD); err != nil {
    		tb.Fatalf("parsing GO_TEST_FUZZ_WORKER_HANDLES: %v", err)
    	}
    	f := os.NewFile(fuzzOutFD, "fuzz_out")
    	if _, err := f.Write([]byte("!!")); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            javaLibrary.parsedIvy.dependencies["commons-beanutils:commons-beanutils:1.8.3"].exclusions[0].org == 'commons-logging'
            !javaLibrary.parsedIvy.dependencies["commons-dbcp:commons-dbcp:1.4"].transitiveEnabled()
            javaLibrary.parsedIvy.dependencies["org.apache.camel:camel-jackson:2.15.3"].hasConf("compile->default")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/internal/fuzz/sys_windows.go

    	v := os.Getenv("GO_TEST_FUZZ_WORKER_HANDLES")
    	if v == "" {
    		return workerComm{}, fmt.Errorf("GO_TEST_FUZZ_WORKER_HANDLES not set")
    	}
    	var fuzzInFD, fuzzOutFD, memFileFD uintptr
    	if _, err := fmt.Sscanf(v, "%x,%x,%x", &fuzzInFD, &fuzzOutFD, &memFileFD); err != nil {
    		return workerComm{}, fmt.Errorf("parsing GO_TEST_FUZZ_WORKER_HANDLES=%s: %v", v, err)
    	}
    
    	fuzzIn := os.NewFile(fuzzInFD, "fuzz_in")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:35:25 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top