Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,803 for maker (0.11 sec)

  1. releasenotes/notes/make-httpbin-work-ocp.yaml

    Jonh Wendell <******@****.***> 1700507291 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 19:08:11 UTC 2023
    - 156 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/fixedbugs_test.go

    		}
    		// The bug was in the following assignment. The return
    		// value of makeT() is not copied out of the args area of
    		// stack frame in a timely fashion. So when write barriers
    		// are enabled, the marshaling of the args for the write
    		// barrier call clobbers the result of makeT() before it is
    		// read by the write barrier code.
    		g = makeT()
    		sink = make([]byte, 1000) // force write barriers to eventually happen
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleSource.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model;
    
    import org.gradle.api.Incubating;
    
    /**
     * A marker type for a class that is a collection of rules.
     * <p>
     * A rule source is not used like a regular Java object.
     * It is a stateless container of methods and possibly constants.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/DefaultContextAwareTaskLogger.java

            if (isInfoEnabled(marker)) {
                log(toLogLevel(marker), null, format, arg1, arg2);
            }
        }
    
        @Override
        public void info(Marker marker, String format, Object... argArray) {
            if (isInfoEnabled(marker)) {
                log(toLogLevel(marker), null, format, argArray);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/obj6_test.go

    			t.Fatalf("malformed line %v", line)
    		}
    		r.marks = append(r.marks, marker)
    		marker_insn := fmt.Sprintf("MOVQ $%d, AX", marker)
    		input_insns = append(input_insns, marker_insn)
    		for _, input_insn := range strings.Split(parts[0], ";") {
    			input_insns = append(input_insns, input_insn)
    			r.marker_to_input[marker] = append(r.marker_to_input[marker], normalize(input_insn))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. src/internal/pkgbits/codes.go

    // Decoder to detect desyncs.
    type Code interface {
    	// Marker returns the SyncMarker for the Code's dynamic type.
    	Marker() SyncMarker
    
    	// Value returns the Code's ordinal value.
    	Value() int
    }
    
    // A CodeVal distinguishes among go/constant.Value encodings.
    type CodeVal int
    
    func (c CodeVal) Marker() SyncMarker { return SyncVal }
    func (c CodeVal) Value() int         { return int(c) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        def "detects no changes when no files are in the project"() {
            given:
            def markerFile = file("input/marker")
            buildFile << """
                task myTask {
                  def inputFile = file("input/marker")
                  inputs.files inputFile
                  outputs.files "build/marker"
                  doLast {
                    println "exists: " + inputFile.exists()
                  }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. test/fixedbugs/issue52612.go

    }
    
    func f(c chan struct{}) {
    	var x atomic.Value
    
    	go func() {
    		x.Swap(one) // writing using the old marker
    	}()
    	for i := 0; i < 100000; i++ {
    		v := x.Load() // reading using the new marker
    
    		p := (*eface)(unsafe.Pointer(&v)).typ
    		if uintptr(p) == ^uintptr(0) {
    			// We read the old marker, which the new reader
    			// doesn't know is a case where it should retry
    			// instead of returning it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 20:42:52 UTC 2022
    - 881 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

                        def startMarkerFile = file("start.marker")
                        startMarkerFile << new Date().toString()
                        println "start marker written (\$startMarkerFile)"
    
                        def stopMarkerFile = file("stop.marker")
                        def startedAt = System.currentTimeMillis()
                        println "waiting for stop marker (\$stopMarkerFile)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4313.go

    package main
    
    func main() {
    	c := make(chan int, 1)
    	x := 0
    	select {
    	case c <- x: // should see x = 0, not x = 42 (after makec)
    	case <-makec(&x): // should be evaluated only after c and x on previous line
    	}
    	y := <-c
    	if y != 0 {
    		panic(y)
    	}
    }
    
    func makec(px *int) chan bool {
    	if false { for {} }
    	*px = 42
    	return make(chan bool, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 546 bytes
    - Viewed (0)
Back to top