Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for excluding (0.26 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// successfully created any containers. In this case, we should
    			// retry creating the sandbox.
    			changes.CreateSandbox = false
    			return changes
    		}
    
    		// Get the containers to start, excluding the ones that succeeded if RestartPolicy is OnFailure.
    		var containersToStart []int
    		for idx, c := range pod.Spec.Containers {
    			if pod.Spec.RestartPolicy == v1.RestartPolicyOnFailure && containerSucceeded(&c, podStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    If `scanForTestClasses` is false and no include or exclude patterns are specified, Gradle defaults to running any class that matches the patterns `+**/*Tests.class+` and `+**/*Test.class+`, excluding those that match `+**/Abstract*.class+`.
    
    NOTE: With http://junit.org/junit5/docs/current/user-guide[JUnit Platform], only `includes` and `excludes` are used to filter test classes — `scanForTestClasses` has no effect.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          {static_cast<int64_t>(values.size())}, builder->getIntegerType(64));
      return DenseIntElementsAttr::get(ty, values);
    }
    
    // Returns a 1-d i64 elements attribute populated with numbers from start to
    // end, excluding.
    static DenseIntElementsAttr GetI64ElementsAttrForSeq(int start, int end,
                                                         Builder *builder) {
      int size = end - start;
    
      SmallVector<int64_t, 4> vals;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	// Source files
    	GoFiles           []string // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    	CgoFiles          []string // .go source files that import "C"
    	IgnoredGoFiles    []string // .go source files ignored for this build (including ignored _test.go files)
    	InvalidGoFiles    []string // .go source files with detected problems (parse error, wrong package name, and so on)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - The Service LoadBalancer controller was not correctly considering the service.Status new IPMode field and excluding the Ports when comparing if the status has changed, causing that changes in these fields may not update the service.Status correctly ([#125225](https://github.com/kubernetes/kubernetes/pull/125225), [@aojea](https://github.com/aojea)) [SIG Apps,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        void set_cycles_graph_node_id(int cycles_graph_node_id) {
          cycles_graph_node_id_ = cycles_graph_node_id;
        }
    
        // The size of the cluster excluding constant and identity nodes.
        int effective_cluster_size() const { return effective_cluster_size_; }
    
        // True if the cluster has functional control flow like `If` and `While`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    // Parse methods are annotated with matching Go productions as appropriate.
    // The annotations are intended as guidelines only since a single Go grammar
    // rule may be covered by multiple parse methods and vice versa.
    //
    // Excluding methods returning slices, parse methods named xOrNil may return
    // nil; all others are expected to return a valid non-nil node.
    
    // SourceFile = PackageClause ";" { ImportDecl ";" } { TopLevelDecl ";" } .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    //
    // The only decision is whether there will be spaces around levels 4 and 5.
    // There are never spaces at level 6 (unary), and always spaces at levels 3 and below.
    //
    // To choose the cutoff, look at the whole expression but excluding primary
    // expressions (function calls, parenthesized exprs), and apply these rules:
    //
    //  1. If there is a binary operator with a right side unary operand
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    If a property is changing that does not have an impact on the runtime classpath, it may be desirable to exclude it from up-to-date checks and <<build_cache.adoc#build_cache,build cache>> key calculations.
    However, excluding the entire file would also exclude the properties that do have a runtime impact.
    In this case, properties can be excluded selectively from any or all properties files on the runtime classpath.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top