Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for specialFiles (0.15 sec)

  1. src/internal/poll/read_test.go

    package poll_test
    
    import (
    	"os"
    	"runtime"
    	"sync"
    	"testing"
    	"time"
    )
    
    func TestRead(t *testing.T) {
    	t.Run("SpecialFile", func(t *testing.T) {
    		var wg sync.WaitGroup
    		for _, p := range specialFiles() {
    			for i := 0; i < 4; i++ {
    				wg.Add(1)
    				go func(p string) {
    					defer wg.Done()
    					for i := 0; i < 100; i++ {
    						if _, err := os.ReadFile(p); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskSubclassingBinaryBackwardsCompatibilityCrossVersionSpec.groovy

            version previous withTasks 'tasks' requireDaemon() requireIsolatedDaemons() run()
        }
    
        def "task can use all methods declared by Task interface that AbstractTask specialises"() {
            given:
            prepareMethodUseTest(current.version)
    
            expect:
            version current withTasks 'assemble' inDirectory(file("producer")) run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskSubclassingBinaryForwardCompatibilityCrossVersionSpec.groovy

            version current withTasks 'tasks' requireDaemon() requireIsolatedDaemons() run()
        }
    
        def "task can use all methods declared by Task interface that AbstractTask specialises"() {
            given:
            prepareMethodUseTest(previous.version)
    
            expect:
            version previous withTasks 'assemble' inDirectory(file("producer")) run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/IncompatibleRequestedConfigurationFailure.java

    import org.gradle.api.internal.attributes.AttributeContainerInternal;
    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that specializes {@link IncompatibleResolutionFailure} to represent the situation when a configuration is
     * requested by name but its attributes are not compatible with the request.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/RemoteConnection.java

     */
    
    package org.gradle.internal.remote.internal;
    
    import javax.annotation.Nullable;
    
    /**
     * <p>A messaging end-point with some remote, or otherwise unreliable, peer.</p>
     *
     * <p>This interface simply specializes the exceptions thrown by the methods of this connection.</p>
     */
    public interface RemoteConnection<T> extends Connection<T> {
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/IncompatibleGraphVariantFailure.java

    import org.gradle.api.internal.attributes.AttributeContainerInternal;
    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    
    import java.util.List;
    
    /**
     * A {@link ResolutionFailure} that specializes {@link IncompatibleResolutionFailure} to represent a
     * failure to select a variant for a component when building a dependency resolution graph.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    type ConfigForResource struct {
    	// Config is the resource-independent configuration
    	Config
    
    	// GroupResource is the relevant one
    	GroupResource schema.GroupResource
    }
    
    // ForResource specializes to the given resource
    func (config *Config) ForResource(resource schema.GroupResource) *ConfigForResource {
    	return &ConfigForResource{
    		Config:        *config,
    		GroupResource: resource,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/encoding/json/decode.go

    			d.off = i
    			return
    		}
    	}
    
    	d.off = len(data) + 1 // mark processed EOF with len+1
    	d.opcode = d.scan.eof()
    }
    
    // rescanLiteral is similar to scanWhile(scanContinue), but it specialises the
    // common case where we're decoding a literal. The decoder scans the input
    // twice, once for syntax errors and to check the length of the value, and the
    // second to perform the decoding.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top