Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 260 for getCond (0.2 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractCatchingFuture.java

     * the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.util.concurrent.Futures.getDone;
    import static com.google.common.util.concurrent.MoreExecutors.rejectionPropagatingExecutor;
    import static com.google.common.util.concurrent.NullnessCasts.uncheckedCastNullableTToT;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/apply.go

    }
    
    // ApplyObject creates or updates an object in the API server depending on whether it already exists.
    // It mutates obj.
    func (h *HelmReconciler) ApplyObject(obj *unstructured.Unstructured) error {
    	if obj.GetKind() == "List" {
    		var errs util.Errors
    		list, err := obj.ToList()
    		if err != nil {
    			scope.Errorf("error converting List object: %s", err)
    			return err
    		}
    		for _, item := range list.Items {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/dependency/DefaultIvyExcludeRule.java

        public String getOrg() {
            return excludeRule.getGroup();
        }
    
        @Override
        public String getModule() {
            return excludeRule.getModule();
        }
    
        @Override
        public String getConf() {
            return ivyConfiguration;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java

       *
       * <p>Similar methods:
       *
       * <ul>
       *   <li>To retrieve a result from a {@code Future} that is already done, use {@link
       *       Futures#getDone Futures.getDone}.
       *   <li>To treat {@link InterruptedException} uniformly with other exceptions, use {@link
       *       Futures#getChecked(Future, Class) Futures.getChecked}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  5. src/testing/quick/quick.go

    	// If nil, the top-level Value function is used to generate them.
    	Values func([]reflect.Value, *rand.Rand)
    }
    
    var defaultConfig Config
    
    // getRand returns the *rand.Rand to use for a given Config.
    func (c *Config) getRand() *rand.Rand {
    	if c.Rand == nil {
    		return rand.New(rand.NewSource(time.Now().UnixNano()))
    	}
    	return c.Rand
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ClosingFuture.java

                  return function.apply(
                      closer,
                      peeker.getDone(future1),
                      peeker.getDone(future2),
                      peeker.getDone(future3),
                      peeker.getDone(future4),
                      peeker.getDone(future5));
                }
    
                @Override
                public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/gradients/tape/tape_context.h

      Status RegisterFunction(AbstractFunction*) override;
      Status RemoveFunction(const string& func) override;
      // For LLVM style RTTI.
      static bool classof(const AbstractContext* ptr) {
        return ptr->getKind() == kTape;
      }
      ~TapeContext() override;
    
     private:
      AbstractContext* parent_ctx_;  // Not owned.
      Tape* tape_;
      const GradientRegistry& registry_;
    };
    }  // namespace gradients
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 23:12:39 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/model/ParameterInfoImpl.java

        public String getName() {
            return name;
        }
    
        @Override
        public Type getParameterType() {
            return parameterType;
        }
    
        @Override
        public ParameterKindInfo getKind() {
            return kind;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Variable.java

        }
    
        public Variable(FileReference library) {
            super(library);
        }
    
        @Override
        public String getKind() {
            return "var";
        }
    
        @Override
        public String toString() {
            return "Variable" + super.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/net/http/httptrace/trace.go

    //
    // See https://blog.golang.org/http-tracing for more.
    type ClientTrace struct {
    	// GetConn is called before a connection is created or
    	// retrieved from an idle pool. The hostPort is the
    	// "host:port" of the target or proxy. GetConn is called even
    	// if there's already an idle cached connection available.
    	GetConn func(hostPort string)
    
    	// GotConn is called after a successful connection is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top