Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for Seal (0.08 sec)

  1. src/cmd/go/internal/load/pkg.go

    // the source file, but most processing should be over the vendor-resolved
    // import paths. We do this resolution lazily both to avoid file system work
    // and because the eventual real load of the test imports (during 'go test')
    // can produce better error messages if it starts with the original paths.
    // The initial load of p loads all the non-test imports and rewrites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. licenses/javolution.license.TXT Javolution - Java(TM) Solution for Real-Time and Embedded Systems Copyright (c) 2006, Javolution (http://javolution.org) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

              <description>Specifies that this profile will be activated based on the project's packaging.</description>
            </field>
            <!--
            This could be included once we teach Maven to deal with multiple versions of the model
            <field>
              <name>custom</name>
              <version>4.1.0+</version>
              <description>Describes a custom profile activation trigger, brought in via build
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    	return s, bindingChan, errChan
    }
    
    // This is a workaround because golint complains that errors cannot
    // end with punctuation.  However, the real predicate error message does
    // end with a period.
    func makePredicateError(failReason string) error {
    	s := fmt.Sprintf("0/1 nodes are available: %v.", failReason)
    	return fmt.Errorf(s)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller_test.go

    		expectSyncDaemonSets(t, manager, ds, podControl, 5, 4, 0)
    	}
    }
    
    // DaemonSet with node selector should launch pods on nodes matching selector, but also deal with existing pods on nodes.
    func TestSelectorDaemonDealsWithExistingPods(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    		ds.Spec.UpdateStrategy = *strategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        future2 = null;
    
        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        future2 = null;
    
        /*
         * Futures should be collected even if combiner never runs. This is kind of a silly test, since
         * the combiner is almost certain to hold its own reference to the futures, and a real app would
         * hold a reference to the executor and thus to the combiner. What we really care about is that
         * the futures are released once the combiner is done running. But we happen to provide this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "path": {
              "description": "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath",
              "type": "string"
            },
            "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    func (tx *Tx) Commit() error {
    	// Check context first to avoid transaction leak.
    	// If put it behind tx.done CompareAndSwap statement, we can't ensure
    	// the consistency between tx.done and the real COMMIT operation.
    	select {
    	default:
    	case <-tx.ctx.Done():
    		if tx.done.Load() {
    			return ErrTxDone
    		}
    		return tx.ctx.Err()
    	}
    	if !tx.done.CompareAndSwap(false, true) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            return WalkResult::advance();
    
          // Best-effort shape inference in attached functions. Do not return
          // failure even if it doesn't get to fixed point, but propagate "real"
          // failure.
          if (failed(PropagateShapeIntoAttachedFunctions(op, max_iterations))) {
            op->emitWarning() << "unable to refine shape of attached function "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top