Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,389 for addLink (0.13 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReport.out

    org.slf4j:slf4j-log4j12:1.6.1
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/grad_testutil.h

    #include <vector>
    
    #include "tensorflow/cc/framework/ops.h"
    #include "tensorflow/cc/framework/scope.h"
    
    namespace tensorflow {
    namespace test {
    
    /// Calls the gradient function registered for 'op', adding gradient operations
    /// to the graph associated with 'scope'. Gradient outputs for each 'op' input
    /// are returned in 'grad_outputs'.
    Status CallGradFunction(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 17 09:17:01 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  3. cmd/cloud-controller-manager/README.md

    Please refer to `k8s.io/cloud-provider/sample` if you do not have the requirement of adding/deleting controllers in CCM.
    
    ## Things you should NOT do
    
    1. Vendor in `k8s.io/cmd/cloud-controller-manager`.
    2. Directly modify anything under `k8s.io/cmd/cloud-controller-manager` in this repo. 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 01 18:22:09 UTC 2021
    - 707 bytes
    - Viewed (0)
  4. ISSUES.md

    1.  Make sure the Issue Template is filled out.
    1.  The issue should be related to the repo it is created in.
    
    **Here's why we have this policy:** We want to focus on the work that benefits
    the whole community, e.g., fixing bugs and adding features. Individual support
    should be sought on Stack Overflow or other non-GitHub channels. It helps us to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 11 22:37:27 UTC 2021
    - 606 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		return err
    	}
    
    	r := &Retract{
    		VersionInterval: vi,
    	}
    	if vi.Low == vi.High {
    		r.Syntax = f.Syntax.addLine(nil, "retract", AutoQuote(vi.Low))
    	} else {
    		r.Syntax = f.Syntax.addLine(nil, "retract", "[", AutoQuote(vi.Low), ",", AutoQuote(vi.High), "]")
    	}
    	if rationale != "" {
    		for _, line := range strings.Split(rationale, "\n") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

          SmallVector<Location>(inputs.size(), quantization_func.getLoc()));
      func_input_arg = block->getArgument(0);
      return quantization_func;
    }
    
    // Post-actions after adding quantization logics. Post-actions include
    // 1) Adding the created function in the symbol table
    // 2) Creating a PartitionedCallOp in the main graph that calls the created
    //    function.
    TF::PartitionedCallOp FinalizeFunctionRegister(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    Therefore, before adding _new attributes_, you should always ask yourself if there isn't an attribute which carries the semantics you need.
    If there isn't, then you may add a new attribute.
    When adding new attributes, you must also be careful because it's possible that it creates ambiguity during selection.
    Often adding an attribute means adding it to _all_ existing variants.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    	}
    	defer w.Close()
    
    	if err := w.Add(c.certFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.certFile, err)
    	}
    	if err := w.Add(c.keyFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.keyFile, err)
    	}
    	// Trigger a check in case the file is updated before the watch starts.
    	c.queue.Add(workItemKey)
    
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. pkg/log/zapcore_handler.go

    	zapcore.WarnLevel:  WarnLevel,
    	zapcore.InfoLevel:  InfoLevel,
    	zapcore.DebugLevel: DebugLevel,
    }
    
    // callerSkipOffset is how many callers to pop off the stack to determine the caller function locality, used for
    // adding file/line number to log output.
    const callerSkipOffset = 3
    
    func dumpStack(level zapcore.Level, scope *Scope) bool {
    	thresh := toLevel[level]
    	if scope != defaultScope {
    		thresh = ErrorLevel
    		switch level {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 01:05:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyConfigurationContainer.java

    /**
     * The set of {@link IvyConfiguration}s that will be included in the {@link IvyPublication}.
     *
     * Being a {@link org.gradle.api.NamedDomainObjectContainer}, a {@code IvyConfigurationContainer} provides
     * convenient methods for adding, querying, filtering, and applying actions to the set of {@link IvyConfiguration}s.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'ivy-publish'
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top