Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 851 for Listed (0.09 sec)

  1. src/io/multi.go

    	}
    	return len(s), nil
    }
    
    // MultiWriter creates a writer that duplicates its writes to all the
    // provided writers, similar to the Unix tee(1) command.
    //
    // Each write is written to each listed writer, one at a time.
    // If a listed writer returns an error, that overall write operation
    // stops and returns the error; it does not continue down the list.
    func MultiWriter(writers ...Writer) Writer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_odd_tags.txt

    stdout '^vcs-test.golang.org/git/odd-tags.git v0.1.1-0.20220223184835-9d863d525bbf$'
    
    go list -m -versions vcs-test.golang.org/git/odd-tags.git
    stdout -count=1 '^.'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 392 bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    		be those functions exported using a cgo //export comment.
    		Requires exactly one main package to be listed.
    
    	-buildmode=default
    		Listed main packages are built into executables and listed
    		non-main packages are built into .a files (the default
    		behavior).
    
    	-buildmode=shared
    		Combine all the listed non-main packages into a single shared
    		library that will be used when building with the -linkshared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

                throw ResourceExceptions.failure(versionListPattern.getUri(), String.format("Could not list versions using %s.", pattern), e);
            }
        }
    
        // lists all the values a revision token listed by a given url lister
        private List<String> listRevisionToken(ExternalResourceName versionListPattern, BuildableModuleVersionListingResolveResult result, Map<ResourcePattern, ExternalResourceName> versionListPatterns) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributesSchema.java

        /**
         * Returns true when this schema contains the given attribute.
         */
        boolean hasAttribute(Attribute<?> key);
    
        /**
         * Adds attributes to the precedence order. Attributes listed first have higher precedence.
         * <p>
         * The attributes will be added to any existing precedence order. If an attribute has already been added, adding it again
         * will fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. src/go/build/doc.go

    // variable, interpreted as a path list appropriate to the operating system
    // (on Unix, the variable is a colon-separated string;
    // on Windows, a semicolon-separated string;
    // on Plan 9, a list).
    //
    // Each directory listed in the Go path must have a prescribed structure:
    //
    // The src/ directory holds source code. The path below 'src' determines
    // the import path or executable name.
    //
    // The pkg/ directory holds installed package objects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/runtime/metrics/description_test.go

    	}
    	metrics.Read(samples)
    
    	for _, d := range all {
    		for len(samples) > 0 && samples[0].Name < d.Name {
    			t.Errorf("%s: reported by runtime but not listed in All", samples[0].Name)
    			samples = samples[1:]
    		}
    		if len(samples) == 0 || d.Name < samples[0].Name {
    			t.Errorf("%s: listed in All but not reported by runtime", d.Name)
    			continue
    		}
    		if samples[0].Value.Kind() != d.Kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:54:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_run_pkgerror.txt

    # https://golang.org/issue/39986: files reported as invalid by go/build should
    # be listed in InvalidGoFiles.
    
    go list -e -f '{{.Incomplete}}{{"\n"}}{{.Error}}{{"\n"}}{{.InvalidGoFiles}}{{"\n"}}' .
    stdout '^true\nfound packages m \(m\.go\) and main \(main\.go\) in '$PWD'\n\[main.go\]\n'
    
    
    # https://golang.org/issue/45827: 'go run .' should report the same package
    # errors as 'go build' and 'go list'.
    
    ! go build
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 15:48:57 UTC 2021
    - 877 bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/IgnoreJRERequirement.java

    import java.lang.annotation.Target;
    
    /**
     * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android.
     *
     * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}.
     */
    @Target({METHOD, CONSTRUCTOR, TYPE})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 02:06:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/reflect/IgnoreJRERequirement.java

    import java.lang.annotation.Target;
    
    /**
     * Disables Animal Sniffer's checking of compatibility with older versions of Java/Android.
     *
     * <p>Each package's copy of this annotation needs to be listed in our {@code pom.xml}.
     */
    @Target({METHOD, CONSTRUCTOR, TYPE})
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 02:06:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top