Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,777 for whereIs (0.12 sec)

  1. src/cmd/link/testdata/pe-llvm/main.go

    // have been created by llvm-rc or msvc's rc.exe, which means there's the
    // @feat.00 symbol as well as split .rsrc$00 and .rsrc$01 section to deal with.
    //
    // rsrc.syso is created using llvm with:
    //    {i686,x86_64,armv7,arm64}-w64-mingw32-windres -i a.rc -o rsrc_$GOARCH.syso -O coff
    // where this windres calls into llvm-rc and llvm-cvtres. The source file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PluginVariantResolveIntegrationTest.groovy

                    }
                }
    
                java {
                   // make sure we add a sources variant like in the bug report
                   // because this is this variant which causes the problem: because there's
                   // a mismatch on the Java version for the other variants, this one ended up
                   // being selected!
                   withSourcesJar()
                }
    
                $publishConfig
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 12:51:28 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IncrementalChangesContext.java

            this(parent, parent.getRebuildReasons(), parent.getChanges().orElse(null));
        }
    
        /**
         * Returns the reasons to re-execute the work, empty if there's no reason to re-execute.
         */
        public ImmutableList<String> getRebuildReasons() {
            return rebuildReasons;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/component/SoftwareComponentFactory.java

     * plugins a way to create software components. Currently the
     * software factory only allows the creation of adhoc software
     * components which can be used for publishing simple components.
     *
     * This is the case whenever there's no component model to be
     * used and that the plugin can solely rely on outgoing variants
     * to publish variants.
     *
     * @since 5.3
     */
    @ServiceScope(Scope.Global.class)
    public interface SoftwareComponentFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_extending_openapi/test_tutorial001.py

        assert response.json() == {
            "openapi": "3.1.0",
            "info": {
                "title": "Custom title",
                "summary": "This is a very custom OpenAPI schema",
                "description": "Here's a longer description of the custom **OpenAPI** schema",
                "version": "2.5.0",
                "x-logo": {
                    "url": "https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png"
                },
            },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/MultilineStringsJavadocOptionFileOption.java

    import java.util.List;
    
    public class MultilineStringsJavadocOptionFileOption extends AbstractListJavadocOptionFileOption<List<String>> {
    
        // We should never attempt to join strings so if you see this, there's a problem
        private static final String JOIN_BY = "Not Used!";
    
        public MultilineStringsJavadocOptionFileOption(String option, List<String> value) {
            super(option, value, JOIN_BY);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/Closeables.java

       * I/O resource, it should generally be safe in the case of a resource that's being used only for
       * reading, such as an {@code InputStream}. Unlike with writable resources, there's no chance that
       * a failure that occurs when closing the stream indicates a meaningful problem such as a failure
       * to flush all bytes to the underlying resource.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_toolchain.txt

    # go get go@1.21 should work if we are the Go 1.21 language version,
    # even though there's no toolchain for it.
    # (Older versions resolve to the latest release in that version, so for example
    # go get go@1.20 might resolve to 1.20.9, but if we're the devel copy of
    # Go 1.21, there's no release yet to resolve to, so we resolve to ourselves.)
    env TESTGO_VERSION=go1.21
    go get go@1.19 toolchain@none
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 19:33:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. docs/contribute/concurrency.md

    The application-layer can also do blocking reads. If the application asks to read and there's nothing available, we need to hold that thread until either the bytes arrive, the stream is closed, or a timeout elapses. If we get bytes but there's nobody asking for them, we buffer them. We don't consider bytes as delivered for flow control until they're consumed by the application.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. src/index/suffixarray/suffixarray.go

    // Example use:
    //
    //	// create index for some data
    //	index := suffixarray.New(data)
    //
    //	// lookup byte slice s
    //	offsets1 := index.Lookup(s, -1) // the list of all indices where s occurs in data
    //	offsets2 := index.Lookup(s, 3)  // the list of at most 3 indices where s occurs in data
    package suffixarray
    
    import (
    	"bytes"
    	"encoding/binary"
    	"errors"
    	"io"
    	"math"
    	"regexp"
    	"slices"
    	"sort"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top