Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for INS (0.02 sec)

  1. src/go/types/universe.go

    		if id == _Assert || id == _Trace {
    			continue // only define these in testing environment
    		}
    		def(newBuiltin(id))
    	}
    }
    
    // DefPredeclaredTestFuncs defines the assert and trace built-ins.
    // These built-ins are intended for debugging and testing of this
    // package only.
    func DefPredeclaredTestFuncs() {
    	if Universe.Lookup("assert") != nil {
    		return // already defined
    	}
    	def(newBuiltin(_Assert))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/istio.go

    		t0 := time.Now()
    		scopes.Framework.Infof("=== BEGIN: Deploy Istio [Suite=%s] ===", ctx.Settings().TestID)
    
    		ins, err := newKube(ctx, cfg)
    		if err != nil {
    			scopes.Framework.Infof("=== FAILED: Deploy Istio in %v [Suite=%s] ===", time.Since(t0), ctx.Settings().TestID)
    			return err
    		}
    
    		if i != nil {
    			*i = ins
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

     *
     * ```
     * -opt-in=org.jetbrains.kotlin.analysis.api.permissions.KaAllowProhibitedAnalyzeFromWriteAction
     * ```
     *
     * This results in a double layer of opt-ins which makes it harder to abuse [allowAnalysisFromWriteAction].
     */
    @RequiresOptIn("Analysis should be prohibited to be ran from write action, otherwise it may cause IDE freezes and incorrect behavior in some cases")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/buildship.gradle

     *
     * The $buildDir/buildshipProject folder can be imported into Eclipse by using the
     * File > Import > Existing Project into workspace... functionality.
     *
     * If the Buildship plug-ins are present in the same workspace, then the binary Tooling API
     * dependency is automatically replaced with the imported project.
     */
    import java.util.regex.Matcher
    import java.util.zip.ZipEntry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

            $.each(project.configurations, function(index, configuration) {
                var $configurationDiv = $('<div/>').addClass('configuration');
                var $configurationTitle = $('<h3/>').addClass('closed').append($('<ins/>')).append(configuration.name);
                if (configuration.description) {
                    $configurationTitle.append(' - ').append($('<span/>').addClass('configurationDescription').text(configuration.description));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  6. docs/en/docs/history-design-future.md

    I have been avoiding the creation of a new framework for several years. First I tried to solve all the features covered by **FastAPI** using many different frameworks, plug-ins, and tools.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. tensorflow/cc/client/client_session.h

      Status Run(const FeedType& inputs, const std::vector<Output>& fetch_outputs,
                 std::vector<Tensor>* outputs) const;
    
      /// Same as above. Additionally runs the operations ins `run_outputs`.
      Status Run(const FeedType& inputs, const std::vector<Output>& fetch_outputs,
                 const std::vector<Operation>& run_outputs,
                 std::vector<Tensor>* outputs) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  8. docs/fr/docs/history-design-future.md

    J'ai évité la création d'un nouveau framework pendant plusieurs années. J'ai d'abord essayé de résoudre toutes les fonctionnalités couvertes par **FastAPI** en utilisant de nombreux frameworks, plug-ins et outils différents.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     * @see <a href="https://maven.apache.org/guides/mini/guide-configuring-plugins.html" target="_blank">Guide to Configuring Plug-ins</a>
     * @see <a href="https://maven.apache.org/developers/mojo-api-specification.html" target="_blank">Mojo API Specification</a>
     *
     */
    public abstract class AbstractMojo implements Mojo, ContextEnabled {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

    }
    
    // APIGroupDiscoveryList is a resource containing a list of APIGroupDiscovery.
    // This is one of the types able to be returned from the /api and /apis endpoint and contains an aggregated
    // list of API resources (built-ins, Custom Resource Definitions, resources from aggregated servers)
    // that a cluster supports.
    message APIGroupDiscoveryList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top