Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 212 for takes (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.val1.split(' ') == ['Rook', 'takes', '👑']":   6,
    				"self.val1.split(' ', 2) == ['Rook', 'takes 👑']":   6,
    				"self.val1.substring(5) == 'takes 👑'":              5,
    				"self.val1.substring(0, 4) == 'Rook'":              5,
    				"self.val1.substring(4, 10).trim() == 'takes'":     6,
    				"self.val1.upperAscii() == 'ROOK TAKES 👑'":         6,
    				"self.val1.lowerAscii() == 'rook takes 👑'":         6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            outputContains("result = [a.jar.red.green, b.jar.red.green")
        }
    
        def "task input file collection can include the output of artifact transform of project dependencies which takes the output of another transform as input parameter"() {
            def configurationCache = newConfigurationCacheFixture()
    
            createDirs("a", "b")
            settingsFile << """
                include 'a', 'b'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    //       .Attr("N: int >= 2")
    //       .Attr("T: type");
    // that defines two inputs, "concat_dim" and "values" (in that order).
    // You must use TF_AddInput() for the first input (since it takes a
    // single tensor), and TF_AddInputList() for the second input (since
    // it takes a list, even if you were to pass a list with a single
    // tensor), as in:
    //   TF_OperationDescription* desc = TF_NewOperation(graph, "Concat", "c");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:how_does_it_work]]
    == How does it work?
    
    Before a task is executed for the first time, Gradle takes a fingerprint of the inputs.
    This fingerprint contains the paths of input files and a hash of the contents of each file.
    Gradle then executes the task.
    If the task completes successfully, Gradle takes a fingerprint of the outputs.
    This fingerprint contains the set of output files and a hash of the contents of each file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    config_setting(
        name = "linux_x86_64_no_sse",
        values = {
            "cpu": "k8",
            "copt": "-mno-sse4.2",
        },
        visibility = ["//visibility:public"],
    )
    
    # This condition takes precedence over :linux_x86_64
    # TODO(b/290533709): Remove this with PJRT build rule cleanup.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        table = lookup_ops.StaticHashTable(init, default_value=-1)
    
        input_vocabs_placeholder = array_ops.placeholder(
            dtypes.string, shape=(None,), name='input_vocabs'
        )
    
        # Introduce a matmul op that takes the lookup values to observe the
        # effects of quantization.
        lookup_vals = math_ops.cast(
            table.lookup(input_vocabs_placeholder), dtypes.float32
        )
        # shape: (2, ?)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        being empty means False and being non-empty means True.
    input: A list of input tensors.
    then_branch: A function that takes 'inputs' and returns a list of
        tensors, whose types are the same as what else_branch returns.
    else_branch: A function that takes 'inputs' and returns a list of
        tensors.  whose types are the same as what then_branch returns.
      }];
    
      let arguments = (ins
        TF_Tensor:$cond,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            fails ":app:resolveGreen"
    
            then:
            assertTransformationsExecuted()
            failure.assertHasDescription("Execution failed for task ':app:resolveGreen'") // failure is reported for task that takes the files as input
            failure.assertResolutionFailure(":app:implementation")
            failure.assertHasFailures(1)
            failure.assertThatCause(CoreMatchers.containsString("Could not find unknown:not-found:4.3"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    The `filter()` method has two variants, which behave differently:
    
    * one takes a `{javaApi}/java/io/FilterReader.html[FilterReader]` and is designed to work with Ant filters, such as `ReplaceTokens`
    * one takes a closure or link:{javadocPath}/org/gradle/api/Transformer.html[Transformer] that defines the transformation for each line of the source file
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/httproute_test.go

    				},
    				"test-duplicate-domains.default:80": {"test-duplicate-domains.default"},
    			},
    			map[string]string{
    				"allow_any": "PassthroughCluster",
    				// Virtual service destination takes precedence
    				"test-duplicate-domains.default.svc.cluster.local:80": "outbound|80||test-duplicate-domains.default",
    				"test-duplicate-domains.default:80":                   "outbound|80||test-duplicate-domains.default",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top