Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 912 for regular (0.12 sec)

  1. src/cmd/go/internal/base/flag.go

    	var err error
    	*v, err = quoted.Split(s)
    	if *v == nil {
    		*v = []string{}
    	}
    	return err
    }
    
    func (v *StringsFlag) String() string {
    	return "<StringsFlag>"
    }
    
    // explicitStringFlag is like a regular string flag, but it also tracks whether
    // the string was set explicitly to a non-empty value.
    type explicitStringFlag struct {
    	value    *string
    	explicit *bool
    }
    
    func (f explicitStringFlag) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/os/file_unix.go

    			var st syscall.Stat_t
    			err := ignoringEINTR(func() error {
    				return syscall.Fstat(fd, &st)
    			})
    			typ := st.Mode & syscall.S_IFMT
    			// Don't try to use kqueue with regular files on *BSDs.
    			// On FreeBSD a regular file is always
    			// reported as ready for writing.
    			// On Dragonfly, NetBSD and OpenBSD the fd is signaled
    			// only once as ready (both read and write).
    			// Issue 19093.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaDebugOptions.java

            this.suspend = objectFactory.property(Boolean.class).convention(true);
        }
    
        public DefaultJavaDebugOptions() {
            // Ugly, but there are a few places where we need to instantiate a JavaDebugOptions and a regular ObjectFactory service
            // is not available.
            this(new InstantiatorBackedObjectFactory(DirectInstantiator.INSTANCE));
        }
    
        @Override
        public int hashCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/MavenArtifactProperties.java

        /**
         * The (expected) path to the artifact on the local filesystem. An artifact which has this property set is assumed
         * to be not present in any regular repository and likewise has no artifact descriptor. Artifact resolution will
         * verify the path and resolve the artifact if the path actually denotes an existing file. If the path isn't valid,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/errors.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package errors
    
    // Testing precise operand formatting in error messages
    // (matching messages are regular expressions, hence the \'s).
    func f(x int, m map[string]int) {
    	// no values
    	_ = f /* ERROR "f(0, m) (no value) used as value" */ (0, m)
    
    	// built-ins
    	_ = println // ERROR "println (built-in) must be called"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/publishing-process.graffle

    shad.0g0.0r0.0space9eaea0911d89d6{{208.79999533295631, 148.31999668478966}, {334, 25}}ClassShapedGraphicFi-RegularSize12ID14Sty{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf400 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;\f1\fnil\fcharset0 Menlo-Regular;\f2\fnil\fcharset0 Menlo-Italic; } {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs24 \cf0 Task \f1 publish \f2\i MyLib \f1\i0 PublicationTo \f2\i MyRepo \f1\i0 Repository}Wra...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. src/regexp/syntax/regexp.go

    package syntax
    
    // Note to implementers:
    // In this package, re is always a *Regexp and r is always a rune.
    
    import (
    	"slices"
    	"strconv"
    	"strings"
    	"unicode"
    )
    
    // A Regexp is a node in a regular expression syntax tree.
    type Regexp struct {
    	Op       Op // operator
    	Flags    Flags
    	Sub      []*Regexp  // subexpressions, if any
    	Sub0     [1]*Regexp // storage for short Sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/crossVersionTest/groovy/org/gradle/api/internal/tasks/compile/tooling/JavaCompileTaskOperationResultCrossVersionTest.groovy

            operation.assertIsTask()
            operation.result instanceof JavaCompileTaskOperationResult
        }
    
        @TargetGradleVersion(">=4.6 <5.1")
        def "reports regular success result for older Gradle versions"() {
            when:
            def events = runBuild("compileJava")
    
            then:
            def operation = events.operation("Task :compileJava")
            operation.assertIsTask()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    }
    
    var _ promiseifc.WriteOnce = &countingPromise{}
    
    // NewCountingWriteOnce creates a WriteOnce that uses locking and counts goroutine activity.
    //
    // The final three arguments are like those for a regular WriteOnce factory:
    // - an optional initial value,
    // - an optional "done" channel,
    // - the value that is Set after the "done" channel becomes selectable.
    // Note that for this implementation, the reaction to `doneCh`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java

        /**
         * The (expected) path to the artifact on the local filesystem. An artifact which has this property set is assumed
         * to be not present in any regular repository and likewise has no artifact descriptor. Artifact resolution will
         * verify the path and resolve the artifact if the path actually denotes an existing file. If the path isn't valid,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top