Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 957 for prepending (0.16 sec)

  1. testing/precondition-tester/README.md

    `RunsOnPDP11` precondition, which we won't satisfy anywhere as we don't run tests on such hardware, will always be ignored.
    
    Multiple occasions happened when engineers were caught by surprise finding tests not running anywhere (e.g., tests depending on non-LTS, cleaned up JDK distributions). This project is the result of an initiative to [redesign the [recondition] system](https://github.com/gradle/gradle/pull/22885), where we aim to precisely track if all preconditions are satisfied...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4JunitTestFailureIntegrationTest.groovy

        }
    
        @Override
        boolean hasStableInitializationErrors() {
            // Prior to 4.5 test initialization errors would show up in a variety of ways, depending on the version.
            // These stabilized into consistent errors after 4.5.
            return VersionNumber.parse(version) >= VersionNumber.parse('4.5')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleLinkOutputAppWithLib.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    /**
     * A Cpp app depending on a library that remove all sources.
     */
    class IncrementalCppStaleLinkOutputAppWithLib {
        final lib = new IncrementalCppLib()
        final main = new IncrementalCppAppWithDep(lib)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    					},
    				},
    			},
    			false,
    			v1.PodPending,
    			"mixed state #2 with restart always",
    		},
    		{
    			&v1.Pod{
    				Spec: desiredState,
    				Status: v1.PodStatus{
    					ContainerStatuses: []v1.ContainerStatus{
    						runningState("containerA"),
    						waitingState("containerB"),
    					},
    				},
    			},
    			false,
    			v1.PodPending,
    			"mixed state #3 with restart always",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. tools/go-ordered-test

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script runs go tests in a package, but each test is run individually. This helps
    # isolate tests that are improperly depending on global state modification of other tests
    
    # Usage: `go test -p 1 -exec $PWD/tools/go-ordered-test ./...`
    # Supported `go test` flags: -v, -race, -run, -count. All others are ignored (-timeout, etc)
    
    set -u
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ObjectHolder.java

    /**
     * A persistent store containing an object of type T.
     */
    public interface ObjectHolder<T> {
        /**
         * Fetches the value from this cache. A shared or exclusive lock is held while fetching the value, depending on implementation.
         */
        T get();
    
        /**
         * Sets the value for this cache. An exclusive lock is held while setting the value.
         */
        void set(T newValue);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Supplier.java

    public interface Supplier<T extends @Nullable Object> extends java.util.function.Supplier<T> {
      /**
       * Retrieves an instance of the appropriate type. The returned object may or may not be a new
       * instance, depending on the implementation.
       *
       * @return an instance of the appropriate type
       */
      @Override
      @ParametricNullness
      T get();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 20 14:12:57 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

                return factory.create();
            } finally {
                restoreProperty(propertyName, originalValue);
            }
        }
    
        /**
         * Provides safe access to the system properties, preventing concurrent {@link #withSystemProperty(String, String, Factory)} calls.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

          common_dims.resize(common_rank, ShapedType::kDynamic);
        } else if (common_rank != rank) {
          return op->emitError()
                 << "operand type " << ranked_ty
                 << " is not compatible with preceding operands; expected rank: "
                 << common_rank;
        }
    
        for (int64_t i = 0, e = common_rank; i != e; i++) {
          if (i == dim_to_mask) continue;
    
          int64_t dim = ranked_ty.getDimSize(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. releasenotes/notes/25818.yaml

    # - istioctl
    # - documentation
    area: security
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
        **Fixed** an issue preventing the use of source principal based authorization at Istio Gateway when the Server's TLS mode is ISTIO_MUTUAL.
    
    # securityNotes is a markdown listing of any changes related to the security of
    # Istio.
    securityNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top