Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,610 for Single (0.49 sec)

  1. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/groovy/build.gradle

    // The parameters for a single unit of work
    interface ReverseParameters extends WorkParameters {
        RegularFileProperty getFileToReverse()
        DirectoryProperty getDestinationDir()
    }
    
    // The implementation of a single unit of work.
    abstract class ReverseFile implements WorkAction<ReverseParameters> {
        private final FileSystemOperations fileSystemOperations
    
        @Inject
        public ReverseFile(FileSystemOperations fileSystemOperations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

        /**
         * Adds a listener.  A single object can implement multiple interfaces, and all interfaces are registered by a
         * single invocation of this method.  There is no order dependency: if a broadcaster has already been made for type
         * T, the listener will be registered with it if <code>(listener instanceof T)</code> returns true.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/sds/writer_test.go

    			format:     TABULAR,
    			items:      []SecretItem{},
    			expected:   []string{},
    			unexpected: secretItemColumns,
    		},
    		{
    			name:   "test tabular output with a single secret item",
    			format: TABULAR,
    			items: []SecretItem{
    				{
    					Name:        "olinger",
    					Data:        "certdata",
    					Source:      "source",
    					Destination: "destination",
    					SecretMeta: SecretMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue51229.go

    func _() {
    	// P can be inferred as there's a single specific type and no tilde.
    	var _ chan int = ch1 /* ERRORx `cannot use ch1.*value of type chan<- int` */ ()
    	var _ chan<- int = ch1()
    
    	// P cannot be inferred as there's a tilde.
    	ch2 /* ERROR "cannot infer P" */ ()
    	type myChan chan int
    	ch2[myChan]()
    
    	// P can be inferred as there's a single specific type and no tilde.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       * limits, this call may be executed well before processing the request is able to begin.
       *
       * This will be invoked only once for a single [Call]. Retries of different routes or redirects
       * will be handled within the boundaries of a single [callStart] and [callEnd]/[callFailed] pair.
       */
      open fun callStart(call: Call) {
      }
    
      /**
       * Invoked prior to a proxy selection.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

                    )
                )
            }
    
    
    private
    fun ApiTypeUsage.hasJavaClass(): Boolean =
        isJavaClass ||
            isKotlinArray && typeArguments.single().isJavaClass ||
            isKotlinCollection && typeArguments.single().isJavaClass
    
    
    private
    fun candidatesForExtensionFrom(type: ApiType): Sequence<ApiFunction> =
        type.functions.filter(::isCandidateForExtension).asSequence()
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 21:41:53 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top