Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for returns_ (0.11 sec)

  1. android/guava/src/com/google/common/collect/CompactHashing.java

      static int getHashPrefix(int value, int mask) {
        return value & ~mask;
      }
    
      /** Returns the index, or 0 if the entry is "null". */
      static int getNext(int entry, int mask) {
        return entry & mask;
      }
    
      /** Returns a new value combining the prefix and suffix using the given mask. */
      static int maskCombine(int prefix, int suffix, int mask) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  2. pkg/util/goroutinemap/exponentialbackoff/exponential_backoff.go

    }
    
    // SafeToRetry returns an error if the durationBeforeRetry period for the given
    // lastErrorTime has not yet expired. Otherwise it returns nil.
    func (expBackoff *ExponentialBackoff) SafeToRetry(operationName string) error {
    	if time.Since(expBackoff.lastErrorTime) <= expBackoff.durationBeforeRetry {
    		return NewExponentialBackoffError(operationName, *expBackoff)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 19 03:30:46 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProvider.kt

        ): Set<Name>
    
        /**
         * Returns the list of subpackages for a given package, which satisfies [nameFilter].
         *
         * The returned sub-package list contains all packages with some Kotlin declarations inside.
         */
        public abstract fun getKotlinOnlySubPackagesFqNames(packageFqName: FqName, nameFilter: (Name) -> Boolean): Set<Name>
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/runtime/internal/math/math.go

    const MaxUintptr = ^uintptr(0)
    
    // MulUintptr returns a * b and whether the multiplication overflowed.
    // On supported platforms this is an intrinsic lowered by the compiler.
    func MulUintptr(a, b uintptr) (uintptr, bool) {
    	if a|b < 1<<(4*goarch.PtrSize) || a == 0 {
    		return a * b, false
    	}
    	overflow := b > MaxUintptr/a
    	return a * b, overflow
    }
    
    // Mul64 returns the 128-bit product of x and y: (hi, lo) = x * y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:03:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/public/signature_def_param.h

    typedef struct TF_SignatureDefParam TF_SignatureDefParam;
    
    // Returns the name of the given parameter. The caller is not responsible for
    // freeing the returned char*.
    TF_CAPI_EXPORT extern const char* TF_SignatureDefParamName(
        const TF_SignatureDefParam* param);
    
    // Returns the TensorSpec associated with the given parameter. The caller is
    // not reponsible for freeing the returned TF_TensorSpec*.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. src/errors/errors.go

    package errors
    
    // New returns an error that formats as the given text.
    // Each call to New returns a distinct error value even if the text is identical.
    func New(text string) error {
    	return &errorString{text}
    }
    
    // errorString is a trivial implementation of error.
    type errorString struct {
    	s string
    }
    
    func (e *errorString) Error() string {
    	return e.s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/plan9/dir_plan9.go

    		return nil, ErrBadStat
    	}
    	if d.Gid, b, ok = gstring(b); !ok {
    		return nil, ErrBadStat
    	}
    	if d.Muid, b, ok = gstring(b); !ok {
    		return nil, ErrBadStat
    	}
    
    	return &d, nil
    }
    
    // pbit8 copies the 8-bit number v to b and returns the remaining slice of b.
    func pbit8(b []byte, v uint8) []byte {
    	b[0] = byte(v)
    	return b[1:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  8. plugin/pkg/admission/namespace/autoprovision/admission_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:            ns,
    					ResourceVersion: fmt.Sprintf("%d", i),
    				},
    			})
    		}
    		return true, namespaceList, nil
    	})
    	return mockClient
    }
    
    // newPod returns a new pod for the specified namespace
    func newPod(namespace string) api.Pod {
    	return api.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "123", Namespace: namespace},
    		Spec: api.PodSpec{
    			Volumes:    []api.Volume{{Name: "vol"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/sumdb/cache.go

    	done   uint32
    	mu     sync.Mutex
    	result interface{}
    }
    
    // Do calls the function f if and only if Do is being called for the first time with this key.
    // No call to Do with a given key returns until the one call to f returns.
    // Do returns the value returned by the one call to f.
    func (c *parCache) Do(key interface{}, f func() interface{}) interface{} {
    	entryIface, ok := c.m.Load(key)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 29 20:10:15 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LoadingCache.java

       * CacheLoader#loadAll} for all keys which are not already present in the cache. All entries
       * returned by {@link CacheLoader#loadAll} will be stored in the cache, over-writing any
       * previously cached values. This method will throw an exception if {@link CacheLoader#loadAll}
       * returns {@code null}, returns a map containing null keys or values, or fails to return an entry
       * for each requested key.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top