Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 364 for isDependent (0.21 sec)

  1. src/math/big/bits_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements the Bits type used for testing Float operations
    // via an independent (albeit slower) representations for floating-point
    // numbers.
    
    package big
    
    import (
    	"fmt"
    	"slices"
    	"testing"
    )
    
    // A Bits value b represents a finite floating-point number x of the form
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/README.md

    the language generators; it digests the Op registry and API definitions to build
    the model and provides utilities for the language generators.
    
    The *View* and rendering classes map the language-independent Model classes
    (`OpSpec`, `ArgSpec`, `AttrSpec`, etc.) to language-specific `SourceCode`. The
    framework does not impose any design on the language-specific generators, but
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                    expression.convertConstantExpression(builder)
                }
    
                is FirVarargArgumentsExpression -> {
                    // Vararg arguments may have multiple independent expressions associated.
                    // Choose one to be the representative PSI value for the entire assembled argument.
                    val (annotationValues, representativePsi) = arguments.convertVarargsExpression(builder)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/os/exec/dot_test.go

    		} else if err == nil {
    			t.Fatalf(`with PATH='', LookPath(%#q) = %#q; want non-nil error`, "execabs-test", found)
    		}
    
    		// Set PATH to include an explicit directory that contains a completely
    		// independent executable that happens to have the same name as an
    		// executable in ".". If "." is included implicitly, looking up the
    		// (unqualified) executable name will return ErrDot; otherwise, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/nosql-databases-couchbase.md

    * Get the document with that ID.
    * Put the contents of the document in a `UserInDB` model.
    
    By creating a function that is only dedicated to getting your user from a `username` (or any other parameter) independent of your *path operation function*, you can more easily reuse it in multiple parts and also add <abbr title="Automated test, written in code, that checks if another piece of code is working correctly.">unit tests</abbr> for it:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    	unstructured.SetNestedField(original.Object, "bar", "metadata", "labels", "foo")
    
    	// Note: we don't add metadata.unspecified as in the other tests. ObjectMeta pruning is independent of the generic pruning
    	//       and we do not guarantee that we prune ObjectMeta on read from etcd.
    
    	ctx := genericapirequest.WithNamespace(genericapirequest.NewContext(), metav1.NamespaceDefault)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginIntegrationTest.groovy

                        }
                    }
                }
            """
            expect:
            succeeds "jar"
        }
    
        def "Generated plugin descriptor are os independent"() {
            given:
            buildFile()
            goodPlugin()
            buildFile << """
                gradlePlugin {
                    plugins {
                        testPlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

            1 * serverHandler.dispatch("[message 7]") >> { replies.countDown() }
            1 * serverHandler.dispatch("[message 8]") >> { replies.countDown() }
            0 * _._
        }
    
        def "each channel is independent"() {
            Dispatch<String> clientHandler1 = Mock()
            Dispatch<String> clientHandler2 = Mock()
            Dispatch<String> serverHandler = Mock()
            def server = new Participant()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

     *
     *  * **Canceled:** the web socket connection failed. Messages that were successfully enqueued by
     *    either peer may not have been transmitted to the other.
     *
     * Note that the state progression is independent for each peer. Arriving at a gracefully-closed
     * state indicates that a peer has sent all of its outgoing messages and received all of its
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "Task uses the Configuration API")
        def "copied configuration has independent set of listeners"() {
            buildFile << """
    configurations {
      conf
    }
    
    def calls = []
    
    def conf = configurations.conf
    conf.incoming.beforeResolve { incoming ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top