Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,921 for runAction (2.89 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

          extends AbstractTransformFuture<I, O, Function<? super I, ? extends O>, O> {
        TransformFuture(
            ListenableFuture<? extends I> inputFuture, Function<? super I, ? extends O> function) {
          super(inputFuture, function);
        }
    
        @Override
        @ParametricNullness
        O doTransform(Function<? super I, ? extends O> function, @ParametricNullness I input) {
          return function.apply(input);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        const SymbolTable& symbol_table, FuncOp function,
        FunctionLibraryDefinition* flib_def,
        llvm::SmallDenseSet<FuncOp>& visited_functions) {
      // Return early if the function has already been exported.
      bool is_new_function = visited_functions.insert(function).second;
      if (!is_new_function) return absl::OkStatus();
    
      auto function_name = FindFunctionName(configs, function);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

        const SymbolTable& symbol_table, FuncOp function,
        FunctionLibraryDefinition* flib_def,
        llvm::SmallDenseSet<FuncOp>& visited_functions) {
      // Return early if the function has already been exported.
      bool is_new_function = visited_functions.insert(function).second;
      if (!is_new_function) return absl::OkStatus();
    
      auto function_name = FindFunctionName(configs, function);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionOutput.kt

        val providesConfigureBlock: Boolean
    )
    
    
    private
    fun functionInvocationString(function: SchemaFunction, receiver: ObjectOrigin?, invocationId: OperationId, parameterBindings: ParameterValueBinding) =
        receiver?.toString()?.plus(".").orEmpty() + buildString {
            if (function is DataConstructor) {
                val fqn = when (val ref = function.dataClass) {
                    is DataTypeRef.Name -> ref.fqName.toString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CredentialProvider.
    func (in *CredentialProvider) DeepCopy() *CredentialProvider {
    	if in == nil {
    		return nil
    	}
    	out := new(CredentialProvider)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 09 11:19:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/crypto/aes/cipher_s390x.go

    		return newCipherGeneric(key)
    	}
    
    	var function code
    	switch len(key) {
    	case 128 / 8:
    		function = aes128
    	case 192 / 8:
    		function = aes192
    	case 256 / 8:
    		function = aes256
    	default:
    		return nil, KeySizeError(len(key))
    	}
    
    	var c aesCipherAsm
    	c.function = function
    	c.key = c.storage[:len(key)]
    	copy(c.key, key)
    	return &c, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/output/v1alpha3/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AvailableUpgrade.
    func (in *AvailableUpgrade) DeepCopy() *AvailableUpgrade {
    	if in == nil {
    		return nil
    	}
    	out := new(AvailableUpgrade)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 07:05:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedModelValue.java

        /**
         * Updates the current value. The function is passed the current value or {@code null} if there is no value, and the function's return value is
         * used as the new value.
         *
         * <p>The calling thread must own the mutable state from which the value is calculated (via {@link ModelContainer#fromMutableState(Function)}). At most a single thread
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/func.go

    	// RangeParent, if non-nil, is the first non-range body function containing
    	// the closure for the body of a range function.
    	RangeParent *Func
    
    	// funcLitGen, rangeLitGen and goDeferGen track how many closures have been
    	// created in this function for function literals, range-over-func loops,
    	// and go/defer wrappers, respectively. Used by closureName for creating
    	// unique function names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/functional/src/main/java/org/gradle/internal/io/IoFunction.java

    import java.io.UncheckedIOException;
    import java.util.function.Function;
    
    /**
     * A variant of {@link Function} that is allowed to throw {@link IOException}.
     */
    @FunctionalInterface
    public interface IoFunction<T, R> {
        @Nullable
        R apply(@Nullable T t) throws IOException;
    
        /**
         * Wraps an {@link IOException}-throwing {@link IoFunction} into a regular {@link Function}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top