Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,465 for predates (0.14 sec)

  1. src/os/error.go

    //
    // This function predates [errors.Is]. It only supports errors returned by
    // the os package. New code should use errors.Is(err, fs.ErrPermission).
    func IsPermission(err error) bool {
    	return underlyingErrorIs(err, ErrPermission)
    }
    
    // IsTimeout returns a boolean indicating whether the error is known
    // to report that a timeout occurred.
    //
    // This function predates [errors.Is], and the notion of whether an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    	//
    	// The CloseNotifier interface is implemented by ResponseWriters which allow detecting
    	// when the underlying connection has gone away.
    	// Deprecated: the CloseNotifier interface predates Go's context package.
    	// New code should use Request.Context instead.
    	inner := decorator.Unwrap()
    	if innerNotifierFlusher, ok := inner.(CloseNotifierFlusher); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WtpComponent.java

    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Map;
    
    import static com.google.common.base.Predicates.instanceOf;
    import static com.google.common.base.Predicates.not;
    import static com.google.common.base.Strings.isNullOrEmpty;
    
    /**
     * Creates the .settings/org.eclipse.wst.common.component file for WTP projects.
     */
    public class WtpComponent extends XmlPersistableConfigurationObject {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    //
    // See "Counter Naming" in the package doc for a description of counter naming
    // conventions.
    func NewStack(name string, depth int) *StackCounter {
    	return counter.NewStack(name, depth)
    }
    
    // Open prepares telemetry counters for recording to the file system.
    //
    // If the telemetry mode is "off", Open is a no-op. Otherwise, it opens the
    // counter file on disk and starts to mmap telemetry counters to the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    	"k8s.io/apiserver/pkg/admission/plugin/webhook"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/config"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/object"
    	"k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/debug/macho/fat.go

    			}
    		}
    
    		ff.Arches = append(ff.Arches, fa)
    	}
    
    	return &ff, nil
    }
    
    // OpenFat opens the named file using [os.Open] and prepares it for use as a Mach-O
    // universal binary.
    func OpenFat(name string) (*FatFile, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	ff, err := NewFatFile(f)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    		klog.V(4).Infof("Stopping fake watcher.")
    		close(f.result)
    		f.stopped = true
    	}
    }
    
    func (f *FakeWatcher) IsStopped() bool {
    	f.Lock()
    	defer f.Unlock()
    	return f.stopped
    }
    
    // Reset prepares the watcher to be reused.
    func (f *FakeWatcher) Reset() {
    	f.Lock()
    	defer f.Unlock()
    	f.stopped = false
    	f.result = make(chan Event)
    }
    
    func (f *FakeWatcher) ResultChan() <-chan Event {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  8. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

         */
        GradleInternal getConfiguredBuild();
    
        /**
         * Prepares this build to schedule tasks. May configure the build, if required to later schedule the requested tasks. Can be called multiple times.
         */
        void prepareToScheduleTasks();
    
        /**
         * Creates a new work plan for this build. This method can be called multiple times to create multiple plans.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. src/internal/xcoff/ar.go

    	sr *io.SectionReader
    }
    
    // MemberHeader holds information about a big archive member
    type MemberHeader struct {
    	Name string
    	Size uint64
    }
    
    // OpenArchive opens the named archive using os.Open and prepares it for use
    // as an AIX big archive.
    func OpenArchive(name string) (*Archive, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	arch, err := NewArchive(f)
    	if err != nil {
    		f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:51 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactoryTest.groovy

            !reference.relativeToPathVariable
        }
    
        def "creates null reference for a null jar url"() {
            expect:
            factory.fromJarURI(null) == null
        }
    
        def "creates null reference for a null file path"() {
            expect:
            factory.fromPath(null) == null
        }
    
        def "creates a reference from a variable path"() {
            TestFile file = rootDir.file("a/file.txt")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top