Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 475 for Sarker (0.16 sec)

  1. maven-core/src/test/resources/local-repo/marker.txt

    this is just a marker file....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 27 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/repo-marker.txt

    This is a marker file to allow the repository to be found in the classpath....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 75 bytes
    - Viewed (0)
  3. maven-compat/src/test/resources/local-repo/marker.txt

    this is just a marker file....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 26 20:16:00 UTC 2009
    - 27 bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractGroovyCompilerIntegrationSpec/canUseThirdPartyAstTransform/src/main/java/Marker.java

    public interface Marker {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 28 bytes
    - Viewed (0)
  5. cmd/metacache-marker.go

    import (
    	"context"
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    // markerTagVersion is the marker version.
    // Should not need to be updated unless a fundamental change is made to the marker format.
    const markerTagVersion = "v2"
    
    // parseMarker will parse a marker possibly encoded with encodeMarker
    func (o *listPathOptions) parseMarker() {
    	s := o.Marker
    	if !strings.Contains(s, "[minio_cache:"+markerTagVersion) {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/markers/markers.kt

    public interface KaSymbolWithTypeParameters : KaSymbol {
        public val typeParameters: List<KaTypeParameterSymbol>
    }
    
    public typealias KtSymbolWithTypeParameters = KaSymbolWithTypeParameters
    
    /**
     * A marker interface for symbols which could potentially be `expect` or `actual`. For more details about `expect` and `actual`
     * declarations, see [documentation](https://kotlinlang.org/docs/multiplatform-connect-to-apis.html).
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/plugin-markers.puml

      file "<b>groupId</b> com.example.goodbye\n<b>artifactId</b> com.example.goodbye.gradle.plugin\n<b>version</b> 1.0.0" as marker2
    
      file "<b>groupId</b> com.example\n<b>artifactId</b> sample-plugins\n<b>version</b> 1.0.0\n\n<&file> sample-plugins-1.0.0.jar" as main
    
      marker1 --> main
      marker2 --> main
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 595 bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/Packer.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import java.io.IOException;
    import java.util.List;
    
    interface Packer {
        void pack(List<DataSource> inputs, DataTarget output) throws IOException;
        void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 899 bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/Worker.java

     * limitations under the License.
     */
    
    package org.gradle.workers.internal;
    
    /**
     * A service that executes work locally.
     */
    public interface Worker {
        DefaultWorkResult execute(SimpleActionExecutionSpec<?> spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 798 bytes
    - Viewed (0)
  10. pkg/filewatcher/worker.go

    	"fmt"
    	"io"
    	"os"
    	"sync"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    type worker struct {
    	mu sync.RWMutex
    
    	// watcher is an fsnotify watcher that watches the parent
    	// dir of watchedFiles.
    	dirWatcher *fsnotify.Watcher
    
    	// The worker maintains a map of channels keyed by watched file path.
    	// The worker watches parent path of given path,
    	// and filters out events of given path, then redirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top