Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 475 for Sarker (0.11 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

    Sergey Igushkin <******@****.***> 1712225595 +0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/internal/trace/parser.go

    Carlos Amedee <******@****.***> 1715110630 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/workerApiProject/buildSrc/src/main/resources/META-INF/gradle-plugins/worker-plugin.properties

    implementation-class=com.example.worker.WorkerPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 54 bytes
    - Viewed (0)
  4. src/structs/hostlayout.go

    // containing the struct marked as host layout.
    //
    // By convention, HostLayout should be used as the type of a field
    // named "_", placed at the beginning of the struct type definition.
    type HostLayout struct {
    	_ hostLayout // prevent accidental conversion with plain struct{}
    }
    
    // We use an unexported type within the exported type to give the marker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. cmd/signature-v4-parser.go

    Harshavardhana <******@****.***> 1705561397 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K 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. 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)
  8. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jStdoutLogger.java

        public boolean isTraceEnabled(Marker marker) {
            return false;
        }
    
        public void trace(Marker marker, String msg) {}
    
        public void trace(Marker marker, String format, Object arg) {}
    
        public void trace(Marker marker, String format, Object arg1, Object arg2) {}
    
        public void trace(Marker marker, String format, Object... argArray) {}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. src/internal/pkgbits/encoder.go

    	// elems[RelocString][stringsIdx[s]] == s (if present).
    	stringsIdx map[string]Index
    
    	// syncFrames is the number of frames to write at each sync
    	// marker. A negative value means sync markers are omitted.
    	syncFrames int
    }
    
    // SyncMarkers reports whether pw uses sync markers.
    func (pw *PkgEncoder) SyncMarkers() bool { return pw.syncFrames >= 0 }
    
    // NewPkgEncoder returns an initialized PkgEncoder.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  10. src/internal/txtar/archive.go

    	}
    	return a
    }
    
    var (
    	newlineMarker = []byte("\n-- ")
    	marker        = []byte("-- ")
    	markerEnd     = []byte(" --")
    )
    
    // findFileMarker finds the next file marker in data,
    // extracts the file name, and returns the data before the marker,
    // the file name, and the data after the marker.
    // If there is no next marker, findFileMarker returns before = fixNL(data), name = "", after = nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top