Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,620 for Single (0.12 sec)

  1. pkg/kubelet/cm/topologymanager/policy_single_numa_node.go

    	numaInfo *NUMAInfo
    	opts     PolicyOptions
    }
    
    var _ Policy = &singleNumaNodePolicy{}
    
    // PolicySingleNumaNode policy name.
    const PolicySingleNumaNode string = "single-numa-node"
    
    // NewSingleNumaNodePolicy returns single-numa-node policy.
    func NewSingleNumaNodePolicy(numaInfo *NUMAInfo, opts PolicyOptions) Policy {
    	return &singleNumaNodePolicy{numaInfo: numaInfo, opts: opts}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/internal/quoted/quoted.go

    import (
    	"flag"
    	"fmt"
    	"strings"
    	"unicode"
    )
    
    func isSpaceByte(c byte) bool {
    	return c == ' ' || c == '\t' || c == '\n' || c == '\r'
    }
    
    // Split splits s into a list of fields,
    // allowing single or double quotes around elements.
    // There is no unescaping or other processing within
    // quoted fields.
    //
    // Keep in sync with cmd/dist/quoted.go
    func Split(s string) ([]string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:04:06 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DeclarativeDocument.kt

                val value: Any
            }
    
            interface ValueFactoryNode : ValueNode {
                val factoryName: String
                val values: List<ValueNode> // TODO: restrict to a single value? or even a single literal?
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/executor_tpuv1_outline_island/executor_tpuv1_outline_tpu_island.mlir

    // CHECK-LABEL: func nested @_tpu_v1_compat_outlined_func0(%arg0: tensor<i1>) -> tensor<i1>
    // CHECK-NEXT: tf.SomeTpuOp
    // CHECK-NEXT: tf.SomeOtherTpuOp
    
    // -----
    
    // Test single-core TPU case with single-op cluster.
    
    // CHECK-LABEL: @func4
    func.func @func4() {
      tf_executor.graph {
    // CHECK: island
    // CHECK: PartitionedCall
    // CHECK-SAME: @_tpu_v1_compat_outlined::@_tpu_v1_compat_outlined_func0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 04 03:54:58 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top