Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,076 for unassigned (0.17 sec)

  1. test/codegen/compare_and_branch.go

    	for i := doNotOptimize; i <= -129; i-- {
    		dummy()
    	}
    }
    
    // Unsigned 64-bit compare-and-branch.
    func ui64(x, y chan uint64) {
    	// s390x:"CLGRJ\t[$](2|4), R[0-9]+, R[0-9]+, "
    	for <-x > <-y {
    		dummy()
    	}
    
    	// s390x:"CL?GRJ\t[$]6, R[0-9]+, R[0-9]+, "
    	for <-x != <-y {
    		dummy()
    	}
    }
    
    // Unsigned 64-bit comparison with 8-bit immediate.
    func ui64x8() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

                    val assigned = objectReflection.properties.getValue(property)
                    applyPropertyValue(objectReflection.objectOrigin, property, assigned)
                    apply(assigned.value, conversionFilter)
                    // TODO: record properties assigned in function calls or constructors, so that
                    //       we can check that all properties were assigned
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/UnsignedLong.java

            "value (%s) is outside the range for an unsigned long value",
            value);
        return fromLongBits(value.longValue());
      }
    
      /**
       * Returns an {@code UnsignedLong} holding the value of the specified {@code String}, parsed as an
       * unsigned {@code long} value.
       *
       * @throws NumberFormatException if the string does not contain a parsable unsigned {@code long}
       *     value
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/UnsignedLong.java

            "value (%s) is outside the range for an unsigned long value",
            value);
        return fromLongBits(value.longValue());
      }
    
      /**
       * Returns an {@code UnsignedLong} holding the value of the specified {@code String}, parsed as an
       * unsigned {@code long} value.
       *
       * @throws NumberFormatException if the string does not contain a parsable unsigned {@code long}
       *     value
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      //   2. New clustering policy constraints can be propagated through the
      //      already clustered operations.
      LogicalResult Union(unsigned a, unsigned b,
                          const ClusteringPolicySet &policies);
    
      bool IsMember(Operation *op) const;
      unsigned FindRoot(unsigned id);
    
      // Verifies that merging `src_root` cluster with a `dst_root` cluster, and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodeconfigstatus.go

    package v1
    
    // NodeConfigStatusApplyConfiguration represents an declarative configuration of the NodeConfigStatus type for use
    // with apply.
    type NodeConfigStatusApplyConfiguration struct {
    	Assigned      *NodeConfigSourceApplyConfiguration `json:"assigned,omitempty"`
    	Active        *NodeConfigSourceApplyConfiguration `json:"active,omitempty"`
    	LastKnownGood *NodeConfigSourceApplyConfiguration `json:"lastKnownGood,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/UnsignedBytes.java

      }
    
      /**
       * Returns the unsigned {@code byte} value represented by a string with the given radix.
       *
       * @param string the string containing the unsigned {@code byte} representation to be parsed.
       * @param radix the radix to use while parsing {@code string}
       * @throws NumberFormatException if the string does not contain a valid unsigned {@code byte} with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    typedef struct CU_RunSummary
    {
      unsigned int nSuitesRun;        /**< Number of suites completed during run. */
      unsigned int nSuitesFailed;     /**< Number of suites for which initialization failed. */
      unsigned int nSuitesInactive;   /**< Number of suites which were inactive. */
      unsigned int nTestsRun;         /**< Number of tests completed during run. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/rpc.idl

    interface rpc
    {
    	/* base types */
    
    	typedef unsigned char uint8_t;
    	typedef unsigned short uint16_t;
    	typedef unsigned int uint32_t;
    
    	/* dce */
    
    	typedef struct {
    	    uint32_t time_low;
    	    uint16_t time_mid;
    	    uint16_t time_hi_and_version;
    	    uint8_t clock_seq_hi_and_reserved;
    	    uint8_t clock_seq_low;
    	    uint8_t node[6];
    	} uuid_t;
    
    	/* win32 stuff */
    
    	typedef struct {
    		uint32_t type;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    interface rpc
    {
    	/* base types */
    
    	typedef unsigned char uint8_t;
    	typedef unsigned short uint16_t;
    	typedef unsigned int uint32_t;
    
    	/* dce */
    
    	typedef struct {
    	    uint32_t time_low;
    	    uint16_t time_mid;
    	    uint16_t time_hi_and_version;
    	    uint8_t clock_seq_hi_and_reserved;
    	    uint8_t clock_seq_low;
    	    uint8_t node[6];
    	} uuid_t;
    
    	/* win32 stuff */
    
    	typedef struct {
    		uint32_t type;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top