Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 443 for someInt (0.1 sec)

  1. src/internal/coverage/defs.go

    	MetaHash  [16]byte
    	CFlavor   CounterFlavor
    	BigEndian bool
    	_         [6]byte // padding
    }
    
    // CounterSegmentHeader encapsulates information about a specific
    // segment in a counter data file, which at the moment contains
    // counters data from a single execution of a coverage-instrumented
    // program. Following the segment header will be the string table and
    // args table, and then (possibly) padding bytes to bring the byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. docs/en/docs/async.md

    This is "synchronous" work, you are "synchronized" with the cashier/cook 👨‍🍳. You have to wait 🕙 and be there at the exact moment that the cashier/cook 👨‍🍳 finishes the burgers and gives them to you, or otherwise, someone else might take them.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-04.png" class="illustration">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

                package example;
                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
                         Thread.sleep(100);  // sleep for a moment to ensure test duration is > 0 (due to limited clock resolution)
                         throw new RuntimeException("broken", new RuntimeException("nope"));
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. release/downloadIstioCandidate.sh

        without_arch
      else
        with_arch
      fi
    else
      printf "\n\n"
      printf "Unable to download Istio %s at this moment!\n" "$ISTIO_VERSION"
      printf "Please verify the version you are trying to download.\n\n"
      exit 1
    fi
    
    printf ""
    printf "\nIstio %s Download Complete!\n" "$ISTIO_VERSION"
    printf "\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. src/unique/handle.go

    	*concurrent.HashTrieMap[T, weak.Pointer[T]]
    	cloneSeq
    }
    
    func addUniqueMap[T comparable](typ *abi.Type) *uniqueMap[T] {
    	// Create a map for T and try to register it. We could
    	// race with someone else, but that's fine; it's one
    	// small, stray allocation. The number of allocations
    	// this can create is bounded by a small constant.
    	m := &uniqueMap[T]{
    		HashTrieMap: concurrent.NewHashTrieMap[T, weak.Pointer[T]](),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/zerorange_test.go

    // zeroing. One way to trigger this is to have a function with an
    // open-coded defer, where the opendefer function has an argument that
    // contains a pointer (this is what's used below).
    //
    // At the moment this test doesn't do any specific checking for
    // code sequence, or verification that things were properly set to zero,
    // this seems as though it would be too tricky and would result
    // in a "brittle" test.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DirectoryOutputArtifactIntegrationTest.groovy

            then:
            executed ':check'
    
            when:
            run 'run'
    
            then:
            executed ':run'
        }
    
        /**
         * This is not a use case we want to support at the moment. There's no need to immediately fix this.
         */
        @NotYetImplemented
        def "can attach a directory as output of a configuration generated by another task"() {
            given:
            buildFile << '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/README.md

    $ cp tracing/bin/trace_viewer_full.html $GOROOT/src/cmd/trace/static/trace_viewer_full.html
    ```
    
    We are supposed to use --config=lean (produces smaller html),
    but it is broken at the moment:
    https://github.com/catapult-project/catapult/issues/2247
    
    ### Updating `webcomponents.min.js`
    
    `webcomponents.min.js` is necessary to let the trace viewer page
    to import the `trace_viewer_full.html`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java

            if (systemProperties != null) {
                this.systemProperties = new Properties();
                // avoid concurrent modification if someone else sets/removes an unrelated system property
                synchronized (systemProperties) {
                    this.systemProperties.putAll(systemProperties);
                }
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/runtime/preempt.go

    	stopped := false
    	var asyncM *m
    	var asyncGen uint32
    	var nextPreemptM int64
    	for i := 0; ; i++ {
    		switch s := readgstatus(gp); s {
    		default:
    			if s&_Gscan != 0 {
    				// Someone else is suspending it. Wait
    				// for them to finish.
    				//
    				// TODO: It would be nicer if we could
    				// coalesce suspends.
    				break
    			}
    
    			dumpgstatus(gp)
    			throw("invalid g status")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top