Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for abde (0.03 sec)

  1. src/internal/trace/order_test.go

    				t.Fatalf("check %q: expected to be able to pop after %d pops", name, i+1)
    			} else if got != want {
    				t.Fatalf("check %q: expected value %d after on pop %d, got %d", name, want, i+1, got)
    			}
    		}
    		if _, ok := q.pop(); ok {
    			t.Fatalf("check %q: did not expect to be able to pop more values", name)
    		}
    		if _, ok := q.pop(); ok {
    			t.Fatalf("check %q: did not expect to be able to pop more values a second time", name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/custom-docs-ui-assets.md

        If you integrate your API with an OAuth2 provider, you will be able to authenticate and come back to the API docs with the acquired credentials. And interact with it using the real OAuth2 authentication.
    
        Swagger UI will handle it behind the scenes for you, but it needs this "redirect" helper.
    
    ### Create a *path operation* to test it
    
    Now, to be able to test that everything works, create a *path operation*:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/handling-errors.md

    This way, if any part of Starlette's internal code, or a Starlette extension or plug-in, raises a Starlette `HTTPException`, your handler will be able to catch and handle it.
    
    In this example, to be able to have both `HTTPException`s in the same code, Starlette's exceptions is renamed to `StarletteHTTPException`:
    
    ```Python
    from starlette.exceptions import HTTPException as StarletteHTTPException
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

            server.expectGet("/path/toolchain.zip", toolchainArchive)
    
            when:
            failure = executer
                    .withTasks("compileJava")
                    .requireOwnGradleUserHomeDir("needs to be able to provision fresh toolchains")
                    .withToolchainDownloadEnabled()
                    .runWithFailure()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

         * local repository manager needs to be configured to make session be able to create session instance.
         *
         * @return SessionBuilder configured with minimally required things for "Maven-based resolution". At least LRM must
         * be set on builder to make it able to create session instances.
         */
        @Override
        public SessionBuilder get() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/diagnostics/DaemonDiagnostics.java

        public DaemonDiagnostics(File daemonLog, @Nullable Long pid) {
            this.daemonLog = daemonLog;
            this.pid = pid;
        }
    
        /**
         * @return pid. Can be null, it means the daemon was not able to identify its pid.
         */
        public @Nullable Long getPid() {
            return pid;
        }
    
        public File getDaemonLog() {
            return daemonLog;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild/packaging/transforms/CopyPublicApiClassesTransform.kt

    import org.gradle.api.tasks.Classpath
    import org.gradle.work.DisableCachingByDefault
    import java.util.zip.ZipEntry
    import java.util.zip.ZipFile
    
    
    // TODO This should work via filtering classes dirs, but for that we need to be able to set a default attribute
    //      on classes directories -- see https://github.com/gradle/gradle/issues/29319
    @DisableCachingByDefault(because = "Only copies public API classes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

                // `KotlinCompositeProvider<P>` should always be a provider of type `P` itself, so the cast is legal. Still, suppressing the
                // error is unfortunate, but to properly type this, we'd need to be able to restrict `KotlinCompositeProvider<P>` to be a
                // subtype of `P`, which is not possible in Kotlin.
                @Suppress("UNCHECKED_CAST")
                when (provider) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/GlobalUserInputReceiver.java

         */
        void readAndForwardStdin(ReadStdInEvent event);
    
        /**
         * Defines the {@link UserInputReceiver} instance for this service to delegate to.
         *
         * <p>Typically, the provided instance will be able to read from the console and forward the result to the daemon, but doesn't have to.
         * The instance is not injected directly into this service as the instance will be constructed in some other scope.
         * </p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference_pass.cc

    #define GEN_PASS_DEF_TENSORFLOWSHAPEINFERENCEPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // This transformation pass propagate shapes on the TensorFlow graph.
    // It is a ModulePass in order to be able to change function types.
    class ShapeInference
        : public impl::TensorFlowShapeInferencePassBase<ShapeInference> {
     public:
      ShapeInference() = default;
      explicit ShapeInference(ArrayRef<ArrayRef<int64_t>> input_shapes)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top