Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 180 for bar7 (0.04 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/RemoteProject.groovy

            this.fsOps = fsOps
            this.execOps = execOps
        }
    
        /**
         * URI of the git repository.
         *
         * Either the remote git repository URL, the path to a local bare git repository or the path to a local git clone.
         */
        @Input
        abstract Property<String> getRemoteUri()
    
        /**
         * Git reference to use.
         */
        @Input
        abstract Property<String> getRef()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/mime/type_unix.go

    			continue
    		} else if fields[0][0] == '#' || fields[2][0] != '*' || fields[2][1] != '.' {
    			continue
    		}
    
    		extension := fields[2][1:]
    		if strings.ContainsAny(extension, "?*[") {
    			// Not a bare extension, but a glob. Ignore for now:
    			// - we do not have an implementation for this glob
    			//   syntax (translation to path/filepath.Match could
    			//   be possible)
    			// - support for globs with weight ordering would have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

            explaining why this is.
        */
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
        def "daemon bootstrap classpath is bare bones"() {
            given:
            buildFile << """
                task loadClasses {
                    doLast {
                        def systemLoader = ClassLoader.systemClassLoader
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/constdecl.go

    	/* some gap */
    	_ = 255 + iota
    	_ = byte /* ERROR "overflows" */ (255) + iota
    	_ /* ERROR "overflows" */
    )
    
    // Test cases from issue.
    const (
    	ok = byte(iota + 253)
    	bad
    	barn
    	bard // ERROR "overflows"
    )
    
    const (
    	c = len([1 - iota]int{})
    	d
    	e // ERROR "invalid array length"
    	f // ERROR "invalid array length"
    )
    
    // Test that identifiers in implicit (omitted) RHS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

        type: object
        properties:
          bars:
            description: List of Bars and their specs.
            type: array
            items:
              type: object
              required:
              - name
              properties:
                name:
                  description: Name of Bar.
                  type: string
                age:
                  description: Age of Bar.
                  type: string
                bazs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/str/path.go

    	trimmed := s[len(prefix):]
    	if len(trimmed) > 0 && os.IsPathSeparator(trimmed[0]) {
    		if runtime.GOOS == "windows" && prefix == filepath.VolumeName(prefix) && len(prefix) == 2 && prefix[1] == ':' {
    			// Joining a relative path to a bare Windows drive letter produces a path
    			// relative to the working directory on that drive, but the original path
    			// was absolute, not relative. Keep the leading path separator so that it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/MinimalCollection.java

    import java.util.Iterator;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A simplistic collection which implements only the bare minimum allowed by the spec, and throws
     * exceptions whenever it can.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue39634.go

    func t4[T Numeric4](s[]T){if( /* ERROR "non-boolean" */ 0){*s /* ERROR "cannot indirect" */ [0]}}
    
    // crash 7
    type foo7 interface { bar() }
    type x7[A any] struct{ foo7 }
    func main7() { var _ foo7 = x7[int]{} }
    
    // crash 8
    type foo8[A any] interface { ~A /* ERROR "cannot be a type parameter" */ }
    func bar8[A foo8[A]](a A) {}
    
    // crash 9
    type foo9[A any] interface { foo9 /* ERROR "invalid recursive type" */ [A] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/monitoring.go

    	if addr != "" {
    		var err error
    		if listener, err = net.Listen("tcp", addr); err != nil {
    			return nil, fmt.Errorf("unable to listen on socket: %v", err)
    		}
    	}
    
    	// NOTE: this is a temporary solution to provide bare-bones debug functionality
    	// for pilot. a full design / implementation of self-monitoring and reporting
    	// is coming. that design will include proper coverage of statusz/healthz type
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/strings/example_test.go

    func ExampleFields() {
    	fmt.Printf("Fields are: %q", strings.Fields("  foo bar  baz   "))
    	// Output: Fields are: ["foo" "bar" "baz"]
    }
    
    func ExampleFieldsFunc() {
    	f := func(c rune) bool {
    		return !unicode.IsLetter(c) && !unicode.IsNumber(c)
    	}
    	fmt.Printf("Fields are: %q", strings.FieldsFunc("  foo1;bar2,baz3...", f))
    	// Output: Fields are: ["foo1" "bar2" "baz3"]
    }
    
    func ExampleHasPrefix() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top