Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 611 for Invoke (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicy.java

            this.artifactCacheRules = new ArrayList<>(policy.artifactCacheRules);
            this.offline = policy.offline;
            this.refresh = policy.refresh;
        }
    
        /**
         * Sets the validator to invoke prior to each mutation.
         */
        public void setMutationValidator(MutationValidator validator) {
            this.mutationValidator = validator;
        }
    
        @Override
        public void setOffline() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            private val mainKtFile: KtFile,
            private val injectedSymbolMapping: Map<CodeFragmentCapturedId, InjectedValue>
        ) : (FirReference, Fir2IrConversionScope) -> InjectedValue? {
            override fun invoke(calleeReference: FirReference, conversionScope: Fir2IrConversionScope): InjectedValue? {
                val irFile = conversionScope.containingFileIfAny()
                val psiFile = (irFile?.fileEntry as? PsiIrFileEntry)?.psiFile
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/linalg_grad.cc

      // wrt the input.
      if (reduced_label_set.empty()) {
        return grad_reduced;
      }
      // Otherwise, we currently have the gradient wrt the output of the reduction
      // operation "abc->ac". Invoke the subroutine for the gradient for unary
      // einsum with reductions.
      return EinsumGradReducedHelper(scope, grad_reduced, left_subs, input_subs,
                                     input_shape, reduced_label_set);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/Hashing.java

    import static com.google.common.base.Throwables.throwIfUnchecked;
    import static java.lang.invoke.MethodType.methodType;
    
    import com.google.errorprone.annotations.Immutable;
    import com.google.j2objc.annotations.J2ObjCIncompatible;
    import java.lang.invoke.MethodHandle;
    import java.lang.invoke.MethodHandles;
    import java.security.Key;
    import java.util.ArrayList;
    import java.util.Arrays;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

              Class.forName("com.google.appengine.api.ThreadManager")
                  .getMethod("currentRequestThreadFactory")
                  .invoke(null);
        } catch (IllegalAccessException | ClassNotFoundException | NoSuchMethodException e) {
          throw new RuntimeException("Couldn't invoke ThreadManager.currentRequestThreadFactory", e);
        } catch (InvocationTargetException e) {
          throw Throwables.propagate(e.getCause());
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. src/net/net.go

    	String() string  // string form of address (for example, "192.0.2.1:25", "[2001:db8::1]:80")
    }
    
    // Conn is a generic stream-oriented network connection.
    //
    // Multiple goroutines may invoke methods on a Conn simultaneously.
    type Conn interface {
    	// Read reads data from the connection.
    	// Read can be made to time out and return an error after a fixed
    	// time limit; see SetDeadline and SetReadDeadline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                for (String prefix : Arrays.asList("get", "is", "to", "as")) {
                    Method method = classMap.findMethod(prefix + methodBase);
                    if (method != null) {
                        return method.invoke(value, OBJECT_ARGS);
                    }
                }
                return null;
            } catch (InvocationTargetException e) {
                throw new IntrospectionException(e.getTargetException());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

            prettyPrint(event).let { prettyPrinted ->
                println(prettyPrinted)
                events.add(LogEvent(event, prettyPrinted))
            }
        }
    
        override fun invoke(severity: ReportSeverity, message: String, position: Position?) {
            println("[EDITOR_$severity] '$message' ${position?.line ?: ""}")
            reports.add(IdeReport(severity, message, position))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. pkg/kubelet/status/generate.go

    	// if a new sandbox does not need to be created for a pod, it indicates that
    	// a sandbox for the pod with networking configured already exists.
    	// Otherwise, the kubelet needs to invoke the container runtime to create a
    	// fresh sandbox and configure networking for the sandbox.
    	if !newSandboxNeeded {
    		return v1.PodCondition{
    			Type:   v1.PodReadyToStartContainers,
    			Status: v1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

        ::mlir::Value variance = rewriter.create<TF::MeanOp>(
            bn_op.getLoc(), mean_var_type, square_diff, reduce_dim_op,
            /*keep_dims=*/rewriter.getBoolAttr(false));
    
        // Invoke BatchNormInferenceOp
        ::mlir::FloatAttr epsilon = bn_op.getEpsilonAttr();
        ::mlir::Value batch_norm = rewriter.create<mhlo::BatchNormInferenceOp>(
            bn_op.getLoc(), inputs, bn_op.getScale(), bn_op.getOffset(), mean,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top