Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for Returns (0.16 sec)

  1. src/net/netip/uint128.go

    	return uint128{u.hi | m.hi, u.lo | m.lo}
    }
    
    // not returns the bitwise NOT of u.
    func (u uint128) not() uint128 {
    	return uint128{^u.hi, ^u.lo}
    }
    
    // subOne returns u - 1.
    func (u uint128) subOne() uint128 {
    	lo, borrow := bits.Sub64(u.lo, 1, 0)
    	return uint128{u.hi - borrow, lo}
    }
    
    // addOne returns u + 1.
    func (u uint128) addOne() uint128 {
    	lo, carry := bits.Add64(u.lo, 1, 0)
    	return uint128{u.hi + carry, lo}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 21:28:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authorization/union/union.go

    type unionAuthzHandler []authorizer.Authorizer
    
    // New returns an authorizer that authorizes against a chain of authorizer.Authorizer objects
    func New(authorizationHandlers ...authorizer.Authorizer) authorizer.Authorizer {
    	return unionAuthzHandler(authorizationHandlers)
    }
    
    // Authorizes against a chain of authorizer.Authorizer objects and returns nil if successful and returns error if unsuccessful
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableDependencies.java

        /**
         * Returns the name of this set.
         *
         * @return The name. Never null.
         */
        String getName();
    
        /**
         * Returns the path of this set. This is a unique identifier for this set.
         *
         * @return The path. Never null.
         */
        String getPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 17:30:50 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

        /**
         * Returns implementation + runtime.
         */
        ClassPath getClasspath();
    
        /**
         * Returns the modules required by this module.
         */
        Set<Module> getRequiredModules();
    
        /**
         * Returns the transitive closure of all modules required by this module, including the module itself.
         */
        Set<Module> getAllRequiredModules();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/UnsignedLong.java

      /**
       * Returns the result of subtracting this and {@code val}. If the result would have more than 64
       * bits, returns the low 64 bits of the result.
       *
       * @since 14.0
       */
      public UnsignedLong minus(UnsignedLong val) {
        return fromLongBits(this.value - checkNotNull(val).value);
      }
    
      /**
       * Returns the result of multiplying this and {@code val}. If the result would have more than 64
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/UnsignedLong.java

      /**
       * Returns the result of subtracting this and {@code val}. If the result would have more than 64
       * bits, returns the low 64 bits of the result.
       *
       * @since 14.0
       */
      public UnsignedLong minus(UnsignedLong val) {
        return fromLongBits(this.value - checkNotNull(val).value);
      }
    
      /**
       * Returns the result of multiplying this and {@code val}. If the result would have more than 64
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/Version.java

         */
        Long[] getNumericParts();
    
        /**
         * Returns the base version for this version, which removes any qualifiers. Generally this is the first '.' separated parts of this version.
         * e.g. 1.2.3-beta-4 returns 1.2.3, or 7.0.12beta5 returns 7.0.12.
         */
        Version getBaseVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/reflectdata/helpers.go

    func mapRType(pos src.XPos, typ *types.Type) ir.Node {
    	return kindRType(pos, typ, types.TMAP)
    }
    
    // chanRType asserts that typ is a map type, and returns an expression
    // that yields the *runtime._type value representing typ.
    func chanRType(pos src.XPos, typ *types.Type) ir.Node {
    	return kindRType(pos, typ, types.TCHAN)
    }
    
    // sliceElemRType asserts that typ is a slice type, and returns an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 04:50:32 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. pkg/ptr/pointer.go

    	if t != nil {
    		return *t
    	}
    	return def
    }
    
    // NonEmptyOrDefault returns t if its non-empty, or else def.
    func NonEmptyOrDefault[T comparable](t T, def T) T {
    	var empty T
    	if t != empty {
    		return t
    	}
    	return def
    }
    
    // Empty returns an empty T type
    func Empty[T any]() T {
    	var empty T
    	return empty
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 07 14:56:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/c/tensor_interface.h

      virtual void Release() = 0;
    
      // Returns tensor dtype.
      virtual DataType Type() const = 0;
      // Returns number of dimensions.
      virtual int NumDims() const = 0;
      // Returns size of specified dimension
      virtual int64_t Dim(int dim_index) const = 0;
      // Returns number of elements across all dimensions.
      virtual int64_t NumElements() const = 0;
      // Return size in bytes of the Tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 09 23:17:07 UTC 2021
    - 2.4K bytes
    - Viewed (0)
Back to top