Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,610 for Single (0.1 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            def tooMany = parent.createDir("dir12")
            def tooFew = parent.createDir("dir")
            def child = dir1.createDir("child1")
            def single = from(dir1)
    
            expect:
            def s1 = single.plus(dir2)
            s1.contains(dir1)
            s1.contains(child)
            s1.contains(dir2)
            !s1.contains(dir3)
            !s1.contains(tooFew)
            !s1.contains(tooMany)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/utils/attribute_utils.h

      return a != Attribute() && b != Attribute() && c != Attribute();
    }
    
    // Returns the single float element from an ElementsAttr. Returns empty
    // attribute if the number of elements in the attribute is not 1 or the
    // element isn't a float attribute.
    FloatAttr ExtractSingleElementAsFloat(ElementsAttr attr);
    
    // Returns the single float element if the input is an ElementsAttr, or return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 03 16:37:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. src/runtime/sigqueue_plan9.go

    	}
    }
    
    // Must only be called from a single goroutine at a time.
    //
    //go:linkname signal_enable os/signal.signal_enable
    func signal_enable(s uint32) {
    	if !sig.inuse {
    		// This is the first call to signal_enable. Initialize.
    		sig.inuse = true // enable reception of signals; cannot disable
    		noteclear(&sig.note)
    	}
    }
    
    // Must only be called from a single goroutine at a time.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/Connection.java

     *
     * <p>Implementations are not guaranteed to be completely thread-safe.
     * However, the implementations:
     * <ul>
     * <li>should allow separate threads for dispatching and receiving, i.e. single thread that dispatches
     * and a different single thread that receives should be perfectly safe</li>
     * <li>should allow stopping or requesting stopping from a different thread than receiving/dispatching</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-kotlinClosure/kotlin/build.gradle.kts

            require(closure.call() == "result") { "parameter-less closure" }
    
        fun takingUnaryClosure(closure: Closure<*>) =
            require(closure.call("foo") == "result from single parameter foo") { "unary closure" }
    
        fun takingBinaryClosure(closure: Closure<*>) =
            require(closure.call("foo", "bar") == "result from parameters foo and bar") { "binary closure" }
    }
    
    // tag::kotlinClosure[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

    }
    
    // -----
    
    // Test that functions' graph op must have only island ops wrapping a single op
    // and a single fetch op, otherwise, the pass will signal failure.
    
    func.func @graph_multi_op_island() {
      tf_executor.graph {
        // expected-error@+1 {{functions must be of a single Graph with single op Islands: tf_executor.island must perfectly wrap a single op}}
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          "tf.NoOp"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr.mlir

    // Test simple serialized computation consisting of a function named `main`
    // with a tf.Identity op forwarding the function single argument to the function
    // single result.
    
    // CHECK-LABEL: module
    // CHECK-SAME:  attributes {tf.versions = {producer = 888 : i32}} {
    // CHECK-NEXT:   func @main([[ARG0:%.+]]: tensor<?xi32> loc({{.*}})) -> tensor<?xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 13:27:00 UTC 2022
    - 998 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_rationale_v1.9.0.txt

    // block comment
    retract (
    	v1.0.0-block
    
    	// inner comment
    	v1.0.0-blockwithcomment
    )
    
    retract (
    	[v1.0.0-order, v1.0.0-order] // degenerate range
    	v1.0.0-order // single version
    
    	v1.0.1-order // single version
    	[v1.0.1-order, v1.0.1-order] // degenerate range
    )
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:11 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/verify_for_export.mlir

    // RUN: tf-opt %s -split-input-file -tf-verify-for-export -verify-diagnostics | FileCheck %s
    
    module {
      func.func @failsNoIslands() {
        // expected-error @+1 {{functions must be of a single Graph with single op Islands: first op in function is not a tf_executor.graph}}
        func.return
      }
    }
    
    // -----
    
    module {
      // CHECK-LABEL: func @passesSingleIslandOp
      func.func @passesSingleIslandOp() {
        // CHECK: _class = ["loc:@class"]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 27 17:36:06 UTC 2023
    - 885 bytes
    - Viewed (0)
Back to top