Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,411 for addKind (0.12 sec)

  1. 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)
  2. tests/integration/pilot/testdata/upgrade/README.md

    These files contain fully rendered manifests to install various Istio versions,
    and rendered CNI manifests to install various CNI versions.
    They are `tar`ed to avoid developer confusion and accidental edits.
    
    ## Adding a new version
    
    1. Generate a revisioned IstioOperator for the version with equivalent settings:
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: gcr.io/istio-release
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/log/slog/value_access_benchmark_test.go

    		return a.duration(), true
    	}
    	return 0, false
    }
    
    func (a Value) AsAny() (any, bool) {
    	if a.Kind() == KindAny {
    		return a.any, true
    	}
    	return nil, false
    }
    
    // Problem: adding a type means adding a method, which is a breaking change.
    // Using an unexported method to force embedding will make programs compile,
    // But they will panic at runtime when we call the new method.
    type Visitor interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 4.3K 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. 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)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/BuildControllers.java

         * Blocks until all scheduled tasks have completed.
         */
        ExecutionResult<Void> execute();
    
        /**
         * Locates the controller for a given build, adding it if not present.
         */
        BuildController getBuildController(BuildState build);
    
        @Override
        void close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 16 02:23:59 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top