Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 364 for isDependent (0.2 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

      [(UsedBy<"DepthwiseConv2D"> $old_value),
       (CanUpdateShapeWithAxis<3> $qtype, $old_value)],
      [], (addBenefit 10)>;
    
    // The Rank op produces result which is independent with the quantization
    // parameters of the input, so we can remove the quantization ops.
    def OptimizeAwayRankDequantQuant :
          Pat<(TF_RankOp (TFL_DequantizeOp (TFL_QuantizeOp $input, $qtype))),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. pyproject.toml

    authors = [
        { name = "Sebastián Ramírez", email = "******@****.***" },
    ]
    classifiers = [
        "Intended Audience :: Information Technology",
        "Intended Audience :: System Administrators",
        "Operating System :: OS Independent",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python",
        "Topic :: Internet",
        "Topic :: Software Development :: Libraries :: Application Frameworks",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

    }
    
    // CHECK:      tf_executor.island
    // CHECK-NEXT:   "tf.Const"
    // CHECK-NEXT:   "tf.Const"
    // CHECK-NEXT:   tf_executor.yield
    
    
    // Check that we merge two islands with independent fetches, when one is a data
    // fetch and the other is a control fetch.
    // CHECK-LABEL: func @merge_independently_fetched_islands_data_and_control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	// This extension must only be used when type is object and may have 2 possible values:
    	//
    	// 1) `granular`:
    	//      These maps are actual maps (key-value pairs) and each fields are independent
    	//      from each other (they can each be manipulated by separate actors). This is
    	//      the default behaviour for all maps.
    	// 2) `atomic`: the list is treated as a single entity, like a scalar.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/ByteSource.java

     * immutable <i>supplier</i> of {@code InputStream} instances.
     *
     * <p>{@code ByteSource} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a stream:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
     *       returned stream is closed.
     *   <li><b>Convenience methods:</b> These are implementations of common operations that are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
  7. docs/en/docs/how-to/sql-databases-peewee.md

    ```
    
    Here we have an empty `yield` because we are actually not using the database object directly.
    
    It is connecting to the database and storing the connection data in an internal variable that is independent for each request (using the `contextvars` tricks from above).
    
    Because the database connection is potentially I/O blocking, this dependency is created with a normal `def` function.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 16 13:23:25 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/script/state.go

    	// s.env contains no duplicates.
    	env := cleanEnv(initialEnv, absWork)
    
    	envMap := make(map[string]string, len(env))
    
    	// Add entries for ${:} and ${/} to make it easier to write platform-independent
    	// paths in scripts.
    	envMap["/"] = string(os.PathSeparator)
    	envMap[":"] = string(os.PathListSeparator)
    
    	for _, kv := range env {
    		if k, v, ok := strings.Cut(kv, "="); ok {
    			envMap[k] = v
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/math/big/decimal.go

    		shift = 0
    	}
    
    	// Convert mantissa into decimal representation.
    	s := m.utoa(10)
    	n := len(s)
    	x.exp = n
    	// Trim trailing zeros; instead the exponent is tracking
    	// the decimal point independent of the number of digits.
    	for n > 0 && s[n-1] == '0' {
    		n--
    	}
    	x.mant = append(x.mant[:0], s[:n]...)
    
    	// Do any (remaining) shift right in decimal representation.
    	if shift < 0 {
    		for shift < -maxShift {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/progress/DefaultProgressLoggerFactoryTest.groovy

                assert event.description == "child"
                assert event.parentProgressOperationId == parentId
            }
        }
    
        def "multiple threads can log independent operations"() {
            OperationIdentifier parentId
            OperationIdentifier childId
            OperationIdentifier id2
    
            when:
            async {
                start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top